summaryrefslogtreecommitdiffstats
path: root/perl-install/ChangeLog
blob: e683ecf46589ade24ed13b79c1757443c3786416 (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
2000-10-05  dam's  <damien@mandrakesoft.com>

	* netconnect.pm (adsl_conf): updated pppoe conf.
	* 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. 
>
+msgstr "Pakad siek"
+
+#: ../../install_steps_gtk.pm_.c:446
+#, c-format
+msgid "Name: %s\n"
+msgstr "Anv: %s\n"
+
+#: ../../install_steps_gtk.pm_.c:449
+#, c-format
+msgid "Importance: %s\n"
+msgstr "Talvoudegezh : %s\n"
+
+#: ../../install_steps_gtk.pm_.c:457
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Ment hollek : %d / %d Mo"
+
+#: ../../install_steps_gtk.pm_.c:467
+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:469
+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:473
+msgid ""
+"This package must be upgraded\n"
+"Are you sure you want to deselect it?"
+msgstr ""
+"Bremanaet e tle bezań ar pabak-mań\n"
+"Ha sur oc'h e mennit e ziuzań ?"
+
+#: ../../install_steps_gtk.pm_.c:476
+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:489
+#, 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:492
+msgid "The following packages are going to be installed/removed"
+msgstr "Ar pakadoł a-heul a zo war-nes bezań staliet/lamet"
+
+#: ../../install_steps_gtk.pm_.c:501
+msgid "You can't select/unselect this package"
+msgstr "N'hellit ket diuz/andiuz ar pakad-mań"
+
+#: ../../install_steps_gtk.pm_.c:536
+msgid "Estimating"
+msgstr "O vrasjediń"
+
+#: ../../install_steps_gtk.pm_.c:548 ../../interactive.pm_.c:84
+#: ../../interactive.pm_.c:223 ../../interactive_newt.pm_.c:49
+#: ../../interactive_newt.pm_.c:98 ../../interactive_stdio.pm_.c:27
+#: ../../my_gtk.pm_.c:201 ../../my_gtk.pm_.c:459
+msgid "Cancel"
+msgstr "Nullań"
+
+#: ../../install_steps_gtk.pm_.c:561
#, c-format
msgid "%d packages"
msgstr "%d pakad"
-#: ../install_steps_gtk.pm_.c:544
+#: ../../install_steps_gtk.pm_.c:561
msgid ", %U MB"
msgstr ", %U Mo"
-#: ../install_steps_gtk.pm_.c:549
+#: ../../install_steps_gtk.pm_.c:592
#, c-format
-msgid "Installing package %s"
-msgstr "O staliań ar pakad %s"
-
-#: ../install_steps_gtk.pm_.c:574
-msgid "Go on anyway?"
-msgstr "Kenderc'hel evelato ?"
+msgid ""
+"Change your Cd-Rom!\n"
+"\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Kemmit ho Cd-Rom!\n"
+"\n"
+"Lakait el lenner ar Cd-Rom warnań an diketenn \"%s\" mar plij ha gwaskit Mat "
+"eo da c'houde.\n"
+"Ma n'emań ket ganeoc'h gwaskit Nullań evit chom hep staliań ar Cd-Rom-se."
-#: ../install_steps_gtk.pm_.c:574
-msgid "There was an error ordering packages:"
-msgstr "Ur fazi a zo bet en ur c'hourc'hemenn pakadoł :"
+#: ../../install_steps_gtk.pm_.c:611
+msgid "There was an error installing packages:"
+msgstr "Ur fazi a zo bet en ur staliań ar pakadoł :"
-#: ../install_steps_interactive.pm_.c:37
+#: ../../install_steps_interactive.pm_.c:40
msgid "An error occurred"
msgstr "Ur fazi a zo bet"
-#: ../install_steps_interactive.pm_.c:54
-msgid "Which language do you want?"
-msgstr "Pe yezh a fell deoc'h ?"
+#: ../../install_steps_interactive.pm_.c:57
+msgid "Please, choose a language to use."
+msgstr "Diuzit ar yezh da implijout, mar plij."
-#: ../install_steps_interactive.pm_.c:68 ../standalone/keyboarddrake_.c:22
+#: ../../install_steps_interactive.pm_.c:72
+#: ../../standalone/keyboarddrake_.c:22
msgid "Keyboard"
msgstr "Stokellaoueg"
-#: ../install_steps_interactive.pm_.c:69 ../standalone/keyboarddrake_.c:23
-msgid "What is your keyboard layout?"
-msgstr "Petra eo reizhadur ho stokellaoueg ?"
+#: ../../install_steps_interactive.pm_.c:73
+msgid "Please, choose your keyboard layout."
+msgstr "Dibabit reizhadur ho stokellaoueg, mar plij."
-#: ../install_steps_interactive.pm_.c:79
+#: ../../install_steps_interactive.pm_.c:81
+msgid "You can choose other languages that will be available after install"
+msgstr "Gallout a rit dibab yezhoł all hag a vo hegerz goude staliań"
+
+#: ../../install_steps_interactive.pm_.c:91
+msgid "Root Partition"
+msgstr "Parzhadur gwrizienn"
+
+#: ../../install_steps_interactive.pm_.c:92
+msgid "What is the root partition (/) of your system?"
+msgstr "Pehini eo parzhadur gwrizienn (/) ho reizhiad ?"
+
+#: ../../install_steps_interactive.pm_.c:100
+#: ../../install_steps_interactive.pm_.c:140
+msgid "Install Class"
+msgstr "Renkad staliań"
+
+#: ../../install_steps_interactive.pm_.c:100
+msgid "Which installation class do you want?"
+msgstr "Pe renkad staliań a fell deoc'h ?"
+
+#: ../../install_steps_interactive.pm_.c:102
msgid "Install/Upgrade"
msgstr "Staliań/Bremanaat"
-#: ../install_steps_interactive.pm_.c:80
+#: ../../install_steps_interactive.pm_.c:102
msgid "Is this an install or an upgrade?"
msgstr "Hag ur staliadur pe ur bremanadur eo ?"
-#: ../install_steps_interactive.pm_.c:81
-msgid "Upgrade"
-msgstr "Bremanaat"
-
-#: ../install_steps_interactive.pm_.c:89
-msgid "Root Partition"
-msgstr "Parzhadenn gwrizienn"
-
-#: ../install_steps_interactive.pm_.c:90
-msgid "What is the root partition (/) of your system?"
-msgstr "Pehini eo parzhadenn gwrizienn (/) ho reizhiad ?"
-
-#: ../install_steps_interactive.pm_.c:100
-msgid "Recommended"
-msgstr "Erbedet"
+#: ../../install_steps_interactive.pm_.c:110
+#, fuzzy
+msgid "Automated"
+msgstr "IP emgefreek"
-#: ../install_steps_interactive.pm_.c:101
+#: ../../install_steps_interactive.pm_.c:112
+#: ../../install_steps_interactive.pm_.c:124
msgid "Customized"
msgstr "Neuziet"
-#: ../install_steps_interactive.pm_.c:102
+#: ../../install_steps_interactive.pm_.c:113
+#: ../../install_steps_interactive.pm_.c:124
msgid "Expert"
msgstr "Mailh"
-#: ../install_steps_interactive.pm_.c:104
-#: ../install_steps_interactive.pm_.c:118
-msgid "Install Class"
-msgstr "Renkad staliań"
+#: ../../install_steps_interactive.pm_.c:122
+msgid ""
+"Are you sure you are an expert? \n"
+"You will be allowed to make powerfull but dangerous things here."
+msgstr ""
+"Ha sur oc'h bezań ur mailh ? \n"
+"Na rit ket goap, traoł galloudus hogen arvarus a vo aotreet deoc'h amań."
-#: ../install_steps_interactive.pm_.c:105
-msgid "What installation class do you want?"
-msgstr "Pe renkad staliań a fell deoc'h ?"
+#: ../../install_steps_interactive.pm_.c:129
+msgid "Upgrade"
+msgstr "Bremanaat"
-#: ../install_steps_interactive.pm_.c:114
+#: ../../install_steps_interactive.pm_.c:135
msgid "Normal"
msgstr "Boas"
-#: ../install_steps_interactive.pm_.c:115
+#: ../../install_steps_interactive.pm_.c:136
msgid "Development"
msgstr "Diorren"
-#: ../install_steps_interactive.pm_.c:116
+#: ../../install_steps_interactive.pm_.c:137
msgid "Server"
msgstr "Servijer"
-#: ../install_steps_interactive.pm_.c:119
-msgid "What usage do you want?"
-msgstr "Pe implij a fell deoc'h ?"
+#: ../../install_steps_interactive.pm_.c:141
+msgid "Which usage is your system used for ?"
+msgstr "Pe seurt a vo implij ho reizhiad ?"
-#: ../install_steps_interactive.pm_.c:132 ../standalone/mousedrake_.c:25
-msgid "What is the type of your mouse?"
-msgstr "Peseurt eo ho logodenn ?"
+#: ../../install_steps_interactive.pm_.c:152
+msgid "Please, choose the type of your mouse."
+msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../install_steps_interactive.pm_.c:140 ../standalone/mousedrake_.c:38
+#: ../../install_steps_interactive.pm_.c:160 ../../standalone/mousedrake_.c:38
msgid "Mouse Port"
msgstr "Porzh al logodenn"
-#: ../install_steps_interactive.pm_.c:141 ../standalone/mousedrake_.c:39
-msgid "Which serial port is your mouse connected to?"
-msgstr "Ouzh pe borzh a-steud eo luget ho logodenn ?"
+#: ../../install_steps_interactive.pm_.c:161
+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:157
+#: ../../install_steps_interactive.pm_.c:172
+msgid "Configuring IDE"
+msgstr "Kefluniań IDE"
+
+#: ../../install_steps_interactive.pm_.c:172
+msgid "IDE"
+msgstr "IDE"
+
+#: ../../install_steps_interactive.pm_.c:182
msgid "no available partitions"
-msgstr "parzhadenn hegerz ebet"
+msgstr "parzhadur hegerz ebet"
-#: ../install_steps_interactive.pm_.c:159
+#: ../../install_steps_interactive.pm_.c:184
#, c-format
-msgid "(%dMb)"
+msgid "(%dMB)"
msgstr "(%d Mo)"
-#: ../install_steps_interactive.pm_.c:166
-msgid "Which partition do you want to use as your root partition"
-msgstr "Pe barzhadenn a vennit implij da barzhadenn gwrizienn"
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Please choose a partition to use as your root partition."
+msgstr "Dibabit ur parzhadur d'ober anezhań ho parzhadur gwrizienn, mar plij."
-#: ../install_steps_interactive.pm_.c:173
+#: ../../install_steps_interactive.pm_.c:198
msgid "Choose the mount points"
-msgstr "Dibabit at poentoł mountań"
+msgstr "Dibabit at poentoł marc'hań"
-#: ../install_steps_interactive.pm_.c:185
+#: ../../install_steps_interactive.pm_.c:210
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 barzhadur"
+msgstr "Ret eo deoc'h adloc'hań evit ma talvezo kemmoł an daolenn barzhań"
-#: ../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:236
msgid "Choose the partitions you want to format"
-msgstr "Dibabit ar barzhadenn a vennit furmadiń"
+msgstr "Dibabit ar parzhadur a vennit furmadiń"
-#: ../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:240
msgid "Check bad blocks?"
-msgstr ""
+msgstr "Gwiriań ar bloc'hoł siek ?"
+
+#: ../../install_steps_interactive.pm_.c:248
+msgid "Formatting partitions"
+msgstr "O furmadiń parzhadurioł"
-#: ../install_steps_interactive.pm_.c:230
+#: ../../install_steps_interactive.pm_.c:252
+#, c-format
+msgid "Creating and formatting file %s"
+msgstr "O krouiń hag o furmadiń ar restr saveteiń %s"
+
+#: ../../install_steps_interactive.pm_.c:255
+msgid "Not enough swap to fulfill installation, please add some"
+msgstr "Ket a-walc'h a zisloań evit peurstaliań, kreskit anezhań mar plij"
+
+#: ../../install_steps_interactive.pm_.c:261
msgid "Looking for available packages"
msgstr "O klask ar pakadoł hegerz"
-#: ../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:267
msgid "Finding packages to upgrade"
msgstr "O kavout pakadoł da vremanaat"
-#: ../install_steps_interactive.pm_.c:266
-#, c-format
-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 ""
+#: ../../install_steps_interactive.pm_.c:284
+msgid "Your system has not enough space left for installation or upgrade"
+msgstr "Ho reizhiad n'eus ket wa-walc'h a egor evit staliań pe vremanaat"
-#: ../install_steps_interactive.pm_.c:290
+#: ../../install_steps_interactive.pm_.c:317
msgid "Package Group Selection"
msgstr "Diuzadenn strollad pakadoł"
-#: ../install_steps_interactive.pm_.c:326
+#: ../../install_steps_interactive.pm_.c:320
+msgid "Individual package selection"
+msgstr "Diuz pakadoł unan hag unan"
+
+#: ../../install_steps_interactive.pm_.c:360
+msgid ""
+"If you have all the CDs in the list below, click Ok.\n"
+"If you have none of those CDs, click Cancel.\n"
+"If only some CDs are missing, unselect them, then click Ok."
+msgstr ""
+"M'hoc'h eus an holl CDoł er roll a-is, gwaskit Mat eo.\n"
+"Ma n'hoc'h eus hini eus ar CDoł-se, gwaskit Nullań.\n"
+"Ma fazi deoc'h lod eus ar CDoł, andiuzit anezho ha gwaskit Mat eo."
+
+#: ../../install_steps_interactive.pm_.c:363
+#, c-format
+msgid "Cd-Rom labeled \"%s\""
+msgstr "Cd-Rom skridennet \"%s\""
+
+#: ../../install_steps_interactive.pm_.c:391
msgid ""
"Installing package %s\n"
"%d%%"
@@ -2172,55 +2825,56 @@ msgstr ""
"O staliań ar pakad %s\n"
"%d%%"
-#: ../install_steps_interactive.pm_.c:335
-msgid "Post install configuration"
-msgstr "Keflunadur goude staliań"
+#: ../../install_steps_interactive.pm_.c:400
+msgid "Post-install configuration"
+msgstr "Kefluniadur goude staliań"
-#: ../install_steps_interactive.pm_.c:346
+#: ../../install_steps_interactive.pm_.c:410
msgid "Keep the current IP configuration"
msgstr "Derc'hel ar c'hefluniadur IP o ren"
-#: ../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:411
msgid "Reconfigure network now"
-msgstr "Adgefluniań ar roudad bremań"
+msgstr "Adgefluniań ar rouedad bremań"
-#: ../install_steps_interactive.pm_.c:348
-#: ../install_steps_interactive.pm_.c:360
+#: ../../install_steps_interactive.pm_.c:412
msgid "Do not set up networking"
msgstr "Na gefluniań ar rouedad"
-#: ../install_steps_interactive.pm_.c:350
-#: ../install_steps_interactive.pm_.c:358
+#: ../../install_steps_interactive.pm_.c:415
+#: ../../install_steps_interactive.pm_.c:420
msgid "Network Configuration"
msgstr "Kefluniadur ar rouedad"
-#: ../install_steps_interactive.pm_.c:351
+#: ../../install_steps_interactive.pm_.c:416
msgid "Local networking has already been configured. Do you want to:"
msgstr "Kefluniet eo bet ar rouedad lec'hel endeo. Ha mennout a rit :"
-#: ../install_steps_interactive.pm_.c:359
-msgid "Do you want to configure networking for your system?"
-msgstr "Ha mennout a rit adgefluniań ar rouedad evit ho reizhiad ?"
-
-#: ../install_steps_interactive.pm_.c:360
-msgid "Dialup with modem"
-msgstr "Sifrennań gant ar modem"
+#: ../../install_steps_interactive.pm_.c:421
+msgid "Do you want to configure a local network for your system?"
+msgstr "Ha mennout a rit kefluniań ur rouedad lec'hel evit ho reizhiad ?"
-#: ../install_steps_interactive.pm_.c:360
-msgid "Local LAN"
-msgstr "Rouedad lec'hel"
-
-#: ../install_steps_interactive.pm_.c:369
+#: ../../install_steps_interactive.pm_.c:427
msgid "no network card found"
msgstr "kartenn rouedad kavet ebet"
-#: ../install_steps_interactive.pm_.c:399
-#: ../install_steps_interactive.pm_.c:400
+#: ../../install_steps_interactive.pm_.c:449
+msgid "Modem Configuration"
+msgstr "Kefluniań ar modem"
+
+#: ../../install_steps_interactive.pm_.c:450
+msgid ""
+"Do you want to configure a dialup connection with modem for your system?"
+msgstr ""
+"Ha mennout a rit kefluniań ur gevreadenn gervel dre modem evit ho reizhiad ?"
+
+#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid "Configuring network device %s"
-msgstr "O kefluniań an trobarzhell rouedad %s"
+msgstr "O kefluniań an drobarzhell rouedad %s"
-#: ../install_steps_interactive.pm_.c:401
+#: ../../install_steps_interactive.pm_.c:464
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -2230,31 +2884,31 @@ msgstr ""
"Pep mellad a zlefe bezań skrivet evel ur chomlec'h IP e stumm\n"
"sifroł dekvel pikoł etrezo (da skouer 1.2.3.4)."
-#: ../install_steps_interactive.pm_.c:404
+#: ../../install_steps_interactive.pm_.c:467
msgid "Automatic IP"
msgstr "IP emgefreek"
-#: ../install_steps_interactive.pm_.c:404
+#: ../../install_steps_interactive.pm_.c:467
msgid "IP address:"
msgstr "Chomlec'h IP :"
-#: ../install_steps_interactive.pm_.c:404
+#: ../../install_steps_interactive.pm_.c:467
msgid "Netmask:"
msgstr "Maskl rouedad :"
-#: ../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:468
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../install_steps_interactive.pm_.c:411 ../printerdrake.pm_.c:149
+#: ../../install_steps_interactive.pm_.c:474 ../../printerdrake.pm_.c:89
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"
-#: ../install_steps_interactive.pm_.c:429
+#: ../../install_steps_interactive.pm_.c:492
msgid "Configuring network"
-msgstr "Keluniań ar rouedad"
+msgstr "Kefluniań ar rouedad"
-#: ../install_steps_interactive.pm_.c:430
+#: ../../install_steps_interactive.pm_.c:493
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -2266,90 +2920,79 @@ msgstr ""
"evel ``mabenveg.mastal.makomp.com''.\n"
"Gallout a rit ivez reiń chomlec'h IP an dreuzell m'hoc'h eus unan"
-#: ../install_steps_interactive.pm_.c:434
+#: ../../install_steps_interactive.pm_.c:497
msgid "DNS server:"
msgstr "Servijer DNS :"
-#: ../install_steps_interactive.pm_.c:434
+#: ../../install_steps_interactive.pm_.c:497
msgid "Gateway device:"
msgstr "Trobarzhell an dreuzell :"
-#: ../install_steps_interactive.pm_.c:434
+#: ../../install_steps_interactive.pm_.c:497
msgid "Gateway:"
msgstr "Treuzell :"
-#: ../install_steps_interactive.pm_.c:434
+#: ../../install_steps_interactive.pm_.c:497
msgid "Host name:"
msgstr "Anv an ostiz :"
-#: ../install_steps_interactive.pm_.c:447
+#: ../../install_steps_interactive.pm_.c:510
msgid "Try to find a modem?"
msgstr "Klask kavout ur modem ?"
-#: ../install_steps_interactive.pm_.c:457
-msgid "Which serial port is your modem connected to?"
-msgstr "Ouzh pe borzh a-steud eo luget ho modem ?"
+#: ../../install_steps_interactive.pm_.c:521
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Dibabit ouzh pe borzh a-steud eo luget ho modem, mar plij."
-#: ../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:527
msgid "Dialup options"
msgstr "Dibarzhoł sifrennań"
-#: ../install_steps_interactive.pm_.c:463
+#: ../../install_steps_interactive.pm_.c:528
msgid "Connection name"
msgstr "Anv ar gevreadenn"
-#: ../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:529
msgid "Phone number"
msgstr "Niverenn bellgomz"
-#: ../install_steps_interactive.pm_.c:465
+#: ../../install_steps_interactive.pm_.c:530
msgid "Login ID"
msgstr "Anv ereań"
-#: ../install_steps_interactive.pm_.c:466
-#: ../install_steps_interactive.pm_.c:578
-#: ../install_steps_interactive.pm_.c:624
-#: ../install_steps_interactive.pm_.c:724 ../standalone/adduserdrake_.c:40
-msgid "Password"
-msgstr "Tremenger"
-
-#: ../install_steps_interactive.pm_.c:467
+#: ../../install_steps_interactive.pm_.c:532
msgid "Authentication"
msgstr "Dilesadur"
-#: ../install_steps_interactive.pm_.c:467
+#: ../../install_steps_interactive.pm_.c:532
msgid "CHAP"
msgstr "CHAP"
-#: ../install_steps_interactive.pm_.c:467
+#: ../../install_steps_interactive.pm_.c:532
msgid "PAP"
msgstr "PAP"
-#: ../install_steps_interactive.pm_.c:467
+#: ../../install_steps_interactive.pm_.c:532
msgid "Script-based"
msgstr "Diazezet war ur skrid"
-#: ../install_steps_interactive.pm_.c:467
+#: ../../install_steps_interactive.pm_.c:532
msgid "Terminal-based"
msgstr "Diazezet war un dermenell"
-#: ../install_steps_interactive.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:533
msgid "Domain name"
msgstr "Anv domani"
-#: ../install_steps_interactive.pm_.c:469
+#: ../../install_steps_interactive.pm_.c:535
msgid "First DNS Server"
msgstr "Servijer DNS kentań"
-#: ../install_steps_interactive.pm_.c:470
+#: ../../install_steps_interactive.pm_.c:536
msgid "Second DNS Server"
msgstr "Eil servijer DNS"
-#: ../install_steps_interactive.pm_.c:483
-msgid "Bringing up the network"
-msgstr "O loc'hań ar rouedad"
-
-#: ../install_steps_interactive.pm_.c:492
+#: ../../install_steps_interactive.pm_.c:549
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
"\n"
@@ -2366,7 +3009,7 @@ msgid ""
"In addition customer and/or end user shall particularly be aware to not "
"infringe\n"
"the laws of his/their jurisdiction. Should customer and/or end user do not\n"
-"respect the provision of these applicable laws, he/they will incur serious\n"
+"respect the provision of these applicable laws, he/they will incure serious\n"
"sanctions.\n"
"\n"
"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
@@ -2387,125 +3030,123 @@ msgid ""
"Altadena California 91001\n"
"USA"
msgstr ""
+"Tu zo deoc'h bremań ezkargań meziantoł gouestlet d'ar rinegouriezh.\n"
+"\n"
+"HO EVEZH :\n"
+"\n"
+"Abalamour m'eo disheńvel ar pennaennoł meur o talvezout evit ar "
+"meziantoł-mań hervez\n"
+"gwiraouriezhoł disheńvel, ret eo d'an arval ha/pe arveriad en diwezh ar "
+"meziantoł-mań\n"
+"gwiriań eo aotreet da ezskargań, mirout ha/pe implijout ar meziantoł-mań\n"
+"gouez d'al lezennoł en e/he gwiraouriezh.\n"
+"\n"
+"Ouzhpenn an arval ha/pe arveriad en diwezh a rank bezań war evezh chom hep "
+"terriń\n"
+"lezennoł e/he gwiraouriezh. Ma c'hoarvezfe gant an arval ha/pe arveriad\n"
+"en diwezh na zoujań ouzh termenoł lezennoł o talvezout, e telezfe kastizoł\n"
+"kriz.\n"
+"\n"
+"E nep degouezh ne vo dalc'het Mandrakesoft nag e oberatourien na/pe e "
+"bourvezerien\n"
+"atebek eus nep gaou dibar, ameeun pe zarvoudus a c'hoarvezfe (ha pa vefe\n"
+"zoken e-touez traoł all koll gounid, arsav aferioł, koll roadoł kenwerzhel "
+"ha\n"
+"kolloł arc'hant all, hag atebegezh pe zigoll diouzh an dro da vezań paeet\n"
+"da heul ur barnadeg) o tont diouzh implij, perc'hennań, pe zoken ezkargań\n"
+"ar meziantoł-mań, a c'hellfe an arval ha/pe arveriad en diwezh bezań\n"
+"grataet goude bezań sinet an emglev-mań.\n"
+"\n"
+"\n"
+"Evit forzh pe c'houlenn a-zivout an emglevioł-se, darempredit mar plij\n"
+"Mandrakesoft, Inc.\n"
+"2400 N. Lincoln Avenue Suite 243\n"
+"Altadena California 91001\n"
+"SUA"
-#: ../install_steps_interactive.pm_.c:523
+#: ../../install_steps_interactive.pm_.c:580
msgid "Choose a mirror from which to get the packages"
msgstr "Dibabit ur melezour da dapout ar pakadoł diwarnań"
-#: ../install_steps_interactive.pm_.c:528
+#: ../../install_steps_interactive.pm_.c:588
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:532
-msgid "Which packages do you want to install"
-msgstr "Pe bakadoł a vennit staliań"
+#: ../../install_steps_interactive.pm_.c:592
+msgid "Please choose the packages you want to install."
+msgstr "Dibabit ar pakadoł a vennit staliań, mar plij."
-#: ../install_steps_interactive.pm_.c:534
-msgid "Downloading cryptographic packages"
-msgstr "Oc'h ezkargań pakadoł rinegouriezh"
-
-#: ../install_steps_interactive.pm_.c:544
+#: ../../install_steps_interactive.pm_.c:606
msgid "Which is your timezone?"
msgstr "Pehini eo ho takad-eur ?"
-#: ../install_steps_interactive.pm_.c:545
+#: ../../install_steps_interactive.pm_.c:607
msgid "Is your hardware clock set to GMT?"
msgstr "Ha war GMT eo lakaet ho eurier periantel ?"
-#: ../install_steps_interactive.pm_.c:555
-msgid "Printer"
-msgstr "Moullerez"
-
-#: ../install_steps_interactive.pm_.c:556
-msgid "Would you like to configure a printer?"
-msgstr "Mennout a rit kefluniań ur voullerez ?"
-
-#: ../install_steps_interactive.pm_.c:576
+#: ../../install_steps_interactive.pm_.c:652
msgid "No password"
msgstr "Tremenger ebet"
-#: ../install_steps_interactive.pm_.c:576
-#: ../install_steps_interactive.pm_.c:798 ../interactive.pm_.c:74
-#: ../interactive.pm_.c:84 ../interactive.pm_.c:164
-#: ../interactive_newt.pm_.c:50 ../interactive_newt.pm_.c:97
-#: ../interactive_stdio.pm_.c:27 ../my_gtk.pm_.c:192 ../my_gtk.pm_.c:425
-#: ../my_gtk.pm_.c:525
-msgid "Ok"
-msgstr "Mat eo"
-
-#: ../install_steps_interactive.pm_.c:579
-#: ../install_steps_interactive.pm_.c:625
-#: ../install_steps_interactive.pm_.c:725 ../standalone/adduserdrake_.c:41
-msgid "Password (again)"
-msgstr "Tremeger (adarre)"
-
-#: ../install_steps_interactive.pm_.c:581
+#: ../../install_steps_interactive.pm_.c:657
msgid "Use shadow file"
-msgstr "Implij ur restr kuzhet"
+msgstr "Implijout ur restr kuzhet"
-#: ../install_steps_interactive.pm_.c:581
+#: ../../install_steps_interactive.pm_.c:657
msgid "shadow"
msgstr "kuzhet"
-#: ../install_steps_interactive.pm_.c:582
+#: ../../install_steps_interactive.pm_.c:658
msgid "MD5"
msgstr "MD5"
-#: ../install_steps_interactive.pm_.c:582
+#: ../../install_steps_interactive.pm_.c:658
msgid "Use MD5 passwords"
-msgstr "Implij tremegerioł MD5"
+msgstr "Implijout tremegerioł MD5"
-#: ../install_steps_interactive.pm_.c:584
+#: ../../install_steps_interactive.pm_.c:660
msgid "Use NIS"
-msgstr "Implij NIS"
+msgstr "Implijout NIS"
-#: ../install_steps_interactive.pm_.c:584
+#: ../../install_steps_interactive.pm_.c:660
msgid "yellow pages"
msgstr "pajennoł melen"
-#: ../install_steps_interactive.pm_.c:588
-#: ../install_steps_interactive.pm_.c:636
-#: ../install_steps_interactive.pm_.c:736 ../standalone/adduserdrake_.c:52
-msgid "Please try again"
-msgstr "Klaskit adarre mar plij"
-
-#: ../install_steps_interactive.pm_.c:588
-#: ../install_steps_interactive.pm_.c:636
-#: ../install_steps_interactive.pm_.c:736 ../standalone/adduserdrake_.c:52
-msgid "The passwords do not match"
-msgstr "An tremegerioł ne glot ket"
-
-#: ../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:666
#, c-format
msgid "This password is too simple (must be at least %d characters long)"
-msgstr ""
+msgstr "Re eeun eo an tremenger-se (%d arouezenn a zo ret d'an nebeutań)"
-#: ../install_steps_interactive.pm_.c:597
+#: ../../install_steps_interactive.pm_.c:673
msgid "Authentification NIS"
msgstr "Dilesadur NIS"
-#: ../install_steps_interactive.pm_.c:598
+#: ../../install_steps_interactive.pm_.c:674
msgid "NIS Domain"
msgstr "Domani NIS"
-#: ../install_steps_interactive.pm_.c:598
+#: ../../install_steps_interactive.pm_.c:674
msgid "NIS Server"
msgstr "Servijer NIS"
-#: ../install_steps_interactive.pm_.c:618 ../standalone/adduserdrake_.c:34
+#: ../../install_steps_interactive.pm_.c:699
+#: ../../standalone/adduserdrake_.c:36
msgid "Accept user"
msgstr "Aotren an arveriad"
-#: ../install_steps_interactive.pm_.c:618 ../standalone/adduserdrake_.c:34
+#: ../../install_steps_interactive.pm_.c:699
+#: ../../standalone/adduserdrake_.c:36
msgid "Add user"
msgstr "Ouzhpennań un arveriad"
-#: ../install_steps_interactive.pm_.c:619 ../standalone/adduserdrake_.c:35
+#: ../../install_steps_interactive.pm_.c:700
+#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid "(already added %s)"
msgstr "(ouzhpennet %s endeo)"
-#: ../install_steps_interactive.pm_.c:619 ../standalone/adduserdrake_.c:35
+#: ../../install_steps_interactive.pm_.c:700
+#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid ""
"Enter a user\n"
@@ -2514,333 +3155,272 @@ msgstr ""
"Skrivit un arveriad\n"
"%s"
-#: ../install_steps_interactive.pm_.c:621 ../standalone/adduserdrake_.c:37
+#: ../../install_steps_interactive.pm_.c:702
+#: ../../standalone/adduserdrake_.c:39
msgid "Real name"
msgstr "Anv gwirion"
-#: ../install_steps_interactive.pm_.c:622 ../standalone/adduserdrake_.c:38
+#: ../../install_steps_interactive.pm_.c:703 ../../printerdrake.pm_.c:84
+#: ../../printerdrake.pm_.c:109 ../../standalone/adduserdrake_.c:40
msgid "User name"
msgstr "Anv arveriad"
-#: ../install_steps_interactive.pm_.c:627 ../standalone/adduserdrake_.c:43
+#: ../../install_steps_interactive.pm_.c:708
+#: ../../standalone/adduserdrake_.c:45
msgid "Shell"
msgstr "Shell"
-#: ../install_steps_interactive.pm_.c:637 ../standalone/adduserdrake_.c:53
+#: ../../install_steps_interactive.pm_.c:710
+#: ../../standalone/adduserdrake_.c:47
+msgid "Icon"
+msgstr "Arlun"
+
+#: ../../install_steps_interactive.pm_.c:720
+#: ../../standalone/adduserdrake_.c:57
msgid "This password is too simple"
msgstr "Re eeun eo an tremeger"
-#: ../install_steps_interactive.pm_.c:638 ../standalone/adduserdrake_.c:54
+#: ../../install_steps_interactive.pm_.c:721
+#: ../../standalone/adduserdrake_.c:58
msgid "Please give a user name"
msgstr "Roit un anv arveriad mar plij"
-#: ../install_steps_interactive.pm_.c:639 ../standalone/adduserdrake_.c:55
+#: ../../install_steps_interactive.pm_.c:722
+#: ../../standalone/adduserdrake_.c:59
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"
-#: ../install_steps_interactive.pm_.c:640 ../standalone/adduserdrake_.c:56
+#: ../../install_steps_interactive.pm_.c:723
+#: ../../standalone/adduserdrake_.c:60
msgid "This user name is already added"
-msgstr "Ouzhpennet eo an anv arveriad-se endeo"
+msgstr "En implij eo an anv arveriad-se endeo"
-#: ../install_steps_interactive.pm_.c:659
-#, fuzzy
-msgid "First drive"
-msgstr "Servijer DNS kentań"
+#: ../../install_steps_interactive.pm_.c:747
+msgid "First floppy drive"
+msgstr "Lenner pladennig kentań"
-#: ../install_steps_interactive.pm_.c:660
-#, fuzzy
-msgid "Second drive"
-msgstr "Eil servijer DNS"
+#: ../../install_steps_interactive.pm_.c:748
+msgid "Second floppy drive"
+msgstr "Eil lenner pladennig"
-#: ../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:749
msgid "Skip"
msgstr "Tremen e-biou"
-#: ../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:755
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
"install\n"
-"LILO on your system, or another operating system removes LILO, or LILO "
-"doesn't\n"
+"LILO (or grub) on your system, or another operating system removes LILO, or "
+"LILO doesn't\n"
"work with your hardware configuration. A custom bootdisk can also be used "
"with\n"
"the Mandrake rescue image, making it much easier to recover from severe "
"system\n"
"failures. Would you like to create a bootdisk for your system?"
msgstr ""
-"Ur bladenn loc'hań neuziet a ro un tu da loc'hań ho reizhiad Linux hep\n"
-"bezań dindan beli ar c'harger loc'hań boas. Talvoudus eo ma ne mennit ket\n"
-"staliań LILO war ho reizhiad, pe ma skarzh ur reizhiad oberiań LILO, pe ma\n"
-"ne da ket en-dro LILO war ho kefluniadur periantel. Ur bladenn loc'hań "
-"neuziet\n"
-"a c'hell ivez bezań implijet gant ar skeudenn saveteiń Mandrake, oc'h aesaat "
-"an\n"
-"assevel p'emeur sac'het grevus. Mennout a rit krouiń ur bladenn loc'hań "
+"Ur bladenn loc'hań neuziet a ro un tu da loc'hań ho reizhiad Linux hep "
+"bezań\n"
+"dindan beli ar c'harger loc'hań boas. Talvoudus eo ma ne mennit ket staliań "
+"LILO\n"
+"(pe grub) war ho reizhiad, pe ma skarzh ur reizhiad oberiań LILO, pe ma ne\n"
+"da ket en-dro LILO war ho kefluniadur periantel. Ur bladenn loc'hań neuziet\n"
+"a c'hell ivez bezań implijet gant ar skeudenn saveteiń Mandrake, en ur "
+"aesaat an\n"
+"assevel pa vefec'h sac'het grevus. Mennout a rit krouiń ur bladenn loc'hań "
"evit\n"
"ho reizhiad ?"
-#: ../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:764
msgid "Sorry, no floppy drive available"
msgstr "Ho tigarez, lenner pladennig hegerz ebet"
-#: ../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:767
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
-"Dibabit al lenner pladennig a vennit implij evit ober ar bladenn loc'hań"
+"Dibabit al lenner pladennig a vennit implijout evit ober ar bladenn loc'hań"
-#: ../install_steps_interactive.pm_.c:683
+#: ../../install_steps_interactive.pm_.c:772
#, c-format
msgid "Insert a floppy in drive %s"
msgstr "Lakait ur bladennig el lenner %s"
-#: ../install_steps_interactive.pm_.c:684
-#: ../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:773
msgid "Creating bootdisk"
msgstr "O krouiń ar bladenn loc'hań"
-#: ../install_steps_interactive.pm_.c:691
-msgid "Preparing bootloader"
-msgstr "O prientiń ar c'harger loc'hań"
-
-#: ../install_steps_interactive.pm_.c:703
-msgid "First sector of boot partition"
-msgstr "Rann gentań ar barzhadenn loc'hań"
-
-#: ../install_steps_interactive.pm_.c:703
-msgid "First sector of drive (MBR)"
-msgstr "Rann gentań ar bladenn (MBR)"
-
-#: ../install_steps_interactive.pm_.c:708
-msgid "LILO Installation"
-msgstr "Staliadur LILO"
-
-#: ../install_steps_interactive.pm_.c:709
-msgid "Where do you want to install the bootloader?"
-msgstr "Pelec'h e mennit staliań ar c'harger loc'hań ?"
-
-#: ../install_steps_interactive.pm_.c:715
-msgid "Do you want to use LILO?"
-msgstr "Mennout a rit implij LILO ?"
-
-#: ../install_steps_interactive.pm_.c:718
-msgid "Boot device"
-msgstr "Trobarzhell loc'hań"
-
-#: ../install_steps_interactive.pm_.c:719
-msgid "Linear (needed for some SCSI drives)"
-msgstr "Lineel (ret evit sturierien SCSI 'zo)"
-
-#: ../install_steps_interactive.pm_.c:719
-msgid "linear"
-msgstr "lineel"
-
-#: ../install_steps_interactive.pm_.c:720
-msgid "Compact"
-msgstr "Fetis"
-
-#: ../install_steps_interactive.pm_.c:720
-msgid "compact"
-msgstr "fetis"
-
-#: ../install_steps_interactive.pm_.c:721
-msgid "Delay before booting default image"
-msgstr "Gedvezh kent loc'hań ar skeudenn dre ziouer"
-
-#: ../install_steps_interactive.pm_.c:722
-msgid "Video mode"
-msgstr "Mod video"
-
-#: ../install_steps_interactive.pm_.c:726
-msgid "Restrict command line options"
-msgstr "Strishaat dibarzhoł al linenn urzhiań"
+#: ../../install_steps_interactive.pm_.c:785 ../../standalone/drakboot_.c:55
+msgid "Installation of LILO failed. The following error occured:"
+msgstr "Staliadur LILO a zo sac'het. Degouezhet eo ar fazi a heul :"
-#: ../install_steps_interactive.pm_.c:726
-msgid "restrict"
-msgstr "strishaat"
+#: ../../install_steps_interactive.pm_.c:806
+msgid "Do you want to use SILO?"
+msgstr "Mennout a rit implijout SILO ?"
-#: ../install_steps_interactive.pm_.c:732
-msgid "LILO main options"
-msgstr "Dibarzhoł pennań LILO"
+#: ../../install_steps_interactive.pm_.c:817
+msgid "SILO main options"
+msgstr "Dibarzhoł pennań SILO"
-#: ../install_steps_interactive.pm_.c:735
+#: ../../install_steps_interactive.pm_.c:830
msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-"Didalvout eo ``Strishaat dibarzhoł al linenn urzhiań'' hep un tremenger"
-
-#: ../install_steps_interactive.pm_.c:746
-msgid ""
-"Here are the following entries in LILO.\n"
+"Here are the following entries in SILO.\n"
"You can add some more or change the existing ones."
msgstr ""
-"Setu da heul enmontoł a vez e LILO.\n"
-"Gallout a rit ouzhpennań lod pe kemmań a re a zo."
-
-#: ../install_steps_interactive.pm_.c:748 ../standalone/rpmdrake_.c:302
-msgid "Add"
-msgstr "Ouzhpennań"
+"Setu da heul enmontoł a vez e SILO.\n"
+"Gallout a rit ouzhpennań lod pe gemmań a re a zo."
-#: ../install_steps_interactive.pm_.c:757
-msgid "Linux"
-msgstr "Linux"
+#: ../../install_steps_interactive.pm_.c:858
+msgid "Partition"
+msgstr "Parzhadur"
-#: ../install_steps_interactive.pm_.c:757
-msgid "Other OS (windows...)"
-msgstr "RK all (windows...)"
-
-#: ../install_steps_interactive.pm_.c:757
-msgid "Which type of entry do you want to add"
-msgstr "Peseurt enmont a vennit ouzhpennań"
-
-#: ../install_steps_interactive.pm_.c:777
-msgid "Image"
-msgstr "Skeudenn"
-
-#: ../install_steps_interactive.pm_.c:778
-#: ../install_steps_interactive.pm_.c:786
-msgid "Root"
-msgstr "Gwrizienn"
-
-#: ../install_steps_interactive.pm_.c:779
-msgid "Append"
-msgstr "Ouzhpennań"
-
-#: ../install_steps_interactive.pm_.c:780
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../install_steps_interactive.pm_.c:781
-msgid "Read-write"
-msgstr "Lenn/skrivań "
-
-#: ../install_steps_interactive.pm_.c:787
-msgid "Table"
-msgstr "Taolenn"
-
-#: ../install_steps_interactive.pm_.c:788
-msgid "Unsafe"
-msgstr "Arvarus"
-
-#: ../install_steps_interactive.pm_.c:793
-msgid "Label"
-msgstr "Skridennad"
-
-#: ../install_steps_interactive.pm_.c:795
-msgid "Default"
-msgstr "Dre ziouer"
-
-#: ../install_steps_interactive.pm_.c:798
-msgid "Remove entry"
-msgstr "Dilemel an enmont"
+#: ../../install_steps_interactive.pm_.c:878
+msgid "This label is already in use"
+msgstr "War implij eo ar skridennad-se endeo"
-#: ../install_steps_interactive.pm_.c:801
-msgid "Empty label not allowed"
-msgstr "Berzet eo skridennadoł goullo"
+#: ../../install_steps_interactive.pm_.c:891
+msgid "Installation of SILO failed. The following error occured:"
+msgstr "Staliadur SILO zo sac'het. Degouezhet eo ar fazi a heul :"
-#: ../install_steps_interactive.pm_.c:802
-msgid "This label is already in use"
-msgstr "War implij eo ar skridennad-mań endeo"
+#: ../../install_steps_interactive.pm_.c:901
+msgid "Preparing bootloader"
+msgstr "O prientiń ar c'harger loc'hań"
-#: ../install_steps_interactive.pm_.c:803
-#, c-format
-msgid "A entry %s already exists"
-msgstr "Un enmont %s a zo endeo"
+#: ../../install_steps_interactive.pm_.c:909
+msgid "Do you want to use aboot?"
+msgstr "Mennout a rit implijout aboot ?"
-#: ../install_steps_interactive.pm_.c:817
-msgid "Installation of LILO failed. The following error occured:"
-msgstr "Staliadur LILO zo sac'het. Degouezhet eo ar fazi a heuilh :"
+#: ../../install_steps_interactive.pm_.c:912
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Fazi en ur staliań aboot,\n"
+"klask rediań ar staliadur zoken ma tistruj ar parzhadur kentań ?"
-#: ../install_steps_interactive.pm_.c:831
+#: ../../install_steps_interactive.pm_.c:929
msgid "Proxies configuration"
-msgstr "Keflunań ar proksioł"
+msgstr "Kefluniań ar proksioł"
-#: ../install_steps_interactive.pm_.c:832
+#: ../../install_steps_interactive.pm_.c:930
msgid "HTTP proxy"
msgstr "Proksi HTTP"
-#: ../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:931
msgid "FTP proxy"
msgstr "Proksi FTP"
-#: ../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:937
msgid "Proxy should be http://..."
msgstr "http://... a zlefe bezań ar proksi"
-#: ../install_steps_interactive.pm_.c:840
+#: ../../install_steps_interactive.pm_.c:938
msgid "Proxy should be ftp://..."
msgstr "ftp://... a zlefe bezań ar proksi"
-#: ../install_steps_interactive.pm_.c:850 ../standalone/draksec_.c:20
+#: ../../install_steps_interactive.pm_.c:948 ../../standalone/draksec_.c:20
msgid "Welcome To Crackers"
-msgstr ""
+msgstr "Bezit deuet mat, preizherien !"
-#: ../install_steps_interactive.pm_.c:851 ../standalone/draksec_.c:21
+#: ../../install_steps_interactive.pm_.c:949 ../../standalone/draksec_.c:21
msgid "Poor"
msgstr "Paour"
-#: ../install_steps_interactive.pm_.c:852 ../standalone/draksec_.c:22
+#: ../../install_steps_interactive.pm_.c:950 ../../standalone/draksec_.c:22
msgid "Low"
msgstr "Izel"
-#: ../install_steps_interactive.pm_.c:853 ../standalone/draksec_.c:23
+#: ../../install_steps_interactive.pm_.c:951 ../../standalone/draksec_.c:23
msgid "Medium"
msgstr "Etre"
-#: ../install_steps_interactive.pm_.c:854 ../standalone/draksec_.c:24
+#: ../../install_steps_interactive.pm_.c:952 ../../standalone/draksec_.c:24
msgid "High"
msgstr "Uhel"
-#: ../install_steps_interactive.pm_.c:855 ../standalone/draksec_.c:25
+#: ../../install_steps_interactive.pm_.c:953 ../../standalone/draksec_.c:25
msgid "Paranoid"
msgstr "Ankeniet"
-#: ../install_steps_interactive.pm_.c:868
+#: ../../install_steps_interactive.pm_.c:966
msgid "Miscellaneous questions"
msgstr "Goulennoł a bep seurt"
-#: ../install_steps_interactive.pm_.c:869
+#: ../../install_steps_interactive.pm_.c:967
msgid "(may cause data corruption)"
msgstr "(a c'hell breinań roadoł)"
-#: ../install_steps_interactive.pm_.c:869
+#: ../../install_steps_interactive.pm_.c:967
msgid "Use hard drive optimisations?"
-msgstr "Implij gwelladur ar bladenn galet ?"
+msgstr "Implijout gwelladur ar bladenn galet ?"
-#: ../install_steps_interactive.pm_.c:870 ../standalone/draksec_.c:46
+#: ../../install_steps_interactive.pm_.c:968 ../../standalone/draksec_.c:46
msgid "Choose security level"
msgstr "Dibabit al live surentez"
-#: ../install_steps_interactive.pm_.c:871
+#: ../../install_steps_interactive.pm_.c:969
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Spisait ment ar memor bev diouzh ret (kavet %d Mo)"
+msgstr "Spisait ment ar memor vev diouzh ret (kavet %d Mo)"
-#: ../install_steps_interactive.pm_.c:872
+#: ../../install_steps_interactive.pm_.c:970
msgid "Removable media automounting"
-msgstr "Emmountań ar skoroł lem/laka"
+msgstr "Emvarc'hań ar skoroł lem/laka"
+
+#: ../../install_steps_interactive.pm_.c:972
+msgid "Clean /tmp at each boot"
+msgstr "Skarań /tmp bep ma loc'her"
-#: ../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:975
+msgid "Enable multi profiles"
+msgstr "Aotren lies trolinenn"
+
+#: ../../install_steps_interactive.pm_.c:977
msgid "Enable num lock at startup"
-msgstr "Enaouiń Krouilh Niv. pa loc'her"
+msgstr "Enaouiń KrouilhNiv pa loc'her"
-#: ../install_steps_interactive.pm_.c:877
-msgid "Give the ram size in Mb"
-msgstr "Roit ment ar memor bev e Mo"
+#: ../../install_steps_interactive.pm_.c:980
+msgid "Give the ram size in MB"
+msgstr "Roit ment ar memor vev e Mo"
-#: ../install_steps_interactive.pm_.c:893
-msgid "Use existing configuration for X11?"
-msgstr "Implij ar c'hefluniadur o ren evit X11 ?"
+#: ../../install_steps_interactive.pm_.c:982
+msgid "Can't use supermount in high security level"
+msgstr "N'hellan ket implijout supermount el live surentez uhel"
-#: ../install_steps_interactive.pm_.c:905
-#: ../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1002
+msgid ""
+"DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
+"By default, the 3.3 server is used because it works on more graphic cards.\n"
+"\n"
+"Do you want to try XFree 4.0?"
+msgstr ""
+"Genel a raio DrakX restroł kefluniań ken evit XFree 3.3 ken evit XFree 4.0\n"
+"Dre ziouer eo implijet ar servijer 3.3 hag a ya en-dro war muioc'h a "
+"c'hartennoł grafek.\n"
+"Ha mennout a rit klask XFree 4.0 ?"
+
+#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1167
msgid "Try to find PCI devices?"
msgstr "Klask kavout trobarzhelloł PCI ?"
-#: ../install_steps_interactive.pm_.c:920
+#: ../../install_steps_interactive.pm_.c:1034
+msgid "Do you want to generate an auto install floppy for linux replication?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1036
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Lakait ur bladennig gwerc'h el lenner %s"
+
+#: ../../install_steps_interactive.pm_.c:1044
+msgid "Creating auto install floppy"
+msgstr "O krouiń ur bladennig staliań emgefreek"
+
+#: ../../install_steps_interactive.pm_.c:1068
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -2850,7 +3430,7 @@ msgstr ""
"\n"
"Mennout a rit kuitaat da vat bremań ?"
-#: ../install_steps_interactive.pm_.c:927
+#: ../../install_steps_interactive.pm_.c:1075
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -2863,34 +3443,34 @@ msgid ""
"install chapter of the Official Linux-Mandrake User's Guide."
msgstr ""
"Gourc'hemennoł, peurc'hraet eo ar staliadur.\n"
-"Lamit ar bladenn loc'hań ha stokit enkas evit adloc'hań.\n"
+"Lamit ar bladenn loc'hań ha gwaskit enkas evit adloc'hań.\n"
"\n"
"Evit titouroł war palastroł hegerz evit stumm-mań Linux-Mandrake,\n"
"sellit ouzh ar meneger fazioł hegerz e http://www.linux-mandrake.com/.\n"
"\n"
-"Titouroł war kefluniań ho reizhiad zo hegerz e rannbennad Goude\n"
-"Staliań Sturier an Arveriad ofisiel Linux-Mandrake."
+"Titouroł war gefluniań ho reizhiad a zo hegerz e rannbennad Goude\n"
+"Staliań Sturier ofisiel an Arveriad Linux-Mandrake."
-#: ../install_steps_interactive.pm_.c:936
+#: ../../install_steps_interactive.pm_.c:1084
msgid "Shutting down"
-msgstr "O lazhań"
+msgstr "O tizenaouiń"
-#: ../install_steps_interactive.pm_.c:950
+#: ../../install_steps_interactive.pm_.c:1096
#, c-format
msgid "Installing driver for %s card %s"
-msgstr "O staliań ur sturier evit %s kartenn %s"
+msgstr "O staliań ur sturier evit kartenn %s %s"
-#: ../install_steps_interactive.pm_.c:951
+#: ../../install_steps_interactive.pm_.c:1097
#, c-format
msgid "(module %s)"
msgstr "(mollad %s)"
-#: ../install_steps_interactive.pm_.c:961
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
msgid "Which %s driver should I try?"
msgstr "Pe sturier %s a zlefen amprouiń ?"
-#: ../install_steps_interactive.pm_.c:969
+#: ../../install_steps_interactive.pm_.c:1115
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -2909,341 +3489,345 @@ msgstr ""
"urzhiataer,\n"
"hogen ne raio reuz ebet."
-#: ../install_steps_interactive.pm_.c:974
+#: ../../install_steps_interactive.pm_.c:1120
msgid "Autoprobe"
msgstr "Embrouiń"
-#: ../install_steps_interactive.pm_.c:974
+#: ../../install_steps_interactive.pm_.c:1120
msgid "Specify options"
msgstr "Spisait dibarzhoł"
-#: ../install_steps_interactive.pm_.c:978
+#: ../../install_steps_interactive.pm_.c:1124
#, c-format
msgid "You may now provide its options to module %s."
-msgstr "Bremań e c'hellit pourvezań dibarzhoł d'ar mollad %s"
+msgstr "Bremań e c'hellit pourvezań e zibarzhoł d'ar mollad %s"
-#: ../install_steps_interactive.pm_.c:984
+#: ../../install_steps_interactive.pm_.c:1130
#, 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 ""
-"Bremań e c'hellit pourvezań dibarzhoł d'ar mollad %s.\n"
+"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''"
-#: ../install_steps_interactive.pm_.c:987
+#: ../../install_steps_interactive.pm_.c:1133
msgid "Module options:"
msgstr "Dibarzhoł ar mollad :"
-#: ../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:1143
#, c-format
msgid ""
"Loading module %s failed.\n"
"Do you want to try again with other parameters?"
msgstr ""
-"Kargań ar mollad %s sac'het.\n"
+"Kargań ar mollad %s a zo sac'het.\n"
"Mennout a rit klask adarre gant arventennoł all ?"
-#: ../install_steps_interactive.pm_.c:1010
+#: ../../install_steps_interactive.pm_.c:1156
msgid "Try to find PCMCIA cards?"
msgstr "Klask kavout kartennoł PCMCIA ?"
-#: ../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1157
msgid "Configuring PCMCIA cards..."
msgstr "O kefluniań kartennoł PCMCIA..."
-#: ../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1157
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../install_steps_interactive.pm_.c:1018
-msgid ""
-"Linux does not yet fully support ultra dma 66 HPT.\n"
-"As a work-around i can make a custom floppy giving access the hard drive on "
-"ide2 and ide3"
-msgstr ""
-
-#: ../install_steps_interactive.pm_.c:1039
-#, fuzzy
-msgid ""
-"Enter a floppy to create an HTP enabled boot\n"
-"(all data on floppy will be lost)"
-msgstr ""
-"Lakait ur bladennig el lenner\n"
-"Kollet e vo holl roadoł ar bladennig-se"
-
-#: ../install_steps_interactive.pm_.c:1056
-msgid "It is necessary to restart installation booting on the floppy"
-msgstr ""
-
-#: ../install_steps_interactive.pm_.c:1057
-msgid "It is necessary to restart installation with the new parameters"
-msgstr ""
-
-#: ../install_steps_interactive.pm_.c:1061
-#, c-format
-msgid ""
-"Failed to create an HTP boot floppy.\n"
-"You may have to restart installation and give ``%s'' at the prompt"
-msgstr ""
-
-#: ../install_steps_interactive.pm_.c:1081
+#: ../../install_steps_interactive.pm_.c:1176
#, c-format
msgid "Found %s %s interfaces"
-msgstr "Kavet %s etrefas %s"
+msgstr "Kavet etrefas %s %s"
-#: ../install_steps_interactive.pm_.c:1082
+#: ../../install_steps_interactive.pm_.c:1177
msgid "Do you have another one?"
msgstr "Hag un all hoc'h eus ?"
-#: ../install_steps_interactive.pm_.c:1083
+#: ../../install_steps_interactive.pm_.c:1178
#, c-format
-msgid "Do you have any %s interface?"
-msgstr "Hag un etrefas %s bennak hoc'h eus ?"
+msgid "Do you have any %s interfaces?"
+msgstr "Hag un etrefas %s bennak a zo ganeoc'h ?"
-#: ../install_steps_interactive.pm_.c:1085 ../interactive.pm_.c:79
-#: ../my_gtk.pm_.c:424 ../printerdrake.pm_.c:176
+#: ../../install_steps_interactive.pm_.c:1180 ../../interactive.pm_.c:79
+#: ../../my_gtk.pm_.c:458 ../../printerdrake.pm_.c:124
msgid "No"
msgstr "Ket"
-#: ../install_steps_interactive.pm_.c:1085 ../interactive.pm_.c:79
-#: ../my_gtk.pm_.c:424
+#: ../../install_steps_interactive.pm_.c:1180 ../../interactive.pm_.c:79
+#: ../../my_gtk.pm_.c:458
msgid "Yes"
msgstr "Ya"
-#: ../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1181
msgid "See hardware info"
msgstr "Gwelet titouroł periantel"
-#: ../install_steps_newt.pm_.c:19
+#: ../../install_steps_interactive.pm_.c:1197
+msgid "Bringing up the network"
+msgstr "O lańsań ar rouedad"
+
+#: ../../install_steps_interactive.pm_.c:1202
+msgid "Bringing down the network"
+msgstr "O tizenaouiń ar rouedad"
+
+#: ../../install_steps_newt.pm_.c:21
#, c-format
msgid "Linux-Mandrake Installation %s"
msgstr "Staliadur Linux-Mandrake %s"
-#: ../install_steps_newt.pm_.c:30
+#: ../../install_steps_newt.pm_.c:32
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
" <Tab>/<Alt-Tab> etre elfennoł | <Esaouenn> a ziuz | <F12> skramm a heul "
-#: ../interactive.pm_.c:84 ../interactive.pm_.c:163
-#: ../interactive_newt.pm_.c:50 ../interactive_newt.pm_.c:97
-#: ../interactive_stdio.pm_.c:27 ../my_gtk.pm_.c:193 ../my_gtk.pm_.c:425
-msgid "Cancel"
-msgstr "Nullań"
+#: ../../install_steps_newt.pm_.c:43
+#, c-format
+msgid ""
+"You can now partition your %s hard drive\n"
+"When you are done, don't forget to save using `w'"
+msgstr ""
+"Gallout a rit bremań parzhań ho pladenn galet %s\n"
+"Pa 'z eo graet, na zisońjit ket enrollań dre implijout `w'"
-#: ../interactive.pm_.c:181
+#: ../../interactive.pm_.c:244
msgid "Please wait"
msgstr "Gortozit mar plij"
-#: ../interactive_stdio.pm_.c:35
+#: ../../interactive_stdio.pm_.c:35
#, c-format
msgid "Ambiguity (%s), be more precise\n"
-msgstr "Amsklaer (%s), bezit aketusoc'h\n"
+msgstr "Amsklaer (%s), bezit spisoc'h\n"
-#: ../interactive_stdio.pm_.c:36 ../interactive_stdio.pm_.c:51
-#: ../interactive_stdio.pm_.c:70
+#: ../../interactive_stdio.pm_.c:36 ../../interactive_stdio.pm_.c:51
+#: ../../interactive_stdio.pm_.c:70
msgid "Bad choice, try again\n"
msgstr "Dibab fall, klaskit adarre\n"
-#: ../interactive_stdio.pm_.c:39
+#: ../../interactive_stdio.pm_.c:39
#, c-format
msgid " ? (default %s) "
msgstr "? (%s dre ziouer)"
-#: ../interactive_stdio.pm_.c:52
+#: ../../interactive_stdio.pm_.c:52
#, c-format
msgid "Your choice? (default %s) "
msgstr "Ho tibab ? (%s dre ziouer)"
-#: ../interactive_stdio.pm_.c:71
+#: ../../interactive_stdio.pm_.c:71
#, c-format
msgid "Your choice? (default %s enter `none' for none) "
msgstr "Ho tibab ? (%s dre ziouer, skrivit `none' evit hini ebet)"
-#: ../keyboard.pm_.c:88
-msgid "Armenian"
-msgstr "Armenian"
-
-#: ../keyboard.pm_.c:89
-msgid "Belgian"
-msgstr "Belgian"
-
-#: ../keyboard.pm_.c:90
-msgid "Bulgarian"
-msgstr "Bulgarian"
-
-#: ../keyboard.pm_.c:91
-msgid "Brazilian"
-msgstr "Brasilian"
-
-#: ../keyboard.pm_.c:92
-msgid "Swiss (French layout)"
-msgstr "Suis (reizhadur gallek)"
-
-#: ../keyboard.pm_.c:93
-msgid "Swiss (German layout)"
-msgstr "Suis (reizhadur alamanek)"
-
-#: ../keyboard.pm_.c:94
+#: ../../keyboard.pm_.c:89 ../../keyboard.pm_.c:116
msgid "Czech"
msgstr "Tchek"
-#: ../keyboard.pm_.c:95
+#: ../../keyboard.pm_.c:90 ../../keyboard.pm_.c:103 ../../keyboard.pm_.c:117
msgid "German"
msgstr "Alaman"
-#: ../keyboard.pm_.c:96
-msgid "Danish"
-msgstr "Danek"
-
-#: ../keyboard.pm_.c:97
+#: ../../keyboard.pm_.c:91 ../../keyboard.pm_.c:120
msgid "Dvorak"
msgstr "Dvorak"
-#: ../keyboard.pm_.c:98
-msgid "Estonian"
-msgstr "Estonian"
-
-#: ../keyboard.pm_.c:99
+#: ../../keyboard.pm_.c:92 ../../keyboard.pm_.c:122
msgid "Spanish"
-msgstr "Spaniol"
+msgstr "Spagnol"
-#: ../keyboard.pm_.c:100
+#: ../../keyboard.pm_.c:93 ../../keyboard.pm_.c:123
msgid "Finnish"
msgstr "Finnek"
-#: ../keyboard.pm_.c:101
+#: ../../keyboard.pm_.c:94 ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:124
msgid "French"
msgstr "Gall"
-#: ../keyboard.pm_.c:102
+#: ../../keyboard.pm_.c:95 ../../keyboard.pm_.c:143
+msgid "Norwegian"
+msgstr "Norvegek"
+
+#: ../../keyboard.pm_.c:96
+msgid "Polish"
+msgstr "Polonek"
+
+#: ../../keyboard.pm_.c:97 ../../keyboard.pm_.c:148
+msgid "Russian"
+msgstr "Rusiek"
+
+#: ../../keyboard.pm_.c:98 ../../keyboard.pm_.c:157
+msgid "UK keyboard"
+msgstr "Stokellaoueg RU"
+
+#: ../../keyboard.pm_.c:99 ../../keyboard.pm_.c:102 ../../keyboard.pm_.c:158
+msgid "US keyboard"
+msgstr "Stokellaoueg SUA"
+
+#: ../../keyboard.pm_.c:106
+msgid "Armenian (old)"
+msgstr "Armeniek (kozh)"
+
+#: ../../keyboard.pm_.c:107
+msgid "Armenian (typewriter)"
+msgstr "Armeniek (skriverez)"
+
+#: ../../keyboard.pm_.c:108
+msgid "Armenian (phonetic)"
+msgstr "Armeniek (soniadel)"
+
+#: ../../keyboard.pm_.c:111
+msgid "Belgian"
+msgstr "Belgian"
+
+#: ../../keyboard.pm_.c:112
+msgid "Bulgarian"
+msgstr "Bulgarek"
+
+#: ../../keyboard.pm_.c:113
+msgid "Brazilian (ABNT-2)"
+msgstr "Brasilek"
+
+#: ../../keyboard.pm_.c:114
+msgid "Swiss (German layout)"
+msgstr "Suis (reizhadur alaman)"
+
+#: ../../keyboard.pm_.c:115
+msgid "Swiss (French layout)"
+msgstr "Suis (reizhadur gall)"
+
+#: ../../keyboard.pm_.c:118
+msgid "German (no dead keys)"
+msgstr "Alaman (stokell marv ebet)"
+
+#: ../../keyboard.pm_.c:119
+msgid "Danish"
+msgstr "Danek"
+
+#: ../../keyboard.pm_.c:121
+msgid "Estonian"
+msgstr "Estoniek"
+
+#: ../../keyboard.pm_.c:125
msgid "Georgian (\"Russian\" layout)"
-msgstr "Jorjian (reizhadur \"Rusian\")"
+msgstr "Jorjiek (reizhadur \"Rusiek\")"
-#: ../keyboard.pm_.c:103
+#: ../../keyboard.pm_.c:126
msgid "Georgian (\"Latin\" layout)"
-msgstr "Jorjian (reizhadur \"Latin\")"
+msgstr "Jorjiek (reizhadur \"Latin\")"
-#: ../keyboard.pm_.c:104
+#: ../../keyboard.pm_.c:127
msgid "Greek"
msgstr "Gresian"
-#: ../keyboard.pm_.c:105
+#: ../../keyboard.pm_.c:128
msgid "Hungarian"
msgstr "Hungarian"
-#: ../keyboard.pm_.c:106
+#: ../../keyboard.pm_.c:129
+msgid "Croatian"
+msgstr "Kroatek"
+
+#: ../../keyboard.pm_.c:130
msgid "Israeli"
msgstr "Israelian"
-#: ../keyboard.pm_.c:107
+#: ../../keyboard.pm_.c:131
msgid "Israeli (Phonetic)"
msgstr "Israelian (soniadel)"
-#: ../keyboard.pm_.c:108
+#: ../../keyboard.pm_.c:134
msgid "Icelandic"
msgstr "Islandek"
-#: ../keyboard.pm_.c:109
+#: ../../keyboard.pm_.c:135
msgid "Italian"
msgstr "Italian"
-#: ../keyboard.pm_.c:110
+#: ../../keyboard.pm_.c:136
msgid "Latin American"
msgstr "Amerikan Latin"
-#: ../keyboard.pm_.c:111
+#: ../../keyboard.pm_.c:137
msgid "Dutch"
msgstr "Hollandek"
-#: ../keyboard.pm_.c:112
-msgid "Lithuanian AZERTY"
-msgstr "Lituanian AZERTY"
+#: ../../keyboard.pm_.c:138
+#, fuzzy
+msgid "Lithuanian AZERTY (old)"
+msgstr "Lituaniek AZERTY"
+
+#: ../../keyboard.pm_.c:140
+#, fuzzy
+msgid "Lithuanian AZERTY (new)"
+msgstr "Lituaniek AZERTY"
-#: ../keyboard.pm_.c:113
+#: ../../keyboard.pm_.c:141
msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Lituanian QUERTY \"linenn sifroł\""
+msgstr "Lituaniek QUERTY \"linenn sifroł\""
-#: ../keyboard.pm_.c:114
+#: ../../keyboard.pm_.c:142
msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Lituanian QUERZTY \"soniadel\""
+msgstr "Lituaniek QUERTY \"soniadel\""
-#: ../keyboard.pm_.c:115
-msgid "Norwegian"
-msgstr "Norvejian"
-
-#: ../keyboard.pm_.c:116
-#, fuzzy
+#: ../../keyboard.pm_.c:144
msgid "Polish (qwerty layout)"
-msgstr "Suis (reizhadur alamanek)"
+msgstr "Polonek (reizhadur qwerty)"
-#: ../keyboard.pm_.c:117
-#, fuzzy
+#: ../../keyboard.pm_.c:145
msgid "Polish (qwertz layout)"
-msgstr "Suis (reizhadur alamanek)"
+msgstr "Polonek (reizhadur qwerty)"
-#: ../keyboard.pm_.c:118
+#: ../../keyboard.pm_.c:146
msgid "Portuguese"
msgstr "Portugalek"
-#: ../keyboard.pm_.c:119
+#: ../../keyboard.pm_.c:147
msgid "Canadian (Quebec)"
msgstr "Kanadian (Kebek)"
-#: ../keyboard.pm_.c:120
-msgid "Russian"
-msgstr "Rusian"
-
-#: ../keyboard.pm_.c:121
+#: ../../keyboard.pm_.c:149
msgid "Russian (Yawerty)"
-msgstr "Rusian (Yawerty)"
+msgstr "Rusiek (Yawerty)"
-#: ../keyboard.pm_.c:122
+#: ../../keyboard.pm_.c:150
msgid "Swedish"
msgstr "Svedek"
-#: ../keyboard.pm_.c:123
+#: ../../keyboard.pm_.c:151
msgid "Slovenian"
msgstr "Slovek"
-#: ../keyboard.pm_.c:124
+#: ../../keyboard.pm_.c:152
msgid "Slovakian"
msgstr "Slovakek"
-#: ../keyboard.pm_.c:125
+#: ../../keyboard.pm_.c:153
msgid "Thai keyboard"
msgstr "Stokellaoueg Thai"
-#: ../keyboard.pm_.c:126
+#: ../../keyboard.pm_.c:154
msgid "Turkish (traditional \"F\" model)"
-msgstr "Turkan (hengounel doare \"F\")"
+msgstr "Turkek (hengounel doare \"F\")"
-#: ../keyboard.pm_.c:127
+#: ../../keyboard.pm_.c:155
msgid "Turkish (modern \"Q\" model)"
-msgstr "Turkan (arnevez doare \"Q\")"
+msgstr "Turkek (arnevez doare \"Q\")"
-#: ../keyboard.pm_.c:128
+#: ../../keyboard.pm_.c:156
msgid "Ukrainian"
-msgstr "Ukrainian"
+msgstr "Ukrainiek"
-#: ../keyboard.pm_.c:129
-msgid "UK keyboard"
-msgstr "Stokellaoueg RU"
-
-#: ../keyboard.pm_.c:130
-msgid "US keyboard"
-msgstr "Stokellaoueg SUA"
-
-#: ../keyboard.pm_.c:131
+#: ../../keyboard.pm_.c:159
msgid "US keyboard (international)"
msgstr "Stokellaoueg SUA (etrevroadel)"
-#: ../keyboard.pm_.c:132
+#: ../../keyboard.pm_.c:160
msgid "Yugoslavian (latin layout)"
-msgstr "Yougoslavian (reizhadur latin)"
+msgstr "Yougoslaviek (reizhadur latin)"
# 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
@@ -3253,7 +3837,7 @@ msgstr "Yougoslavian (reizhadur latin)"
# '¤' is the 'ń' (ntilde) in cp437 encoding.
# '\227' is the 'ł' (ugrave) in cp437 encoding.
#
-#: ../lilo.pm_.c:145
+#: ../../lilo.pm_.c:176
#, c-format
msgid ""
"Welcome to LILO the operating system chooser!\n"
@@ -3268,274 +3852,359 @@ msgstr ""
"\n"
"Evit rolla¤ an dibabo— aotreet, stokit <TAB>.\n"
"\n"
-"Evit karga¤ unan anezho, skrivit e anv ha stokit <ENKAS> pe gortozit %d "
-"eilennevit al loc'ha¤ dre ziouer.\n"
+"Evit karga¤ unan anezho, skrivit e anv ha stokit <ENKAS> pe c'hortozit %d "
+"eilenn evit al loc'ha¤ dre ziouer.\n"
"\n"
-#: ../mouse.pm_.c:20
-msgid "No Mouse"
-msgstr "Logodenn ebet"
+# 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
+# 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
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../lilo.pm_.c:431
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Degemer mat e GRUB an dibaber reizhiad oberia¤ !"
-#: ../mouse.pm_.c:21
-msgid "Microsoft Rev 2.1A or higher (serial)"
-msgstr "Microsoft Stumm 2.1A pe uheloc'h (a-steud)"
+#: ../../lilo.pm_.c:432
+#, 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"
-#: ../mouse.pm_.c:22
-msgid "Logitech CC Series (serial)"
-msgstr "Logitech doare CC (a-steud)"
+#: ../../lilo.pm_.c:433
+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"
-#: ../mouse.pm_.c:23
-msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-msgstr "Logitech MouseMan+/FirstMouse+ (a-steud)"
+#: ../../lilo.pm_.c:434
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "urzhiado— kent loc'ha¤, pe 'c' evit ul linenn-urzhia¤."
-#: ../mouse.pm_.c:24
-msgid "ASCII MieMouse (serial)"
-msgstr "ASCII MieMouse (a-steud)"
+#: ../../lilo.pm_.c:435
+#, 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."
-#: ../mouse.pm_.c:25
-msgid "Genius NetMouse (serial)"
-msgstr "Genius NetMouse (a-steud)"
+#: ../../lilo.pm_.c:439
+msgid "not enough room in /boot"
+msgstr ""
-#: ../mouse.pm_.c:26
-msgid "Microsoft IntelliMouse (serial)"
-msgstr "Microsoft IntelliMouse (a-steud)"
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../lilo.pm_.c:518
+msgid "Desktop"
+msgstr "Gorretaol"
-#: ../mouse.pm_.c:27
-msgid "MM Series (serial)"
-msgstr "Doare MM (a-steud)"
+#: ../../lilo.pm_.c:518
+msgid "Start Menu"
+msgstr "Meuziad Lańsań"
-#: ../mouse.pm_.c:28
-msgid "MM HitTablet (serial)"
-msgstr "MM HitTablet (a-steud)"
+#: ../../mouse.pm_.c:21
+msgid "Sun - Mouse"
+msgstr "Logodenn Sun"
-#: ../mouse.pm_.c:29
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logodenn Logitech(a-steud, seurt C7 kozh)"
+#: ../../mouse.pm_.c:23
+msgid "Apple ADB Mouse"
+msgstr "Logodenn Apple ADB"
-#: ../mouse.pm_.c:30
-msgid "Logitech MouseMan/FirstMouse (serial)"
-msgstr "Logitech MouseMan/FirstMouse (a-steud)"
+#: ../../mouse.pm_.c:24
+msgid "Apple ADB Mouse (2 Buttons)"
+msgstr "Logodenn Apple ADB (2 nozelenn)"
-#: ../mouse.pm_.c:31
-msgid "Generic Mouse (serial)"
-msgstr "Logodenn boutin (a-steud)"
+#: ../../mouse.pm_.c:25
+msgid "Apple ADB Mouse (3+ Buttons)"
+msgstr "Logodenn Apple ADB (3 nozelenn pe vuioc'h)"
-#: ../mouse.pm_.c:32
-msgid "Microsoft compatible (serial)"
-msgstr "Kenglotus Microsoft (a-steud)"
+#: ../../mouse.pm_.c:26
+msgid "Apple USB Mouse"
+msgstr "Logodenn Apple ADB "
-#: ../mouse.pm_.c:33
-msgid "Generic 3 Button Mouse (serial)"
-msgstr "Logodenn boutin 3 nozelenn (a-steud)"
+#: ../../mouse.pm_.c:27
+msgid "Apple USB Mouse (2 Buttons)"
+msgstr "Logodenn Apple USB (2 nozelenn)"
-#: ../mouse.pm_.c:34
-msgid "Mouse Systems (serial)"
-msgstr "Mouse Systems (a-steud)"
+#: ../../mouse.pm_.c:28
+msgid "Apple USB Mouse (3+ Buttons)"
+msgstr "Logodenn Apple USB (3 nozelenn pe vuioc'h)"
-#: ../mouse.pm_.c:35
+#: ../../mouse.pm_.c:30
msgid "Generic Mouse (PS/2)"
-msgstr "Logodenn boutin (PS/2)"
+msgstr "Logodenn rummel (PS/2)"
-#: ../mouse.pm_.c:36
+#: ../../mouse.pm_.c:31
msgid "Logitech MouseMan/FirstMouse (ps/2)"
msgstr "Logitech MouseMan+/FirstMouse+ (PS/2)"
-#: ../mouse.pm_.c:37
+#: ../../mouse.pm_.c:32
msgid "Generic 3 Button Mouse (PS/2)"
-msgstr "Logodenn boutin 3 nozelenn (PS/2)"
+msgstr "Logodenn rummel 3 nozelenn (PS/2)"
-#: ../mouse.pm_.c:38
+#: ../../mouse.pm_.c:33
msgid "ALPS GlidePoint (PS/2)"
msgstr "ALPS GlidePoint (PS/2)"
-#: ../mouse.pm_.c:39
+#: ../../mouse.pm_.c:34
msgid "Logitech MouseMan+/FirstMouse+ (PS/2)"
msgstr "Logitech MouseMan+/FirstMouse+ (PS/2)"
-#: ../mouse.pm_.c:40
+#: ../../mouse.pm_.c:35
msgid "Kensington Thinking Mouse (PS/2)"
-msgstr "Kensington Thinking Mouse (PS/2)"
+msgstr "Logodenn Kensington Thinking (PS/2)"
-#: ../mouse.pm_.c:41
+#: ../../mouse.pm_.c:36
msgid "ASCII MieMouse (PS/2)"
msgstr "ASCII MieMouse (PS/2)"
-#: ../mouse.pm_.c:42
+#: ../../mouse.pm_.c:37
msgid "Genius NetMouse (PS/2)"
msgstr "Genius NetMouse (PS/2)"
-#: ../mouse.pm_.c:43
+#: ../../mouse.pm_.c:38
msgid "Genius NetMouse Pro (PS/2)"
msgstr "Genius NetMouse Pro (PS/2)"
-#: ../mouse.pm_.c:44
+#: ../../mouse.pm_.c:39
msgid "Genius NetScroll (PS/2)"
msgstr "Genius NetScroll (PS/2)"
-#: ../mouse.pm_.c:45
+#: ../../mouse.pm_.c:40
msgid "Microsoft IntelliMouse (PS/2)"
msgstr "Microsoft IntelliMouse (PS/2)"
-#: ../mouse.pm_.c:46
+#: ../../mouse.pm_.c:41
msgid "ATI Bus Mouse"
msgstr "Logodenn bus ATI"
-#: ../mouse.pm_.c:47
+#: ../../mouse.pm_.c:42
msgid "Microsoft Bus Mouse"
msgstr "Logodenn bus Microsoft"
-#: ../mouse.pm_.c:48
+#: ../../mouse.pm_.c:43
msgid "Logitech Bus Mouse"
msgstr "Logodenn bus Logitech"
-#: ../mouse.pm_.c:49
+#: ../../mouse.pm_.c:44
msgid "USB Mouse"
msgstr "Logodenn USB"
-#: ../mouse.pm_.c:50
+#: ../../mouse.pm_.c:45
msgid "USB Mouse (3 buttons or more)"
msgstr "Logodenn USB (3 nozelenn pe vuioc'h)"
-#: ../partition_table.pm_.c:486
+#: ../../mouse.pm_.c:47
+msgid "No Mouse"
+msgstr "Logodenn ebet"
+
+#: ../../mouse.pm_.c:48
+msgid "Microsoft Rev 2.1A or higher (serial)"
+msgstr "Microsoft Stumm 2.1A pe uheloc'h (a-steud)"
+
+#: ../../mouse.pm_.c:49
+msgid "Logitech CC Series (serial)"
+msgstr "Logitech doare CC (a-steud)"
+
+#: ../../mouse.pm_.c:50
+msgid "Logitech MouseMan+/FirstMouse+ (serial)"
+msgstr "Logitech MouseMan+/FirstMouse+ (a-steud)"
+
+#: ../../mouse.pm_.c:51
+msgid "ASCII MieMouse (serial)"
+msgstr "ASCII MieMouse (a-steud)"
+
+#: ../../mouse.pm_.c:52
+msgid "Genius NetMouse (serial)"
+msgstr "Genius NetMouse (a-steud)"
+
+#: ../../mouse.pm_.c:53
+msgid "Microsoft IntelliMouse (serial)"
+msgstr "Microsoft IntelliMouse (a-steud)"
+
+#: ../../mouse.pm_.c:54
+msgid "MM Series (serial)"
+msgstr "Doare MM (a-steud)"
+
+#: ../../mouse.pm_.c:55
+msgid "MM HitTablet (serial)"
+msgstr "MM HitTablet (a-steud)"
+
+#: ../../mouse.pm_.c:56
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logodenn Logitech (a-steud, seurt C7 kozh)"
+
+#: ../../mouse.pm_.c:57
+msgid "Logitech MouseMan/FirstMouse (serial)"
+msgstr "Logitech MouseMan/FirstMouse (a-steud)"
+
+#: ../../mouse.pm_.c:58
+msgid "Generic Mouse (serial)"
+msgstr "Logodenn rummel (a-steud)"
+
+#: ../../mouse.pm_.c:59
+msgid "Microsoft compatible (serial)"
+msgstr "Kenglotus Microsoft (a-steud)"
+
+#: ../../mouse.pm_.c:60
+msgid "Generic 3 Button Mouse (serial)"
+msgstr "Logodenn rummel 3 nozelenn (a-steud)"
+
+#: ../../mouse.pm_.c:61
+msgid "Mouse Systems (serial)"
+msgstr "Mouse Systems (a-steud)"
+
+#: ../../my_gtk.pm_.c:459
+msgid "Is this correct?"
+msgstr "Ha reizh eo ?"
+
+#: ../../partition_table.pm_.c:533
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
"to the extended partitions"
msgstr ""
-"Un toull a zo en ho taolenn barzhadur hogen n'hellan ket e implij.\n"
-"Fińval ar parzhadennoł kentań derez evit ma vo an toull stok ouzh ar "
-"parzhadennoł astennet eo an diskoulm"
+"Un toull a zo en ho taolenn barzhań hogen n'hellan ket e implijout.\n"
+"Fińval ar parzhadurioł kentań derez evit ma vo an toull stok ouzh ar "
+"parzhadurioł astennet eo an diskoulm"
-#: ../partition_table.pm_.c:572
+#: ../../partition_table.pm_.c:621
#, c-format
msgid "Error reading file %s"
msgstr "Fazi en ur lenn ar restr %s"
-#: ../partition_table.pm_.c:579
+#: ../../partition_table.pm_.c:628
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Assevel adalek ar restr %s sac'het %s"
-#: ../partition_table.pm_.c:581
+#: ../../partition_table.pm_.c:630
msgid "Bad backup file"
msgstr "Restr gwareziń siek"
-#: ../partition_table.pm_.c:602
+#: ../../partition_table.pm_.c:651
#, c-format
msgid "Error writing to file %s"
msgstr "Fazi en ur skrivań er restr %s"
-#: ../placeholder.pm_.c:5
-#, fuzzy
+#: ../../pkgs.pm_.c:20
+msgid "mandatory"
+msgstr "ret-grońs"
+
+#: ../../pkgs.pm_.c:21
+msgid "must have"
+msgstr "a rankfec'h kaout"
+
+#: ../../pkgs.pm_.c:22
+msgid "important"
+msgstr "a-bouez"
+
+#: ../../pkgs.pm_.c:24
+msgid "very nice"
+msgstr "brav-tre"
+
+#: ../../pkgs.pm_.c:25
+msgid "nice"
+msgstr "brav"
+
+#: ../../pkgs.pm_.c:26 ../../pkgs.pm_.c:27
+msgid "interesting"
+msgstr "dedennus"
+
+#: ../../pkgs.pm_.c:28 ../../pkgs.pm_.c:29 ../../pkgs.pm_.c:30
+#: ../../pkgs.pm_.c:31
+msgid "maybe"
+msgstr "marteze"
+
+#: ../../pkgs.pm_.c:33
+msgid "i18n (important)"
+msgstr "i18n (a-bouez)"
+
+#: ../../pkgs.pm_.c:34
+msgid "i18n (very nice)"
+msgstr "i18n (brav-tre)"
+
+#: ../../pkgs.pm_.c:35
+msgid "i18n (nice)"
+msgstr "i18n (brav)"
+
+#: ../../placeholder.pm_.c:5
msgid "Show less"
-msgstr "Diskouez an holl"
+msgstr "Diskouez nebeutoc'h"
-#: ../placeholder.pm_.c:6
+#: ../../placeholder.pm_.c:6
msgid "Show more"
-msgstr ""
+msgstr "Diskouez muioc'h"
-#: ../printer.pm_.c:244
+#: ../../printer.pm_.c:244
msgid "Local printer"
msgstr "Moullerez lec'hel"
-#: ../printer.pm_.c:245
+#: ../../printer.pm_.c:245
msgid "Remote lpd"
msgstr "lpd a-bell"
-#: ../printer.pm_.c:246
+#: ../../printer.pm_.c:246
msgid "SMB/Windows 95/98/NT"
-msgstr "SMB (Windows 95/98/NT)"
+msgstr "SMB/Windows 95/98/NT"
-#: ../printer.pm_.c:247
+#: ../../printer.pm_.c:247
msgid "NetWare"
msgstr "NetWare"
-#: ../printerdrake.pm_.c:75
-msgid "Local Printer Options"
-msgstr "Dibarzhoł ar voullerez lec'hel"
-
-#: ../printerdrake.pm_.c:76
-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?"
-msgstr ""
-"Pep steud moullań (m'eo kaset an dleadoł moullań davetań) en deus\n"
-"ezhomm un anv (lp alies) hag ur renkell spool kevret gantań. Pe anv\n"
-"ha renkell a zo da implj evit ar steud-mań ?"
-
-#: ../printerdrake.pm_.c:79
-msgid "Name of queue:"
-msgstr "Anv ar steud :"
-
-#: ../printerdrake.pm_.c:79
-msgid "Spool directory:"
-msgstr "Renkell ar spool :"
-
-#: ../printerdrake.pm_.c:90
-msgid "Select Printer Connection"
-msgstr "Diuzit lugerezh ar voullerez"
-
-#: ../printerdrake.pm_.c:91
-msgid "How is the printer connected?"
-msgstr "Penaos eo luget ar voullerez ?"
-
-#: ../printerdrake.pm_.c:99
+#: ../../printerdrake.pm_.c:19
msgid "Detecting devices..."
msgstr "O tinoiń trobarzhelloł..."
-#: ../printerdrake.pm_.c:99
+#: ../../printerdrake.pm_.c:19
msgid "Test ports"
msgstr "Amprouiń ar porzhioł"
-#: ../printerdrake.pm_.c:112
+#: ../../printerdrake.pm_.c:35
#, c-format
msgid "A printer, model \"%s\", has been detected on "
msgstr "Ur voullerez, doare \"%s\", zo bet dinoet war "
-#: ../printerdrake.pm_.c:119
+#: ../../printerdrake.pm_.c:44
msgid "Local Printer Device"
msgstr "Trobarzhell voullerez lec'hel"
-#: ../printerdrake.pm_.c:120
+#: ../../printerdrake.pm_.c:45
msgid ""
-"What device is your printer connected to \n"
+"What device is your printer connected to \n"
"(note that /dev/lp0 is equivalent to LPT1:)?\n"
msgstr ""
"Ouzh pe drobarzhell eo luget ho moullerez \n"
"(taolit evezh /dev/lp0 a zo kevatal da LPT1:) ?\n"
-#: ../printerdrake.pm_.c:121
-msgid "Printer Device:"
-msgstr "Trobarzhell ar voullerez :"
+#: ../../printerdrake.pm_.c:47
+msgid "Printer Device"
+msgstr "Trobarzhell ar voullerez"
-#: ../printerdrake.pm_.c:125
+#: ../../printerdrake.pm_.c:62
msgid "Remote lpd Printer Options"
msgstr "Dibarzhoł ar voullerez lpd a-bell"
-#: ../printerdrake.pm_.c:126
+#: ../../printerdrake.pm_.c:63
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
"on that server which jobs should be placed in."
msgstr ""
-"A-benn implij ur steud moulań lpd a-bell, ret eo deoc'h\n"
+"A-benn implijout ur steud moulań lpd a-bell, ret eo deoc'h\n"
"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:129
-msgid "Remote hostname:"
-msgstr "Dilemel an anv ostiz :"
+#: ../../printerdrake.pm_.c:66
+msgid "Remote hostname"
+msgstr "Anv an ostiz a-bell"
-#: ../printerdrake.pm_.c:129
+#: ../../printerdrake.pm_.c:67
msgid "Remote queue"
msgstr "Steud a-bell"
-#: ../printerdrake.pm_.c:134
+#: ../../printerdrake.pm_.c:75
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Dibarzhoł moullań SMB (Windows 9x/NT)"
-#: ../printerdrake.pm_.c:135
+#: ../../printerdrake.pm_.c:76
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (Note! It may be different from its\n"
@@ -3546,38 +4215,30 @@ msgstr ""
"Evit moullań war ur voullerez SMB eo ret deoc'h pourvezań\n"
"anv an ostiz SMB (Ho evezh ! Disheńvel e c'hell bezań diouzh\n"
"e anv ostiz TCP/IP !) ha marteze chomlec'h IP ar servijer moullań,\n"
-"kement hag anv rannet ar voullerez a glazkit tizhout ha ne vern pe\n"
-"titour a anv arveriad, tremenger ha strollad labour en implij."
-
-#: ../printerdrake.pm_.c:140
-msgid "SMB server IP:"
-msgstr "IP ar servijer SMB :"
-
-#: ../printerdrake.pm_.c:140
-msgid "SMB server host:"
-msgstr "Anv ar servijer SMB :"
+"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:141 ../printerdrake.pm_.c:163
-msgid "Password:"
-msgstr "Tremenger :"
+#: ../../printerdrake.pm_.c:81
+msgid "SMB server host"
+msgstr "Anv ar servijer SMB"
-#: ../printerdrake.pm_.c:141
-msgid "Share name:"
-msgstr "Anv rannet :"
+#: ../../printerdrake.pm_.c:82
+msgid "SMB server IP"
+msgstr "IP ar servijer SMB"
-#: ../printerdrake.pm_.c:141 ../printerdrake.pm_.c:163
-msgid "User name:"
-msgstr "Anv arveriad :"
+#: ../../printerdrake.pm_.c:83
+msgid "Share name"
+msgstr "Anv rannet"
-#: ../printerdrake.pm_.c:142
-msgid "Workgroup:"
-msgstr "Strollad labour :"
+#: ../../printerdrake.pm_.c:86
+msgid "Workgroup"
+msgstr "Strollad labour"
-#: ../printerdrake.pm_.c:157
+#: ../../printerdrake.pm_.c:102
msgid "NetWare Printer Options"
msgstr "Dibarzhoł ar voullerez NetWare"
-#: ../printerdrake.pm_.c:158
+#: ../../printerdrake.pm_.c:103
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (Note! it may be different from its\n"
@@ -3587,69 +4248,97 @@ msgstr ""
"Evit moullań war ur voullerez NetWare eo ret deoc'h pourvezań anv ar\n"
"servijer moullań NetWare (Ho evezh ! Disheńvel e c'hell bezań diouzh e\n"
"anv ostiz TCP/IP !) kement hag anv ar steud moullań evit ar voullerez\n"
-"a glazkit tizhout ha ne vern pe anv arveriad ha tremenger en implij."
+"a glaskit tizhout ha ne vern pe anv arveriad ha tremenger en implij."
-#: ../printerdrake.pm_.c:162
-msgid "Print Queue Name:"
-msgstr "Anv ar steud moullań :"
+#: ../../printerdrake.pm_.c:107
+msgid "Printer Server"
+msgstr "Servijer moullań"
-#: ../printerdrake.pm_.c:162
-msgid "Printer Server:"
-msgstr "Servijer moullań :"
+#: ../../printerdrake.pm_.c:108
+msgid "Print Queue Name"
+msgstr "Anv ar steud moullań"
-#: ../printerdrake.pm_.c:173
+#: ../../printerdrake.pm_.c:121
msgid "Yes, print ASCII test page"
msgstr "Ya, moullit ur bajenn arnod ASCII"
-#: ../printerdrake.pm_.c:174
+#: ../../printerdrake.pm_.c:122
msgid "Yes, print PostScript test page"
msgstr "Ya, moullit ur bajenn arnod PostScript"
-#: ../printerdrake.pm_.c:175
+#: ../../printerdrake.pm_.c:123
msgid "Yes, print both test pages"
msgstr "Ya, moullit an div bajenn arnod"
-#: ../printerdrake.pm_.c:183
+#: ../../printerdrake.pm_.c:130
msgid "Configure Printer"
msgstr "Kefluniań ar voullerez"
-#: ../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:131
msgid "What type of printer do you have?"
msgstr "Peseurt moullerez hoc'h eus ?"
-#: ../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:163
msgid "Printer options"
msgstr "Dibarzhoł ar voullerez"
-#: ../printerdrake.pm_.c:205
+#: ../../printerdrake.pm_.c:164
msgid "Paper Size"
msgstr "Ment ar paper"
-#: ../printerdrake.pm_.c:206
+#: ../../printerdrake.pm_.c:165
msgid "Eject page after job?"
msgstr "Stlepel ar bajenn goude moullań ?"
-#: ../printerdrake.pm_.c:209
-msgid "Fix stair-stepping text?"
-msgstr "Kempenn ar skrid mod-diri ?"
-
-#: ../printerdrake.pm_.c:212
+#: ../../printerdrake.pm_.c:170
msgid "Uniprint driver options"
msgstr "Dibarzhoł ar sturier Uniprint"
-#: ../printerdrake.pm_.c:213
+#: ../../printerdrake.pm_.c:171
msgid "Color depth options"
-msgstr "Dibarzhoł donder livioł"
+msgstr "Dibarzhoł donder liv"
+
+#: ../../printerdrake.pm_.c:173
+msgid "Print text as PostScript?"
+msgstr "Moullań skrid evel PostScript ?"
+
+#: ../../printerdrake.pm_.c:174
+msgid "Reverse page order"
+msgstr "Eilpennań urzh ar pajennoł"
+
+#: ../../printerdrake.pm_.c:176
+msgid "Fix stair-stepping text?"
+msgstr "Kempenn an efed-diri ?"
+
+#: ../../printerdrake.pm_.c:179
+msgid "Number of pages per output pages"
+msgstr "Niver a bajennoł dre bajenn ziskas"
+
+#: ../../printerdrake.pm_.c:180
+msgid "Right/Left margins in points (1/72 of inch)"
+msgstr "Marzoł Dehoł/Kleiz e poentoł (1/72 ur meudad)"
-#: ../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:181
+msgid "Top/Bottom margins in points (1/72 of inch)"
+msgstr "Marzoł Krec'h/Traoń e poentoł (1/72 ur meudad)"
+
+#: ../../printerdrake.pm_.c:184
+msgid "Extra GhostScript options"
+msgstr "Dibarzhoł GhostScript ouzhpenn"
+
+#: ../../printerdrake.pm_.c:187
+msgid "Extra Text options"
+msgstr "Dibarzhoł skrid ouzhpenn"
+
+#: ../../printerdrake.pm_.c:198
msgid "Do you want to test printing?"
-msgstr "Mennout a rit amprouiń ar moullań ?"
+msgstr "Ha mennout a rit amprouiń moullań skrid ?"
-#: ../printerdrake.pm_.c:234
+#: ../../printerdrake.pm_.c:210
msgid "Printing test page(s)..."
-msgstr "O voullań pajenn(oł) arnod..."
+msgstr "O voullań pajenn(oł) skrid..."
-#: ../printerdrake.pm_.c:252
+#: ../../printerdrake.pm_.c:218
#, c-format
msgid ""
"Test page(s) have been sent to the printer daemon.\n"
@@ -3666,7 +4355,7 @@ msgstr ""
"\n"
"Ha mont a ra en-dro reizh ?"
-#: ../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:222
msgid ""
"Test page(s) have been sent to the printer daemon.\n"
"This may take a little time before printer start.\n"
@@ -3676,316 +4365,666 @@ msgstr ""
"Ur pennadig e c'hell padout a-raok ma loc'hfe a voullerez.\n"
"Ha mont a ra en-dro reizh ?"
-#: ../raid.pm_.c:36
+#: ../../printerdrake.pm_.c:238
+msgid "Printer"
+msgstr "Moullerez"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Would you like to configure a printer?"
+msgstr "Mennout a rit kefluniań ur voullerez ?"
+
+#: ../../printerdrake.pm_.c:243
+msgid ""
+"Here are the following print queues.\n"
+"You can add some more or change the existing ones."
+msgstr ""
+"Setu da heul ar steudadoł moullań.\n"
+"Gallout a rit ouzhpennań lod pe gemmań a re a zo."
+
+#: ../../printerdrake.pm_.c:266 ../../printerdrake.pm_.c:272
+msgid "Select Printer Connection"
+msgstr "Diuzit lugerezh ar voullerez"
+
+#: ../../printerdrake.pm_.c:267
+msgid "How is the printer connected?"
+msgstr "Penaos eo luget ar voullerez ?"
+
+#: ../../printerdrake.pm_.c:272
+msgid "Remove queue"
+msgstr "Lemel ar steudad"
+
+#: ../../printerdrake.pm_.c:273
+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 ""
+"Pep steud moullań (m'eo kaset an dleadoł moullań davetań) en deus\n"
+"ezhomm un anv (lp alies) hag ur renkell spool kevret gantań. Pe anv\n"
+"ha renkell a zo da implijout evit ar steud-mań ha penaos eo luget ar "
+"voullerrez ?"
+
+#: ../../printerdrake.pm_.c:276
+msgid "Name of queue"
+msgstr "Anv ar steud"
+
+#: ../../printerdrake.pm_.c:277
+msgid "Spool directory"
+msgstr "Renkell ar spool"
+
+#: ../../printerdrake.pm_.c:278
+msgid "Printer Connection"
+msgstr "Lugerezh ar voullerez"
+
+#: ../../raid.pm_.c:36
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "N'hellan ket ouzhpennań ur barzhadenn da RAID md%d _furmadet_"
+msgstr "N'hellan ket ouzhpennań ur parzhadur da RAID md%d _furmadet_"
-#: ../raid.pm_.c:106
+#: ../../raid.pm_.c:106
msgid "Can't write file $file"
msgstr "N'hellan ket skrivań e $file"
-#: ../raid.pm_.c:146
+#: ../../raid.pm_.c:131
+msgid "mkraid failed"
+msgstr "mkraid sac'het"
+
+#: ../../raid.pm_.c:131
+msgid "mkraid failed (maybe raidtools are missing?)"
+msgstr "mkraid sac'het (raidtools a vank emichańs ?)"
+
+#: ../../raid.pm_.c:147
#, c-format
msgid "Not enough partitions for RAID level %d\n"
-msgstr "Ket a-walc'h a barzhadennoł evit RAID live %d\n"
+msgstr "Ket a-walc'h a parzhadurioł evit RAID live %d\n"
+
+#: ../../services.pm_.c:14
+msgid "Anacron a periodic command scheduler."
+msgstr "Anacron, ur steuńvaer urzhiadoł mareadek."
+
+#: ../../services.pm_.c:15
+msgid ""
+"apmd is used for monitoring batery status and logging it via syslog.\n"
+"It can also be used for shutting down the machine when the battery is low."
+msgstr ""
+"servijout a ra apmd evit evezhiań stad an daspugner hag he enrollań dre "
+"syslog.\n"
+"Gallout a ra ivez servijout da lazhań an ardivink pa vez izel an daspugner."
+
+#: ../../services.pm_.c:17
+msgid ""
+"Runs commands scheduled by the at command at the time specified when\n"
+"at was run, and runs batch commands when the load average is low enough."
+msgstr ""
+"Seveniń an urzhiadoł steuńvaet gant an urzhiad at d'ar pred laket pa 'z eo\n"
+"bet sevenet at, ha seveniń urzhiadoł dre lod pa 'z eo izel a-walc'h ar garg."
+
+#: ../../services.pm_.c:19
+msgid ""
+"cron is a standard UNIX program that runs user-specified programs\n"
+"at periodic scheduled times. vixie cron adds a number of features to the "
+"basic\n"
+"UNIX cron, including better security and more powerful configuration options."
+msgstr ""
+"Ur goulev standard UNIX eo cron evit seveniń goulevioł diouzh c'hoant an\n"
+"arveriaded da goulzoł mareadek steuńvaet. vixie cron a ouzhpenn kalzig a "
+"arc'hweloł\n"
+"d'ar cron UNIX diazez, en o zouez surentez ha dibarzhoł kefluniań gwelloc'h."
+
+#: ../../services.pm_.c:22
+msgid ""
+"GPM adds mouse support to text-based Linux applications such the\n"
+"Midnight Commander. It also allows mouse-based console cut-and-paste "
+"operations,\n"
+"and includes support for pop-up menus on the console."
+msgstr ""
+"GPM a zegas implij al logodenn d'an arloadoł Linux mod-skrid evel\n"
+"Midnight Commander. Reiń a ra tu da seveniń obererezhoł troc'hań-ha-pegań,\n"
+"ha skor evit meuziadoł kemperzhel war al letrin."
+
+#: ../../services.pm_.c:25
+msgid ""
+"Apache is a World Wide Web server. It is used to serve HTML files\n"
+"and CGI."
+msgstr ""
+"Ur servijer evit ar Gwiad Bedel eo Apache. Implijet e vez evit servijań\n"
+"restroł HTML ha CGI."
+
+#: ../../services.pm_.c:27
+msgid ""
+"The internet superserver daemon (commonly called inetd) starts a\n"
+"variety of other internet services as needed. It is responsible for "
+"starting\n"
+"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
+"disables\n"
+"all of the services it is responsible for."
+msgstr ""
+"An diaoul gourservijer kenrouedad (anvet inetd ordinal) a loc'h ur\n"
+"bochad a servijoł kenrouedad all diouzh an ezhomm. E karg loc'hań meur a "
+"servijoł\n"
+"eo, en o zouez telnet, ftp, rsh, and rlogin. Dizoberiań inetd a zizoberia\n"
+"an holl servijoł m'eo eń atebek warno."
+
+#: ../../services.pm_.c:31
+msgid ""
+"This package loads the selected keyboard map as set in\n"
+"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
+"You should leave this enabled for most machines."
+msgstr ""
+"Ar pakad-mań a garg ar stokellaoueg diuzet evel termenet e\n"
+"/etc/sysconfig/keyboard. Dre ar maveg kbdconfig e c'hell bezań diuzet\n"
+"kement-se. Gwell deoc'h leuskel se gweredekaet war darn vuiań an ardivinkoł."
+
+#: ../../services.pm_.c:34
+msgid ""
+"lpd is the print daemon required for lpr to work properly. It is\n"
+"basically a server that arbitrates print jobs to printer(s)."
+msgstr ""
+"An diaoul moullań ret evit ma dafez en-ro reizh lpr eo lpd. Dre vras\n"
+"ez eo ur servijer a vera dleadoł moullań evir ar voullerez(ed)."
+
+#: ../../services.pm_.c:36
+msgid ""
+"named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
+"host names to IP addresses."
+msgstr ""
+"named (BIND) a zo ur Servijer Anvioł Domani (DNS) a zo implijet evit\n"
+"amdreiń anvioł ostiz e chomlec'hioł IP."
+
+#: ../../services.pm_.c:38
+msgid ""
+"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
+"Manager/Windows), and NCP (NetWare) mount points."
+msgstr ""
+"Evit marc'hań ha divarc'hań poentoł marc'hań an holl Reizhiadoł Restroł\n"
+"Rouedad (NFS), SMB (Lan Manager/Windows) ha NCP (NetWare)."
+
+#: ../../services.pm_.c:40
+msgid ""
+"Activates/Deactivates all network interfaces configured to start\n"
+"at boot time."
+msgstr ""
+"Oberia/Dizoberia an holl etrefasoł rouedad kefluniet da lańsań\n"
+"da vare al loc'hań."
+
+#: ../../services.pm_.c:42
+msgid ""
+"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
+"This service provides NFS server functionality, which is configured via the\n"
+"/etc/exports file."
+msgstr ""
+"NFS a zo ur c'homenad brudet evit rannań restroł dre rouedadoł TCP/IP.\n"
+"Ar servij-mań a bourvez arc'hweloł ur servijer NFS, a vez kefluniaet dre ar\n"
+"restr /etc/exports."
+
+#: ../../services.pm_.c:45
+msgid ""
+"NFS is a popular protocol for file sharing across TCP/IP\n"
+"networks. This service provides NFS file locking functionality."
+msgstr ""
+"NFS a zo ur c'homenad brudet evit rannań restroł dre rouedadoł\n"
+"TCP/IP. Ar servij-mań a bourvez un arc'hwel morailhań restroł NFS."
+
+#: ../../services.pm_.c:47
+msgid ""
+"PCMCIA support is usually to support things like ethernet and\n"
+"modems in laptops. It won't get started unless configured so it is safe to "
+"have\n"
+"it installed on machines that don't need it."
+msgstr ""
+"Skorań PCMCIA a zegas an tu da implijonut traoł evel ethernet ha modemoł\n"
+"e urzhiataeroł hezoug. Ne vo ket kroget hep bezań bet kefluniet, rak-se eo "
+"diarvar\n"
+"e staliań war ardivinkoł n'o deus ket ezhomm anezhań."
-#: ../standalone/draksec_.c:28
+#: ../../services.pm_.c:50
+msgid ""
+"The portmapper manages RPC connections, which are used by\n"
+"protocols such as NFS and NIS. The portmap server must be running on "
+"machines\n"
+"which act as servers for protocols which make use of the RPC mechanism."
+msgstr ""
+"Ar c'hartenner porzhioł a vera kevreadennoł RPC, a zo implijet gant\n"
+"komenadoł evel NFS ha NIS. Ar servijer kartenn-porzhioł a rankfe mont "
+"en-dro\n"
+"war ardivinkoł anezho servijerien komenadoł a implij ar reizhiad RPC."
+
+#: ../../services.pm_.c:53
+msgid ""
+"Postfix is a Mail Transport Agent, which is the program that\n"
+"moves mail from one machine to another."
+msgstr ""
+"Ur Gwazour Treuzdougen Postel eo Postfix, a zo ar goulev a\n"
+"zilech posteloł etre un ardivink hag un all."
+
+#: ../../services.pm_.c:55
+msgid ""
+"Saves and restores system entropy pool for higher quality random\n"
+"number generation."
+msgstr ""
+"Enroll hag assav poul dizurzh ar reizhiad evit genel niveroł\n"
+"dargouezhek gant gwelloc'h perzhded."
+
+#: ../../services.pm_.c:57
+msgid ""
+"The routed daemon allows for automatic IP router table updated via\n"
+"the RIP protocol. While RIP is widely used on small networks, more complex\n"
+"routing protocols are needed for complex networks."
+msgstr ""
+"An diaoul routed a ro an tu da vremanaat ent emgefreek an taolenn henchań\n"
+"IP dre ar c'homenad RIP. Tra ma vez implijet aliesig RIP war rouedadoł "
+"bihan,\n"
+"ezhomm a zo komenadoł henchań kemplezhoc'h evit rouedadoł rouestlet."
+
+#: ../../services.pm_.c:60
+msgid ""
+"The rstat protocol allows users on a network to retrieve\n"
+"performance metrics for any machine on that network."
+msgstr ""
+"Ar c'homenad rstat a ro tu da implijerien ur rouedad da zastum\n"
+"muzulioł barregezh diwar ne vern pe ardivink er rouedad-se."
+
+#: ../../services.pm_.c:62
+msgid ""
+"The rusers protocol allows users on a network to identify who is\n"
+"logged in on other responding machines."
+msgstr ""
+"Ar c'homenad rusers a ro tu da implijerien ur rouedad da anavezout piv\n"
+"a zo kevreet ouzh ardivinkoł all a respont."
+
+#: ../../services.pm_.c:64
+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 ""
+"Ar c'homenad rwho a bourchas da implijerien a-bell roll an holl arveriaded a "
+"zo\n"
+"kevreet ouzh un ardivink ma da en-dro warnań an diaoul rwhod (heńvel ouzh "
+"finger)."
+
+#: ../../services.pm_.c:66
+msgid ""
+"Syslog is the facility by which many daemons use to log messages\n"
+"to various system log files. It is a good idea to always run syslog."
+msgstr ""
+"Syslog a zo ur gwazerezh ma enroll drezań an diaouled niverus o "
+"c'hemennadoł\n"
+"e kerzhlevrioł liesseurt ar reizhiad. Ur mennozh mat eo seveniń ingal syslog."
+
+#: ../../services.pm_.c:68
+msgid "This startup script try to load your modules for your usb mouse."
+msgstr "An urzhiaoueg loc'hań a glask kargań molladoł evit ho logodenn usb."
+
+#: ../../services.pm_.c:69
+msgid "Starts and stops the X Font Server at boot time and shutdown."
+msgstr ""
+"Enaou ha dizenaou ar servijer Fontoł X da vare al loc'hań hag al lazhań."
+
+#: ../../services.pm_.c:92
+msgid "Choose which services should be automatically started at boot time"
+msgstr "Dibabit pe servijoł a zlefe bezań lańset ent emgefreek pa loc'her"
+
+# This message is shown before booting Linux; so the encoding depends
+# on what the hardware supports... it is safer to assume ascii-only
+# ń and ł etc are transcribed unaccented.
+#: ../../silo.pm_.c:116
+#, c-format
+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 ""
+"Degemer mat e SILO, an dibaber reizhiad oberia¤ !\n"
+"\n"
+"Evit rolla¤ an dibabo— aotreet, stokit <TAB>.\n"
+"\n"
+"Evit karga¤ unan anezho, skrivit e anv ha stokit <ENKAS> pe c'hortozit %d "
+"eilenn evit al loc'ha¤ dre ziouer.\n"
+"\n"
+
+#: ../../standalone/drakboot_.c:23
+msgid "Configure LILO/GRUB"
+msgstr "Kefluniań LILO/GRUB"
+
+#: ../../standalone/drakboot_.c:24
+msgid "Create a boot floppy"
+msgstr "Krouiń ur bladennig loc'hań"
+
+#: ../../standalone/drakboot_.c:25
+msgid "Format floppy"
+msgstr "Furmadiń ar bladennig"
+
+#: ../../standalone/drakboot_.c:36
+msgid "Choice"
+msgstr "Dibab"
+
+#: ../../standalone/draksec_.c:28
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."
-#: ../standalone/draksec_.c:31
+#: ../../standalone/draksec_.c:31
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
+"Gweredekaet eo bremań an tremenger, hogen dierbedet eo c'hoazh an implij en "
+"ur rouedad"
-#: ../standalone/draksec_.c:32
+#: ../../standalone/draksec_.c:32
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."
-#: ../standalone/draksec_.c:34
+#: ../../standalone/draksec_.c:34
msgid ""
"This is the standard security recommended for a computer that will be used\n"
"to connect to the Internet as a client. There are now security checks. "
msgstr ""
+"Setu al live surentez standard a vez erbedet evit un urzhiataer a vo "
+"implijet\n"
+"evit kevreań evel arval ouzh ar Genrouedad. Bremań ez eus gwiriadennoł "
+"surentez."
-#: ../standalone/draksec_.c:36
+#: ../../standalone/draksec_.c:36
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"
"connections from many clients. "
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."
-#: ../standalone/draksec_.c:39
+#: ../../standalone/draksec_.c:39
msgid ""
"We take level 4 features, but now the system is entirely closed.\n"
"Security features are at their maximum."
msgstr ""
+"Kemer a reomp arc'hweloł al live 4, hogen bremań eo peurserret ar reizhiad.\n"
+"Arc'hweloł surentez a zo en o muiań"
-#: ../standalone/draksec_.c:49
+#: ../../standalone/draksec_.c:49
msgid "Setting security level"
msgstr "O termeniń al live surentez"
-#: ../standalone/drakxconf_.c:21
+#: ../../standalone/drakxconf_.c:21
msgid "Choose the tool you want to use"
msgstr "Dibabit ar benveg a vennit staliań"
-#: ../standalone/drakxservices_.c:21
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Dibabit pe servijoł a zlefe bezań lańset ent emgefreek pa loc'her"
+#: ../../standalone/keyboarddrake_.c:23
+msgid "What is your keyboard layout?"
+msgstr "Petra eo reizhadur ho stokellaoueg ?"
+
+#: ../../standalone/mousedrake_.c:25
+msgid "What is the type of your mouse?"
+msgstr "Peseurt eo ho logodenn ?"
-#: ../standalone/mousedrake_.c:30
+#: ../../standalone/mousedrake_.c:30
msgid "no serial_usb found\n"
msgstr "serial_usb kavet ebet\n"
-#: ../standalone/mousedrake_.c:35
+#: ../../standalone/mousedrake_.c:35
msgid "Emulate third button?"
msgstr "Kendarvan an trede nozelenn ?"
-#: ../standalone/rpmdrake_.c:25
-#, fuzzy
+#: ../../standalone/mousedrake_.c:39
+msgid "Which serial port is your mouse connected to?"
+msgstr "Ouzh pe borzh a-steud eo luget ho logodenn ?"
+
+#: ../../standalone/rpmdrake_.c:25
msgid "reading configuration"
-msgstr "Amprouiń ar c'hefluniadur"
+msgstr "o lenn ar c'hefluniadur"
-#: ../standalone/rpmdrake_.c:45 ../standalone/rpmdrake_.c:50
-#: ../standalone/rpmdrake_.c:253
+#: ../../standalone/rpmdrake_.c:45 ../../standalone/rpmdrake_.c:50
+#: ../../standalone/rpmdrake_.c:253
msgid "File"
-msgstr ""
+msgstr "Restr"
-#: ../standalone/rpmdrake_.c:48 ../standalone/rpmdrake_.c:229
-#: ../standalone/rpmdrake_.c:253 ../standalone/rpmdrake_.c:269
+#: ../../standalone/rpmdrake_.c:48 ../../standalone/rpmdrake_.c:229
+#: ../../standalone/rpmdrake_.c:253 ../../standalone/rpmdrake_.c:269
msgid "Search"
-msgstr ""
+msgstr "Klask"
-#: ../standalone/rpmdrake_.c:49 ../standalone/rpmdrake_.c:56
+#: ../../standalone/rpmdrake_.c:49 ../../standalone/rpmdrake_.c:56
msgid "Package"
msgstr "Pakad"
-#: ../standalone/rpmdrake_.c:51
-#, fuzzy
+#: ../../standalone/rpmdrake_.c:51
msgid "Text"
-msgstr "mailh"
+msgstr "Skrid"
-#: ../standalone/rpmdrake_.c:53
-#, fuzzy
+#: ../../standalone/rpmdrake_.c:53
msgid "Tree"
-msgstr "Gresian"
+msgstr "Gwezenn"
-#: ../standalone/rpmdrake_.c:54
+#: ../../standalone/rpmdrake_.c:54
msgid "Sort by"
-msgstr ""
+msgstr "Rummań dre"
-#: ../standalone/rpmdrake_.c:55
+#: ../../standalone/rpmdrake_.c:55
msgid "Category"
-msgstr ""
+msgstr "Rummad"
-#: ../standalone/rpmdrake_.c:58
-#, fuzzy
+#: ../../standalone/rpmdrake_.c:58
msgid "See"
-msgstr "Servijer"
+msgstr "Sellet"
-#: ../standalone/rpmdrake_.c:59 ../standalone/rpmdrake_.c:163
-#, fuzzy
+#: ../../standalone/rpmdrake_.c:59 ../../standalone/rpmdrake_.c:163
msgid "Installed packages"
-msgstr "O staliań ar pakad %s"
+msgstr "Pakadoł staliet"
-#: ../standalone/rpmdrake_.c:60
-#, fuzzy
+#: ../../standalone/rpmdrake_.c:60
msgid "Available packages"
-msgstr "O klask ar pakadoł hegerz"
+msgstr "Pakadoł hegerz"
-#: ../standalone/rpmdrake_.c:62
-#, fuzzy
+#: ../../standalone/rpmdrake_.c:62
msgid "Show only leaves"
-msgstr "Diskouez an holl"
+msgstr "Diskouez an delioł hepken"
-#: ../standalone/rpmdrake_.c:67
+#: ../../standalone/rpmdrake_.c:67
msgid "Expand all"
-msgstr ""
+msgstr "Astenn pep tra"
-#: ../standalone/rpmdrake_.c:68
-#, fuzzy
+#: ../../standalone/rpmdrake_.c:68
msgid "Collapse all"
-msgstr "Skarań an holl"
+msgstr "Plegań pep tra"
-#: ../standalone/rpmdrake_.c:70
-#, fuzzy
+#: ../../standalone/rpmdrake_.c:70
msgid "Configuration"
-msgstr "Amprouiń ar c'hefluniadur"
+msgstr "Kefluniadur"
-#: ../standalone/rpmdrake_.c:71
+#: ../../standalone/rpmdrake_.c:71
msgid "Add location of packages"
-msgstr ""
+msgstr "Ouzhpennań lec'hiadur ar pakadoł"
-#: ../standalone/rpmdrake_.c:75
+#: ../../standalone/rpmdrake_.c:75
msgid "Update location"
-msgstr ""
+msgstr "Bremanaat al lec'hiadur"
-#: ../standalone/rpmdrake_.c:79 ../standalone/rpmdrake_.c:328
-#, fuzzy
+#: ../../standalone/rpmdrake_.c:79 ../../standalone/rpmdrake_.c:328
msgid "Remove"
-msgstr "Dilemel an enmont"
+msgstr "Dilemel"
-#: ../standalone/rpmdrake_.c:100
+#: ../../standalone/rpmdrake_.c:100
msgid "Configuration: Add Location"
-msgstr ""
-
-#: ../standalone/rpmdrake_.c:101
-msgid "Expand Tree"
-msgstr ""
-
-#: ../standalone/rpmdrake_.c:102
-msgid "Collapse Tree"
-msgstr ""
+msgstr "Kefluniadur : Ouzhpennań al lec'hiadur"
-#: ../standalone/rpmdrake_.c:103
-#, fuzzy
+#: ../../standalone/rpmdrake_.c:103
msgid "Find Package"
-msgstr "%d pakad"
+msgstr "Kavout ur pakad"
-#: ../standalone/rpmdrake_.c:104
+#: ../../standalone/rpmdrake_.c:104
msgid "Find Package containing file"
-msgstr ""
+msgstr "Kavout ur pakad ennań ur restr"
-#: ../standalone/rpmdrake_.c:105
+#: ../../standalone/rpmdrake_.c:105
msgid "Toggle between Installed and Available"
-msgstr ""
+msgstr "Gwintań etre Staliet hag Hegerz"
-#: ../standalone/rpmdrake_.c:139
+#: ../../standalone/rpmdrake_.c:139
msgid "Files:\n"
-msgstr ""
+msgstr "Restroł :\n"
-#: ../standalone/rpmdrake_.c:161 ../standalone/rpmdrake_.c:209
-#, fuzzy
+#: ../../standalone/rpmdrake_.c:161 ../../standalone/rpmdrake_.c:209
msgid "Uninstall"
-msgstr "Staliań"
+msgstr "Distaliań"
-#: ../standalone/rpmdrake_.c:163
-#, fuzzy
+#: ../../standalone/rpmdrake_.c:163
msgid "Choose package to install"
msgstr "Dibabit pakadoł da staliań"
-#: ../standalone/rpmdrake_.c:190
+#: ../../standalone/rpmdrake_.c:190
msgid "Checking dependencies"
-msgstr ""
+msgstr "O wiriań sujedigezhioł"
-#: ../standalone/rpmdrake_.c:190 ../standalone/rpmdrake_.c:409
+#: ../../standalone/rpmdrake_.c:190 ../../standalone/rpmdrake_.c:409
msgid "Wait"
-msgstr ""
+msgstr "Gortoz"
-#: ../standalone/rpmdrake_.c:209
-#, fuzzy
+#: ../../standalone/rpmdrake_.c:209
msgid "The following packages are going to be uninstalled"
-msgstr "Dibabit pakadoł da staliań"
+msgstr "Ar pakadoł a-heul a zo war-nes bezań distaliet"
-#: ../standalone/rpmdrake_.c:210
-#, fuzzy
+#: ../../standalone/rpmdrake_.c:210
msgid "Uninstalling the RPMs"
-msgstr "O staliań ar pakad %s"
+msgstr "O tistaliań ar RPMoł"
-#: ../standalone/rpmdrake_.c:229 ../standalone/rpmdrake_.c:269
+#: ../../standalone/rpmdrake_.c:229 ../../standalone/rpmdrake_.c:269
msgid "Regexp"
-msgstr ""
+msgstr "Regexp"
-#: ../standalone/rpmdrake_.c:229
+#: ../../standalone/rpmdrake_.c:229
msgid "Which package are looking for"
-msgstr ""
+msgstr "Pe bakad a glask"
-#: ../standalone/rpmdrake_.c:238 ../standalone/rpmdrake_.c:262
-#: ../standalone/rpmdrake_.c:278
+#: ../../standalone/rpmdrake_.c:238 ../../standalone/rpmdrake_.c:262
+#: ../../standalone/rpmdrake_.c:278
#, c-format
msgid "%s not found"
-msgstr ""
+msgstr "%s ket kavet"
-#: ../standalone/rpmdrake_.c:238 ../standalone/rpmdrake_.c:262
-#: ../standalone/rpmdrake_.c:278
+#: ../../standalone/rpmdrake_.c:238 ../../standalone/rpmdrake_.c:262
+#: ../../standalone/rpmdrake_.c:278
msgid "No match"
-msgstr ""
+msgstr "Klotadur ebet"
-#: ../standalone/rpmdrake_.c:238 ../standalone/rpmdrake_.c:262
-#: ../standalone/rpmdrake_.c:278
+#: ../../standalone/rpmdrake_.c:238 ../../standalone/rpmdrake_.c:262
+#: ../../standalone/rpmdrake_.c:278
msgid "No more match"
-msgstr ""
+msgstr "Klotadur ouzphenn ebet"
-#: ../standalone/rpmdrake_.c:246
+#: ../../standalone/rpmdrake_.c:246
msgid ""
"rpmdrake is currently in ``low memory'' mode.\n"
"I'm going to relaunch rpmdrake to allow searching files"
msgstr ""
+"Emań rpmdrake er mod ``memor izel'' evit poent.\n"
+"Adlańsań a rin rpmdrake tuchantik evit aotren da glask restroł"
-#: ../standalone/rpmdrake_.c:253
-msgid "Which file are you looking for"
-msgstr ""
+#: ../../standalone/rpmdrake_.c:253
+msgid "Which file are you looking for?"
+msgstr "Pe restr emaoc'h o klask ?"
-#: ../standalone/rpmdrake_.c:269
-msgid "What are looking for"
-msgstr ""
+#: ../../standalone/rpmdrake_.c:269
+msgid "What are looking for?"
+msgstr "Petra emaoc'h o klask ?"
-#: ../standalone/rpmdrake_.c:289
+#: ../../standalone/rpmdrake_.c:289
msgid "Give a name (eg: `extra', `commercial')"
-msgstr ""
+msgstr "Roit din un anv (da sk. `ouzhpenn', `kenwerzhel')"
-#: ../standalone/rpmdrake_.c:291
-#, fuzzy
+#: ../../standalone/rpmdrake_.c:291
msgid "Directory"
-msgstr "Rann"
+msgstr "Renkell"
-#: ../standalone/rpmdrake_.c:294
+#: ../../standalone/rpmdrake_.c:294
msgid "No cdrom available (nothing in /mnt/cdrom)"
-msgstr ""
+msgstr "Cdrom hegerz ebet (netra e /mnt/cdrom)"
-#: ../standalone/rpmdrake_.c:298
+#: ../../standalone/rpmdrake_.c:298
msgid "URL of the directory containing the RPMs"
-msgstr ""
+msgstr "URL ar renkell enni ar RPMoł"
-#: ../standalone/rpmdrake_.c:299
+#: ../../standalone/rpmdrake_.c:299
msgid ""
"For FTP and HTTP, you need to give the location for hdlist\n"
"It must be relative to the URL above"
msgstr ""
+"Evit FTP hag HTTP eo ret deoc'h reiń lec'hiadur an hdlist\n"
+"Da geńver an URL a-us e rank bezań"
-#: ../standalone/rpmdrake_.c:302
+#: ../../standalone/rpmdrake_.c:302
msgid "Please submit the following information"
-msgstr ""
+msgstr "Leugnit ar stlenn a-heul mar plij"
-#: ../standalone/rpmdrake_.c:304
-#, fuzzy, c-format
+#: ../../standalone/rpmdrake_.c:304
+#, c-format
msgid "%s is already in use"
-msgstr "War implij eo ar skridennad-mań endeo"
+msgstr "War implij eo %s endeo"
-#: ../standalone/rpmdrake_.c:315 ../standalone/rpmdrake_.c:321
-#: ../standalone/rpmdrake_.c:329
+#: ../../standalone/rpmdrake_.c:315 ../../standalone/rpmdrake_.c:321
+#: ../../standalone/rpmdrake_.c:329
msgid "Updating the RPMs base"
-msgstr ""
+msgstr "O vremanaat an diaz RPMoł"
-#: ../standalone/rpmdrake_.c:328
-#, fuzzy, c-format
+#: ../../standalone/rpmdrake_.c:328
+#, c-format
msgid "Going to remove entry %s"
-msgstr "Dilemel an enmont"
+msgstr "War-nes dilemel an enmont %s"
-#: ../standalone/rpmdrake_.c:360
+#: ../../standalone/rpmdrake_.c:360
msgid "Finding leaves"
-msgstr ""
+msgstr "O klask delioł"
-#: ../standalone/rpmdrake_.c:360
+#: ../../standalone/rpmdrake_.c:360
msgid "Finding leaves takes some time"
-msgstr ""
-
-#~ msgid "Polish"
-#~ msgstr "Polonek"
-
-#~ msgid "Enter a floppy (all data will be lost)"
-#~ msgstr ""
-#~ "Lakait ur bladennig el lenner\n"
-#~ "(Kollet e vo holl roadoł ar bladennig-se)"
-
-#~ msgid "Going to install %d MB. You can choose to install more programs"
+msgstr "Klask delioł a bad ur frapadig"
+
+#~ msgid "useless"
+#~ msgstr "diezhomm"
+
+#~ msgid "garbage"
+#~ msgstr "lastez"
+
+#~ msgid "Recommended"
+#~ msgstr "Erbedet"
+
+#~ 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 ""
-#~ "War-nes staliań %d Mo. Staliań muioc'h a c'houlevioł a c'hellit dibab"
+#~ "Dibabit \"Staliań\" ma n'eus ket a stumm kent Linux bet staliaet,\n"
+#~ "pe ma vennit implijout meur a stumm pe a zasparzhadenn.\n"
+#~ "\n"
+#~ "\n"
+#~ "Dibabit \"Bremanaat\" ma vennit hizivaat ur stumm kent Mandrake Linux :\n"
+#~ "5.1 (Venice), 5.2 (Leeloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
+#~ "2000\n"
+#~ "pe 7.0 (Air)."
+
+#~ msgid "Creating and formatting loopback file %s"
+#~ msgstr "O krouiń hag o furmadiń ar restr saveteiń %s"
diff --git a/perl-install/share/po/it.po b/perl-install/share/po/it.po
index df8e9513e..0dcec2d31 100644
--- a/perl-install/share/po/it.po
+++ b/perl-install/share/po/it.po
@@ -1,11 +1,11 @@
# Italian Translation of DrakX
# Copyright (C) 1999 Mandrakesoft
-# "Paolo Lorenzin" <pasusu@tin.it>, 1999.
+# "Paolo Lorenzin" <pasusu@tin.it>, 1999-2000.
#
msgid ""
msgstr ""
"Project-Id-Version: DrakX 0.1\n"
-"POT-Creation-Date: 2000-01-09 21:03+0100\n"
+"POT-Creation-Date: 2000-05-11 22:37+0200\n"
"PO-Revision-Date: 1999-09-12 05:33+0200\n"
"Last-Translator: Paolo Lorenzin <pasusu@tin.it>\n"
"Language-Team: \n"
@@ -13,39 +13,43 @@ msgstr ""
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../Xconfigurator.pm_.c:159
+#: ../../Xconfigurator.pm_.c:116 ../../Xconfigurator.pm_.c:228
+msgid "Generic"
+msgstr "Generico"
+
+#: ../../Xconfigurator.pm_.c:165
msgid "Graphic card"
msgstr "Scheda grafica"
-#: ../Xconfigurator.pm_.c:159
+#: ../../Xconfigurator.pm_.c:165
msgid "Select a graphic card"
msgstr "Scegli una scheda grafica"
-#: ../Xconfigurator.pm_.c:160
+#: ../../Xconfigurator.pm_.c:166
msgid "Choose a X server"
msgstr "Scegli un server X"
-#: ../Xconfigurator.pm_.c:160
+#: ../../Xconfigurator.pm_.c:166
msgid "X server"
msgstr "server X"
-#: ../Xconfigurator.pm_.c:181
+#: ../../Xconfigurator.pm_.c:190
msgid "Select the memory size of your graphic card"
msgstr "Scegli la quantitą di memoria della tua scheda grafica"
-#: ../Xconfigurator.pm_.c:203
+#: ../../Xconfigurator.pm_.c:217
msgid "Choose options for server"
msgstr "Scegli le opzioni per il server"
-#: ../Xconfigurator.pm_.c:221
+#: ../../Xconfigurator.pm_.c:228
msgid "Choose a monitor"
msgstr "Scegli un monitor"
-#: ../Xconfigurator.pm_.c:221
+#: ../../Xconfigurator.pm_.c:228
msgid "Monitor"
msgstr "Monitor"
-#: ../Xconfigurator.pm_.c:224
+#: ../../Xconfigurator.pm_.c:231
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -69,104 +73,114 @@ msgstr ""
"danneggiarlo.\n"
"Se hai dubbi, scegli un settaggio prudente."
-#: ../Xconfigurator.pm_.c:231
+#: ../../Xconfigurator.pm_.c:238
msgid "Horizontal refresh rate"
msgstr "Frequenza di refresh orizzontale"
-#: ../Xconfigurator.pm_.c:231
+#: ../../Xconfigurator.pm_.c:238
msgid "Vertical refresh rate"
msgstr "frequenza di refresh verticale"
-#: ../Xconfigurator.pm_.c:272
+#: ../../Xconfigurator.pm_.c:277
msgid "Monitor not configured"
msgstr "Monitor non configurato"
-#: ../Xconfigurator.pm_.c:275
+#: ../../Xconfigurator.pm_.c:280
msgid "Graphic card not configured yet"
msgstr "Scheda grafica non ancora configurata"
-#: ../Xconfigurator.pm_.c:278
+#: ../../Xconfigurator.pm_.c:283
msgid "Resolutions not chosen yet"
msgstr "Risoluzioni non ancora selezionate"
-#: ../Xconfigurator.pm_.c:289
+#: ../../Xconfigurator.pm_.c:296
msgid "Do you want to test the configuration?"
msgstr "Vuoi provare la configurazione ?"
-#: ../Xconfigurator.pm_.c:293
+#: ../../Xconfigurator.pm_.c:300
msgid "Warning: testing is dangerous on this graphic card"
msgstr "Attenzione: il test su questa scheda video č pericoloso"
-#: ../Xconfigurator.pm_.c:296
-msgid "Test configuration"
+#: ../../Xconfigurator.pm_.c:303
+msgid "Test of the configuration"
msgstr "Prova configurazione"
-#: ../Xconfigurator.pm_.c:334
-msgid "An error occurred:"
-msgstr "Si č verificato un errore:"
-
-#: ../Xconfigurator.pm_.c:336
+#: ../../Xconfigurator.pm_.c:342
msgid ""
"\n"
-"try changing some parameters"
+"try to change some parameters"
msgstr ""
"\n"
"prova a modificare alcuni parametri"
-#: ../Xconfigurator.pm_.c:358
+#: ../../Xconfigurator.pm_.c:342
+msgid "An error has occurred:"
+msgstr "Si č verificato un errore:"
+
+#: ../../Xconfigurator.pm_.c:365
#, c-format
-msgid "(leaving in %d seconds)"
-msgstr "(uscita in %d secondi)"
+msgid "Leaving in %d seconds"
+msgstr "Uscita in %d secondi"
-#: ../Xconfigurator.pm_.c:362 ../my_gtk.pm_.c:425
-msgid "Is this correct?"
-msgstr "E' corretto ?"
+#: ../../Xconfigurator.pm_.c:369
+msgid "Is this the correct setting?"
+msgstr "E' il settaggio corretto ?"
-#: ../Xconfigurator.pm_.c:370
-msgid "An error occurred, try changing some parameters"
+#: ../../Xconfigurator.pm_.c:377
+msgid "An error has occurred, try to change some parameters"
msgstr "Si č verificato un errore, prova a modificare alcuni parametri"
-#: ../Xconfigurator.pm_.c:378 ../Xconfigurator.pm_.c:547
+#: ../../Xconfigurator.pm_.c:385 ../../Xconfigurator.pm_.c:558
msgid "Automatic resolutions"
msgstr "Risoluzioni automatiche"
-#: ../Xconfigurator.pm_.c:379
+#: ../../Xconfigurator.pm_.c:386
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 trovare le risoluzioni disponibili ne proverņ diverse.\n"
-"Il tuo schermo sfarfallerą un po'...\n"
+"Il tuo schermo sfarfallerą un pņ...\n"
"Puoi spegnerlo se vuoi, sentirai un beep quando č tutto finito"
-#: ../Xconfigurator.pm_.c:434 ../printerdrake.pm_.c:208
+#: ../../Xconfigurator.pm_.c:441 ../../printerdrake.pm_.c:167
msgid "Resolution"
msgstr "Risoluzione"
-#: ../Xconfigurator.pm_.c:469
-msgid "Choose resolution and color depth"
+#: ../../Xconfigurator.pm_.c:476
+msgid "Choose the resolution and the color depth"
msgstr "Seleziona risoluzione e profonditą dei colori"
-#: ../Xconfigurator.pm_.c:477
+#: ../../Xconfigurator.pm_.c:478
+#, c-format
+msgid "Graphic card: %s"
+msgstr "Scheda grafica: %s"
+
+#: ../../Xconfigurator.pm_.c:479
+#, c-format
+msgid "XFree86 server: %s"
+msgstr "Server XFree86: %s"
+
+#: ../../Xconfigurator.pm_.c:488
msgid "Show all"
msgstr "Mostra tutto"
-#: ../Xconfigurator.pm_.c:501
+#: ../../Xconfigurator.pm_.c:512
msgid "Resolutions"
msgstr "Risoluzioni"
-#: ../Xconfigurator.pm_.c:548
+#: ../../Xconfigurator.pm_.c:559
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 ""
"Posso cercare di trovare le risoluzioni disponibili (es: 800x600).\n"
-"A volte, tuttavia, puo' causare il blocco della macchina.\n"
+"A volte, tuttavia, puņ causare il blocco della macchina.\n"
"Vuoi provare ?"
-#: ../Xconfigurator.pm_.c:553
+#: ../../Xconfigurator.pm_.c:564
msgid ""
"No valid modes found\n"
"Try with another video card or monitor"
@@ -174,109 +188,109 @@ msgstr ""
"Nessun modo grafico valido trovato\n"
"Prova con un'altra scheda video o monitor"
-#: ../Xconfigurator.pm_.c:772
+#: ../../Xconfigurator.pm_.c:904
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Tipo di tastiera: %s\n"
-#: ../Xconfigurator.pm_.c:773
+#: ../../Xconfigurator.pm_.c:905
#, c-format
msgid "Mouse type: %s\n"
msgstr "Tipo di mouse: %s\n"
-#: ../Xconfigurator.pm_.c:774
+#: ../../Xconfigurator.pm_.c:906
#, c-format
msgid "Mouse device: %s\n"
msgstr "Device del mouse: %s\n"
-#: ../Xconfigurator.pm_.c:775
+#: ../../Xconfigurator.pm_.c:907
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../Xconfigurator.pm_.c:776
+#: ../../Xconfigurator.pm_.c:908
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Frequenza orizzontale del monitor: %s\n"
-#: ../Xconfigurator.pm_.c:777
+#: ../../Xconfigurator.pm_.c:909
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Refresh verticale del monitor: %s\n"
-#: ../Xconfigurator.pm_.c:778
+#: ../../Xconfigurator.pm_.c:910
#, c-format
msgid "Graphic card: %s\n"
msgstr "Scheda grafica: %s\n"
-#: ../Xconfigurator.pm_.c:779
+#: ../../Xconfigurator.pm_.c:911
#, c-format
msgid "Graphic memory: %s kB\n"
msgstr "Memoria scheda grafica: %s KB\n"
-#: ../Xconfigurator.pm_.c:780
+#: ../../Xconfigurator.pm_.c:912
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Server XFree86: %s\n"
-#: ../Xconfigurator.pm_.c:794
+#: ../../Xconfigurator.pm_.c:927
msgid "Preparing X-Window configuration"
msgstr "Sto preparando la configurazione di X-Window"
-#: ../Xconfigurator.pm_.c:808
+#: ../../Xconfigurator.pm_.c:941
msgid "Change Monitor"
msgstr "Cambia Monitor"
-#: ../Xconfigurator.pm_.c:809
+#: ../../Xconfigurator.pm_.c:942
msgid "Change Graphic card"
msgstr "Cambia Scheda Grafica"
-#: ../Xconfigurator.pm_.c:810
+#: ../../Xconfigurator.pm_.c:943
msgid "Change Server options"
msgstr "Cambia opzioni Server"
-#: ../Xconfigurator.pm_.c:811
+#: ../../Xconfigurator.pm_.c:944
msgid "Change Resolution"
msgstr "Cambia Risoluzione"
-#: ../Xconfigurator.pm_.c:812
+#: ../../Xconfigurator.pm_.c:945
msgid "Automatical resolutions search"
msgstr "Ricerca automatica delle risoluzioni"
-#: ../Xconfigurator.pm_.c:816
+#: ../../Xconfigurator.pm_.c:949
msgid "Show information"
msgstr "Mostra informazioni"
-#: ../Xconfigurator.pm_.c:817
+#: ../../Xconfigurator.pm_.c:950
msgid "Test again"
msgstr "Nuovo test"
-#: ../Xconfigurator.pm_.c:818 ../standalone/rpmdrake_.c:46
+#: ../../Xconfigurator.pm_.c:951 ../../standalone/rpmdrake_.c:46
msgid "Quit"
msgstr "Termina"
-#: ../Xconfigurator.pm_.c:822
+#: ../../Xconfigurator.pm_.c:955 ../../standalone/drakboot_.c:36
msgid "What do you want to do?"
msgstr "Cosa vuoi fare ?"
-#: ../Xconfigurator.pm_.c:829
+#: ../../Xconfigurator.pm_.c:962
msgid "Forget the changes?"
msgstr "Tralascio le modifiche?"
-#: ../Xconfigurator.pm_.c:845
+#: ../../Xconfigurator.pm_.c:980
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Per favore rientra come %s per attivare le modifiche"
-#: ../Xconfigurator.pm_.c:861
+#: ../../Xconfigurator.pm_.c:996
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Per favore esci e usa Ctrl_Alt-Backspace"
-#: ../Xconfigurator.pm_.c:864
+#: ../../Xconfigurator.pm_.c:999
msgid "X at startup"
msgstr "X all'avvio"
-#: ../Xconfigurator.pm_.c:865
+#: ../../Xconfigurator.pm_.c:1000
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
@@ -284,184 +298,396 @@ msgstr ""
"Posso settare il tuo computer per eseguire X automaticamente all'avvio.\n"
"Vorresti che X fosse eseguito quando riavvierai?"
-#: ../Xconfigurator_consts.pm_.c:4
+#: ../../Xconfigurator_consts.pm_.c:4
msgid "256 colors (8 bits)"
msgstr "256 colori (8 bits)"
-#: ../Xconfigurator_consts.pm_.c:5
+#: ../../Xconfigurator_consts.pm_.c:5
msgid "32 thousand colors (15 bits)"
msgstr "32 mila colori (15 bits)"
-#: ../Xconfigurator_consts.pm_.c:6
+#: ../../Xconfigurator_consts.pm_.c:6
msgid "65 thousand colors (16 bits)"
msgstr "65 mila colori (16 bits)"
-#: ../Xconfigurator_consts.pm_.c:7
+#: ../../Xconfigurator_consts.pm_.c:7
msgid "16 million colors (24 bits)"
msgstr "16 milioni di colori (24 bits)"
-#: ../Xconfigurator_consts.pm_.c:8
+#: ../../Xconfigurator_consts.pm_.c:8
msgid "4 billion colors (32 bits)"
msgstr "4 miliardi di colori (32 bits)"
-#: ../Xconfigurator_consts.pm_.c:96
+#: ../../Xconfigurator_consts.pm_.c:103
msgid "256 kB"
msgstr "256 kB"
-#: ../Xconfigurator_consts.pm_.c:97
+#: ../../Xconfigurator_consts.pm_.c:104
msgid "512 kB"
msgstr "512 kB"
-#: ../Xconfigurator_consts.pm_.c:98
+#: ../../Xconfigurator_consts.pm_.c:105
msgid "1 MB"
msgstr "1 MB"
-#: ../Xconfigurator_consts.pm_.c:99
+#: ../../Xconfigurator_consts.pm_.c:106
msgid "2 MB"
msgstr "2 MB"
-#: ../Xconfigurator_consts.pm_.c:100
+#: ../../Xconfigurator_consts.pm_.c:107
msgid "4 MB"
msgstr "4 MB"
-#: ../Xconfigurator_consts.pm_.c:101
+#: ../../Xconfigurator_consts.pm_.c:108
msgid "8 MB"
msgstr "8 MB"
-#: ../Xconfigurator_consts.pm_.c:102
+#: ../../Xconfigurator_consts.pm_.c:109
msgid "16 MB or more"
msgstr "16 MB o superiore"
-#: ../Xconfigurator_consts.pm_.c:107 ../Xconfigurator_consts.pm_.c:108
+#: ../../Xconfigurator_consts.pm_.c:114 ../../Xconfigurator_consts.pm_.c:115
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr "VGA standard, 640x480 a 60 Hz"
-#: ../Xconfigurator_consts.pm_.c:109
+#: ../../Xconfigurator_consts.pm_.c:116
msgid "Super VGA, 800x600 at 56 Hz"
msgstr "Super VGA, 800x600 a 56 Hz"
-#: ../Xconfigurator_consts.pm_.c:110
+#: ../../Xconfigurator_consts.pm_.c:117
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
msgstr "Compatibile 8514, 1024x768 a 87 Hz interlacciato (no 800x600)"
-#: ../Xconfigurator_consts.pm_.c:111
+#: ../../Xconfigurator_consts.pm_.c:118
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:112
+#: ../../Xconfigurator_consts.pm_.c:119
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:113
+#: ../../Xconfigurator_consts.pm_.c:120
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:114
+#: ../../Xconfigurator_consts.pm_.c:121
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
msgstr "SVGA alta frequenza, 1024x768 a 70 Hz"
-#: ../Xconfigurator_consts.pm_.c:115
+#: ../../Xconfigurator_consts.pm_.c:122
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
msgstr "Multi-frequenza che raggiunge 1280x1024 a 60 Hz"
-#: ../Xconfigurator_consts.pm_.c:116
+#: ../../Xconfigurator_consts.pm_.c:123
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
msgstr "Multi-frequenza che raggiunge 1280x1024 a 74 Hz"
-#: ../Xconfigurator_consts.pm_.c:117
+#: ../../Xconfigurator_consts.pm_.c:124
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
msgstr "Multi-frequenza che raggiunge 1280x1024 a 76 Hz"
-#: ../Xconfigurator_consts.pm_.c:118
+#: ../../Xconfigurator_consts.pm_.c:125
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "Monitor che raggiunge 1600x1200 a 70 Hz"
-#: ../Xconfigurator_consts.pm_.c:119
+#: ../../Xconfigurator_consts.pm_.c:126
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "Monitor che raggiunge 1600x1200 a 76 Hz"
-#: ../diskdrake.pm_.c:16 ../diskdrake.pm_.c:370
+#: ../../any.pm_.c:17
+msgid "curly"
+msgstr "riccio"
+
+#: ../../any.pm_.c:17
+msgid "default"
+msgstr "predefinito"
+
+#. -PO: names (tie, curly...) have corresponding icons for kdm
+#: ../../any.pm_.c:17
+msgid "tie"
+msgstr "cravatta"
+
+#: ../../any.pm_.c:18
+msgid "brunette"
+msgstr "brunetta"
+
+#: ../../any.pm_.c:18
+msgid "girl"
+msgstr "ragazza"
+
+#: ../../any.pm_.c:18
+msgid "woman-blond"
+msgstr "donna-bionda"
+
+#: ../../any.pm_.c:19
+msgid "automagic"
+msgstr "automagico"
+
+#: ../../any.pm_.c:60
+msgid "First sector of boot partition"
+msgstr "Primo settore della partizione di boot"
+
+#: ../../any.pm_.c:60
+msgid "First sector of drive (MBR)"
+msgstr "Primo settore del drive (MBR)"
+
+#: ../../any.pm_.c:65
+msgid "LILO/grub Installation"
+msgstr "Installazione di LILO/grub"
+
+#: ../../any.pm_.c:66
+msgid "Where do you want to install the bootloader?"
+msgstr "Dove vuoi installare il bootloader?"
+
+#: ../../any.pm_.c:73
+msgid "None"
+msgstr "Nessuno"
+
+#: ../../any.pm_.c:73
+msgid "Which bootloader(s) do you want to use?"
+msgstr "Quale bootloader(s) vuoi usare?"
+
+#: ../../any.pm_.c:84
+msgid "Boot device"
+msgstr "Dispositivo di Boot"
+
+#: ../../any.pm_.c:85
+msgid "LBA (doesn't work on old BIOSes)"
+msgstr "LBA (non funziona con vecchi BIOS)"
+
+#: ../../any.pm_.c:86
+msgid "Compact"
+msgstr "Compatta"
+
+#: ../../any.pm_.c:86
+msgid "compact"
+msgstr "compatta"
+
+#: ../../any.pm_.c:87 ../../install_steps_interactive.pm_.c:809
+msgid "Delay before booting default image"
+msgstr "Ritardo prima di avviare l'immagine di default"
+
+#: ../../any.pm_.c:88
+msgid "Video mode"
+msgstr "Modo Video"
+
+#: ../../any.pm_.c:90 ../../install_steps_interactive.pm_.c:531
+#: ../../install_steps_interactive.pm_.c:654
+#: ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_interactive.pm_.c:811 ../../printerdrake.pm_.c:85
+#: ../../printerdrake.pm_.c:110 ../../standalone/adduserdrake_.c:42
+msgid "Password"
+msgstr "Password"
+
+#: ../../any.pm_.c:91 ../../install_steps_interactive.pm_.c:655
+#: ../../install_steps_interactive.pm_.c:706
+#: ../../install_steps_interactive.pm_.c:812
+#: ../../standalone/adduserdrake_.c:43
+msgid "Password (again)"
+msgstr "Password (ripeti)"
+
+#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+msgid "Restrict command line options"
+msgstr "Inibizione opzioni riga di comando"
+
+#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+msgid "restrict"
+msgstr "inibisci"
+
+#: ../../any.pm_.c:98
+msgid "Bootloader main options"
+msgstr "Opzioni principali del bootloader"
+
+#: ../../any.pm_.c:101 ../../install_steps_interactive.pm_.c:820
+msgid ""
+"Option ``Restrict command line options'' is of no use without a password"
+msgstr ""
+"L'opzione ''Inibisci opzioni della linea di comando'' č inutile\n"
+"senza una password"
+
+#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:719
+#: ../../install_steps_interactive.pm_.c:821
+#: ../../standalone/adduserdrake_.c:56
+msgid "Please try again"
+msgstr "Per favore prova di nuovo"
+
+#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:719
+#: ../../install_steps_interactive.pm_.c:821
+#: ../../standalone/adduserdrake_.c:56
+msgid "The passwords do not match"
+msgstr "Le passwrods non corrispondono"
+
+#: ../../any.pm_.c:112
+msgid ""
+"Here are the different entries.\n"
+"You can add some more or change the existing ones."
+msgstr ""
+"Queste sono le diverse selezioni.\n"
+"Puoi aggiungerne altre o cambiare quelle esistenti."
+
+#: ../../any.pm_.c:114 ../../install_steps_interactive.pm_.c:832
+#: ../../printerdrake.pm_.c:245 ../../standalone/rpmdrake_.c:302
+msgid "Add"
+msgstr "Aggiungi"
+
+#: ../../any.pm_.c:114 ../../diskdrake.pm_.c:42
+#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:832 ../../printerdrake.pm_.c:245
+#: ../../standalone/adduserdrake_.c:36
+msgid "Done"
+msgstr "Fatto"
+
+#: ../../any.pm_.c:123
+msgid "Linux"
+msgstr "Linux"
+
+#: ../../any.pm_.c:123
+msgid "Other OS (windows...)"
+msgstr "Altro OS (windows...)"
+
+#: ../../any.pm_.c:123
+msgid "Which type of entry do you want to add?"
+msgstr "Che tipo di entry vuoi aggiungere"
+
+#: ../../any.pm_.c:142 ../../install_steps_interactive.pm_.c:857
+msgid "Image"
+msgstr "Immagine"
+
+#: ../../any.pm_.c:143 ../../any.pm_.c:151
+#: ../../install_steps_interactive.pm_.c:859
+msgid "Root"
+msgstr "Root"
+
+#: ../../any.pm_.c:144 ../../install_steps_interactive.pm_.c:860
+msgid "Append"
+msgstr "Aggiungi"
+
+#: ../../any.pm_.c:145 ../../install_steps_interactive.pm_.c:861
+msgid "Initrd"
+msgstr "Initrd"
+
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:862
+msgid "Read-write"
+msgstr "Lettura-scrittura"
+
+#: ../../any.pm_.c:152
+msgid "Table"
+msgstr "tabella"
+
+#: ../../any.pm_.c:153
+msgid "Unsafe"
+msgstr "Non sicuro"
+
+#: ../../any.pm_.c:158 ../../install_steps_interactive.pm_.c:869
+msgid "Label"
+msgstr "Etichetta"
+
+#: ../../any.pm_.c:160 ../../install_steps_interactive.pm_.c:871
+msgid "Default"
+msgstr "Predefinito"
+
+#: ../../any.pm_.c:163 ../../install_steps_gtk.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:652
+#: ../../install_steps_interactive.pm_.c:874 ../../interactive.pm_.c:74
+#: ../../interactive.pm_.c:84 ../../interactive.pm_.c:224
+#: ../../interactive_newt.pm_.c:49 ../../interactive_newt.pm_.c:98
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:200
+#: ../../my_gtk.pm_.c:459 ../../my_gtk.pm_.c:634 ../../printerdrake.pm_.c:272
+msgid "Ok"
+msgstr "Ok"
+
+#: ../../any.pm_.c:163 ../../install_steps_interactive.pm_.c:874
+msgid "Remove entry"
+msgstr "Rimuovi voce"
+
+#: ../../any.pm_.c:166 ../../install_steps_interactive.pm_.c:877
+msgid "Empty label not allowed"
+msgstr "Etichetta vuota non ammessa"
+
+#: ../../any.pm_.c:167
+msgid "This label is already used"
+msgstr "Questa etichetta č gią usata"
+
+#: ../../diskdrake.pm_.c:18 ../../diskdrake.pm_.c:413
msgid "Create"
msgstr "Crea"
-#: ../diskdrake.pm_.c:17
+#: ../../diskdrake.pm_.c:19
msgid "Unmount"
msgstr "Esegui unmount"
-#: ../diskdrake.pm_.c:18 ../diskdrake.pm_.c:372
+#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:415
msgid "Delete"
msgstr "Cancella"
-#: ../diskdrake.pm_.c:18
+#: ../../diskdrake.pm_.c:20
msgid "Format"
msgstr "Formatta"
-#: ../diskdrake.pm_.c:18 ../diskdrake.pm_.c:527
+#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:590
msgid "Resize"
msgstr "Ridimensiona"
-#: ../diskdrake.pm_.c:18 ../diskdrake.pm_.c:370 ../diskdrake.pm_.c:414
+#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:413
+#: ../../diskdrake.pm_.c:466
msgid "Type"
msgstr "Tipo"
-#: ../diskdrake.pm_.c:19 ../diskdrake.pm_.c:430
+#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:485
msgid "Mount point"
msgstr "Posizione di mount"
-#: ../diskdrake.pm_.c:33
+#: ../../diskdrake.pm_.c:35
msgid "Write /etc/fstab"
msgstr "Scrivi /etc/fstab"
-#: ../diskdrake.pm_.c:34
+#: ../../diskdrake.pm_.c:36
msgid "Toggle to expert mode"
-msgstr "Normale > Esperto"
+msgstr "Passa a modo Esperto"
-#: ../diskdrake.pm_.c:35
+#: ../../diskdrake.pm_.c:37
msgid "Toggle to normal mode"
-msgstr "Esperto > Normale"
+msgstr "Passa a modo Normale"
-#: ../diskdrake.pm_.c:36
+#: ../../diskdrake.pm_.c:38
msgid "Restore from file"
msgstr "Ripristina da file"
-#: ../diskdrake.pm_.c:37
+#: ../../diskdrake.pm_.c:39
msgid "Save in file"
msgstr "Salva su file"
-#: ../diskdrake.pm_.c:38
+#: ../../diskdrake.pm_.c:40
msgid "Restore from floppy"
msgstr "Ripristina da floppy"
-#: ../diskdrake.pm_.c:39
+#: ../../diskdrake.pm_.c:41
msgid "Save on floppy"
msgstr "Salva su floppy"
-#: ../diskdrake.pm_.c:40 ../install_steps_interactive.pm_.c:618
-#: ../install_steps_interactive.pm_.c:748 ../standalone/adduserdrake_.c:34
-msgid "Done"
-msgstr "Fatto"
-
-#: ../diskdrake.pm_.c:43
+#: ../../diskdrake.pm_.c:45
msgid "Clear all"
msgstr "Azzera tutto"
-#: ../diskdrake.pm_.c:44
+#: ../../diskdrake.pm_.c:46
msgid "Format all"
msgstr "Formatta tutto"
-#: ../diskdrake.pm_.c:45
+#: ../../diskdrake.pm_.c:47
msgid "Auto allocate"
msgstr "Alloca automaticamente"
-#: ../diskdrake.pm_.c:48
+#: ../../diskdrake.pm_.c:50
msgid "All primary partitions are used"
msgstr "Tutte le partizioni primarie sono usate"
-#: ../diskdrake.pm_.c:48
+#: ../../diskdrake.pm_.c:50
msgid "I can't add any more partition"
msgstr "Non posso aggiungere altre partizioni"
-#: ../diskdrake.pm_.c:48
+#: ../../diskdrake.pm_.c:50
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -469,54 +695,58 @@ msgstr ""
"Per avere pił partizioni, per favore eliminarne una per essere in grado di "
"crearne una estesa"
-#: ../diskdrake.pm_.c:51
+#: ../../diskdrake.pm_.c:53
msgid "Rescue partition table"
msgstr "Recupera tabella delle partizioni"
-#: ../diskdrake.pm_.c:52
+#: ../../diskdrake.pm_.c:54
msgid "Undo"
msgstr "Un passo indietro"
-#: ../diskdrake.pm_.c:53
+#: ../../diskdrake.pm_.c:55
msgid "Write partition table"
msgstr "Scrivi la tabella delle partizioni"
-#: ../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:56
msgid "Reload"
msgstr "Ricarica"
-#: ../diskdrake.pm_.c:98
+#: ../../diskdrake.pm_.c:96
+msgid "loopback"
+msgstr "loopback"
+
+#: ../../diskdrake.pm_.c:109
msgid "Empty"
msgstr "Vuoto"
-#: ../diskdrake.pm_.c:98
+#: ../../diskdrake.pm_.c:109
msgid "Ext2"
msgstr "Ext2"
-#: ../diskdrake.pm_.c:98
+#: ../../diskdrake.pm_.c:109
msgid "FAT"
msgstr "FAT"
-#: ../diskdrake.pm_.c:98
+#: ../../diskdrake.pm_.c:109
msgid "Other"
msgstr "Altro"
-#: ../diskdrake.pm_.c:98
+#: ../../diskdrake.pm_.c:109
msgid "Swap"
msgstr "Swap"
-#: ../diskdrake.pm_.c:104
+#: ../../diskdrake.pm_.c:115
msgid "Filesystem types:"
msgstr "Tipo di filesystem:"
-#: ../diskdrake.pm_.c:113
+#: ../../diskdrake.pm_.c:124
msgid "Details"
msgstr "Dettagli"
-#: ../diskdrake.pm_.c:127
+#: ../../diskdrake.pm_.c:138
msgid ""
-"You have one big fat partition\n"
-"(generally use by MicroSoft Dos/Windows).\n"
+"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 ""
@@ -525,85 +755,97 @@ msgstr ""
"Prima suggerisco di ridimensionare quella partizione\n"
"(clicca su di essa, poi clicca su \"Ridimensiona\")"
-#: ../diskdrake.pm_.c:132
+#: ../../diskdrake.pm_.c:143
msgid "Please make a backup of your data first"
msgstr "Per favore prima fai un backup dei tuoi dati"
-#: ../diskdrake.pm_.c:132 ../diskdrake.pm_.c:146 ../diskdrake.pm_.c:458
-#: ../diskdrake.pm_.c:487
+#: ../../diskdrake.pm_.c:143 ../../diskdrake.pm_.c:160
+#: ../../diskdrake.pm_.c:169 ../../diskdrake.pm_.c:517
+#: ../../diskdrake.pm_.c:546
msgid "Read carefully!"
msgstr "Leggere attentamente!"
-#: ../diskdrake.pm_.c:146
-#, c-format
-msgid "After %s partition %s,"
-msgstr "Dopo %s partizionare %s,"
-
-#: ../diskdrake.pm_.c:146
-msgid "all data on this partition will be lost"
-msgstr "tutti i dati su questa partizione saranno persi"
-
-#: ../diskdrake.pm_.c:165 ../install_any.pm_.c:193 ../install_steps.pm_.c:71
-#: ../install_steps_interactive.pm_.c:37 ../standalone/diskdrake_.c:60
-#: ../standalone/rpmdrake_.c:294 ../standalone/rpmdrake_.c:304
+#: ../../diskdrake.pm_.c:146
+msgid ""
+"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
+"enough)\n"
+"at the beginning of the disk"
+msgstr ""
+"Se pensi di usare aboot, fai attenzione a lasciare spazio libero (2048 "
+"settori sono abbastanza)\n"
+"all'inizio del disco"
+
+#: ../../diskdrake.pm_.c:160
+msgid "Be careful: this operation is dangerous."
+msgstr "Fai attenzione: questa operazione č pericolosa."
+
+#: ../../diskdrake.pm_.c:197 ../../install_any.pm_.c:330
+#: ../../install_steps.pm_.c:74 ../../install_steps_interactive.pm_.c:40
+#: ../../standalone/diskdrake_.c:60 ../../standalone/rpmdrake_.c:294
+#: ../../standalone/rpmdrake_.c:304
msgid "Error"
msgstr "Errore"
-#: ../diskdrake.pm_.c:189 ../diskdrake.pm_.c:610
+#: ../../diskdrake.pm_.c:221 ../../diskdrake.pm_.c:680
msgid "Mount point: "
msgstr "Posizione di Mount:"
-#: ../diskdrake.pm_.c:190 ../diskdrake.pm_.c:228
+#: ../../diskdrake.pm_.c:222 ../../diskdrake.pm_.c:263
msgid "Device: "
msgstr "Unitą: "
-#: ../diskdrake.pm_.c:191
+#: ../../diskdrake.pm_.c:223
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Lettera di drive DOS: %s (solo una supposizione)\n"
-#: ../diskdrake.pm_.c:192 ../diskdrake.pm_.c:231
+#: ../../diskdrake.pm_.c:224 ../../diskdrake.pm_.c:266
msgid "Type: "
msgstr "Tipo: "
-#: ../diskdrake.pm_.c:193
+#: ../../diskdrake.pm_.c:225
#, c-format
msgid "Start: sector %s\n"
msgstr "Inizia: settore %s\n"
-#: ../diskdrake.pm_.c:194
+#: ../../diskdrake.pm_.c:226
#, c-format
-msgid "Size: %s MB"
-msgstr "Dimensione: %s MB"
+msgid "Size: %d MB"
+msgstr "Dimensione: %d MB"
-#: ../diskdrake.pm_.c:196
+#: ../../diskdrake.pm_.c:228
#, c-format
msgid ", %s sectors"
msgstr ", %s settori"
-#: ../diskdrake.pm_.c:198
+#: ../../diskdrake.pm_.c:230
#, c-format
msgid "Cylinder %d to cylinder %d\n"
msgstr "Da cilindro %d a cilindro %d\n"
-#: ../diskdrake.pm_.c:199
+#: ../../diskdrake.pm_.c:231
msgid "Formatted\n"
msgstr "Formattato\n"
-#: ../diskdrake.pm_.c:200
+#: ../../diskdrake.pm_.c:232
msgid "Not formatted\n"
msgstr "Non formattato\n"
-#: ../diskdrake.pm_.c:201
+#: ../../diskdrake.pm_.c:233
msgid "Mounted\n"
msgstr "In linea\n"
-#: ../diskdrake.pm_.c:202
+#: ../../diskdrake.pm_.c:234
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../diskdrake.pm_.c:203
+#: ../../diskdrake.pm_.c:235
+#, c-format
+msgid "Loopback file(s): %s\n"
+msgstr "File(s) di loopback: %s\n"
+
+#: ../../diskdrake.pm_.c:236
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -611,65 +853,79 @@ msgstr ""
"Partizione di boot per default\n"
" (per boot MS-DOS , non per lilo)\n"
-#: ../diskdrake.pm_.c:205
+#: ../../diskdrake.pm_.c:238
#, c-format
msgid "Level %s\n"
msgstr "Livello %s\n"
-#: ../diskdrake.pm_.c:206
+#: ../../diskdrake.pm_.c:239
#, c-format
msgid "Chunk size %s\n"
msgstr "Dimensione del blocco %s\n"
-#: ../diskdrake.pm_.c:207
+#: ../../diskdrake.pm_.c:240
#, c-format
msgid "RAID-disks %s\n"
msgstr "Dischi-RAID %s\n"
-#: ../diskdrake.pm_.c:224
+#: ../../diskdrake.pm_.c:242
+#, c-format
+msgid "Loopback file name: %s"
+msgstr "Nome file di loopback: %s"
+
+#: ../../diskdrake.pm_.c:259
msgid "Please click on a partition"
msgstr "Per favore clicca su una partizione"
-#: ../diskdrake.pm_.c:229
+#: ../../diskdrake.pm_.c:264
#, c-format
msgid "Size: %d MB\n"
msgstr "Dimensione: %d MB\n"
-#: ../diskdrake.pm_.c:230
+#: ../../diskdrake.pm_.c:265
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "geometria: %s cilindri, %s testine, %s settori\n"
+msgstr "Geometria: %s cilindri, %s testine, %s settori\n"
+
+#: ../../diskdrake.pm_.c:267
+#, c-format
+msgid "Partition table type: %s\n"
+msgstr "Tipo tabella delle partizioni: %s\n"
-#: ../diskdrake.pm_.c:232
+#: ../../diskdrake.pm_.c:268
#, c-format
msgid "on bus %d id %d\n"
msgstr "su bus %d id %d\n"
-#: ../diskdrake.pm_.c:245
+#: ../../diskdrake.pm_.c:281
msgid "Mount"
msgstr "Esegui mount"
-#: ../diskdrake.pm_.c:246
+#: ../../diskdrake.pm_.c:282
msgid "Active"
msgstr "Attivo"
-#: ../diskdrake.pm_.c:247
+#: ../../diskdrake.pm_.c:283
msgid "Add to RAID"
msgstr "Aggiungi a RAID"
-#: ../diskdrake.pm_.c:248
+#: ../../diskdrake.pm_.c:284
msgid "Remove from RAID"
msgstr "Rimuovi da RAID"
-#: ../diskdrake.pm_.c:249
+#: ../../diskdrake.pm_.c:285
msgid "Modify RAID"
msgstr "Modifica RAID"
-#: ../diskdrake.pm_.c:256
+#: ../../diskdrake.pm_.c:286
+msgid "Use for loopback"
+msgstr "Usa per loopback"
+
+#: ../../diskdrake.pm_.c:293
msgid "Choose action"
msgstr "Scegli un'azione"
-#: ../diskdrake.pm_.c:349
+#: ../../diskdrake.pm_.c:386
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -681,7 +937,7 @@ msgstr ""
"Nel caso tu usassi LILO non funzionerebbe, o se non usassi LILO non ti "
"servirebbe /boot"
-#: ../diskdrake.pm_.c:353
+#: ../../diskdrake.pm_.c:390
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -694,148 +950,209 @@ msgstr ""
"accertati\n"
"di creare una partizione /boot"
-#: ../diskdrake.pm_.c:370 ../diskdrake.pm_.c:372
+#: ../../diskdrake.pm_.c:396
+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 if you want to use lilo or grub"
+msgstr ""
+"Hai selezionato una partizione software RAID come root (/).\n"
+"Nessun bootloader puņ gestirla senza una partizione /boot.\n"
+"Perciņ ricorda di aggiungere una partizione /boot se vuoi usare lilo o grub"
+
+#: ../../diskdrake.pm_.c:413 ../../diskdrake.pm_.c:415
#, c-format
msgid "Use ``%s'' instead"
msgstr "Usa ''%s'' invece"
-#: ../diskdrake.pm_.c:375
+#: ../../diskdrake.pm_.c:418
msgid "Use ``Unmount'' first"
msgstr "Prima usa ''Unmount''"
-#: ../diskdrake.pm_.c:376 ../diskdrake.pm_.c:409
-msgid "changing type of"
-msgstr "cambio del tipo di"
+#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:461
+#, c-format
+msgid ""
+"After changing type of partition %s, all data on this partition will be lost"
+msgstr ""
+"Dopo aver cambiato tipo di partizione %s, tutti i dati su questa partizione "
+"saranno persi"
-#: ../diskdrake.pm_.c:388
+#: ../../diskdrake.pm_.c:431
msgid "Continue anyway?"
msgstr "Continuo comunque?"
-#: ../diskdrake.pm_.c:393
+#: ../../diskdrake.pm_.c:436
msgid "Quit without saving"
msgstr "Esci senza salvare"
-#: ../diskdrake.pm_.c:393
+#: ../../diskdrake.pm_.c:436
msgid "Quit without writing the partition table?"
msgstr "Esci senza scrivere la tabella delle partizioni?"
-#: ../diskdrake.pm_.c:412
+#: ../../diskdrake.pm_.c:464
msgid "Change partition type"
msgstr "Cambiare il tipo di partizione"
-#: ../diskdrake.pm_.c:413
+#: ../../diskdrake.pm_.c:465
msgid "Which partition type do you want?"
msgstr "Che tipo di partizione vuoi?"
-#: ../diskdrake.pm_.c:429
+#: ../../diskdrake.pm_.c:483
+#, c-format
+msgid "Where do you want to mount loopback file %s?"
+msgstr "Dove vuoi fare il mount del file loopback %s?"
+
+#: ../../diskdrake.pm_.c:484
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Dove vuoi fare il mount del dispositivo %s?"
-#: ../diskdrake.pm_.c:451
-msgid "formatting"
-msgstr "formattazione"
+#: ../../diskdrake.pm_.c:489
+msgid ""
+"Can't unset mount point as this partition is used for loop back.\n"
+"Remove the loopback first"
+msgstr ""
+"Non puoi deselezionare punti di mount perchč questa partizione č usata\n"
+"per il loopback. Prima rimuovi il loopback"
+
+#: ../../diskdrake.pm_.c:508
+#, 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 "
+"partizionesaranno persi"
-#: ../diskdrake.pm_.c:453
+#: ../../diskdrake.pm_.c:510
msgid "Formatting"
msgstr "Formattazione"
-#: ../diskdrake.pm_.c:453 ../install_steps_interactive.pm_.c:221
+#: ../../diskdrake.pm_.c:511
+#, c-format
+msgid "Formatting loopback file %s"
+msgstr "Formattazione file di loopback %s"
+
+#: ../../diskdrake.pm_.c:512 ../../install_steps_interactive.pm_.c:253
#, c-format
msgid "Formatting partition %s"
msgstr "Formattazione partizione %s"
-#: ../diskdrake.pm_.c:458
+#: ../../diskdrake.pm_.c:517
msgid "After formatting all partitions,"
msgstr "Dopo la formattazione di tutte le partizioni,"
-#: ../diskdrake.pm_.c:458
+#: ../../diskdrake.pm_.c:517
msgid "all data on these partitions will be lost"
msgstr "tutti i dati su queste partizioni saranna persi"
-#: ../diskdrake.pm_.c:468
+#: ../../diskdrake.pm_.c:527
msgid "Move"
msgstr "Sposta"
-#: ../diskdrake.pm_.c:469
-msgid "Which disk do you want to move to?"
+#: ../../diskdrake.pm_.c:528
+msgid "Which disk do you want to move it to?"
msgstr "Su quale disco vuoi spostarti?"
-#: ../diskdrake.pm_.c:473
+#: ../../diskdrake.pm_.c:532
msgid "Sector"
msgstr "Settore"
-#: ../diskdrake.pm_.c:474
-msgid "Which sector do you want to move to?"
+#: ../../diskdrake.pm_.c:533
+msgid "Which sector do you want to move it to?"
msgstr "Su che settore vuoi spostarti?"
-#: ../diskdrake.pm_.c:477
+#: ../../diskdrake.pm_.c:536
msgid "Moving"
msgstr "Spostamento"
-#: ../diskdrake.pm_.c:477
+#: ../../diskdrake.pm_.c:536
msgid "Moving partition..."
msgstr "Spostamento partizione..."
-#: ../diskdrake.pm_.c:487
+#: ../../diskdrake.pm_.c:546
#, 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 essre scritta su disco!"
+"La tabella delle partizioni del disco %s sta per essere scritta su disco!"
-#: ../diskdrake.pm_.c:489
+#: ../../diskdrake.pm_.c:548
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Sarą necessario riavviare il sistema prima che le modifiche prendano atto!"
-#: ../diskdrake.pm_.c:510 ../install_steps_gtk.pm_.c:255
-msgid "Computing fat filesystem bounds"
+#: ../../diskdrake.pm_.c:569 ../../install_steps_gtk.pm_.c:208
+msgid "Computing FAT filesystem bounds"
msgstr "Calcolo dei vincoli del fat filesystem "
-#: ../diskdrake.pm_.c:510 ../diskdrake.pm_.c:555
-#: ../install_steps_gtk.pm_.c:255
+#: ../../diskdrake.pm_.c:569 ../../diskdrake.pm_.c:618
+#: ../../install_steps_gtk.pm_.c:208
msgid "Resizing"
msgstr "Ridimensionamento"
-#: ../diskdrake.pm_.c:524
-msgid "resizing"
-msgstr "ridimensionamento"
+#: ../../diskdrake.pm_.c:585
+msgid "All data on this partition should be backed-up"
+msgstr "Dovresti eseguire il backup di tutti i dati su questa partizione"
-#: ../diskdrake.pm_.c:534
+#: ../../diskdrake.pm_.c:587
+#, 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.pm_.c:597
msgid "Choose the new size"
msgstr "Scegli la nuova dimensione"
-#: ../diskdrake.pm_.c:534 ../install_steps_graphical.pm_.c:287
-#: ../install_steps_graphical.pm_.c:334 ../install_steps_gtk.pm_.c:317
-#: ../install_steps_gtk.pm_.c:361
+#: ../../diskdrake.pm_.c:597 ../../install_steps_graphical.pm_.c:287
+#: ../../install_steps_graphical.pm_.c:334
msgid "MB"
msgstr "MB"
-#: ../diskdrake.pm_.c:587
+#: ../../diskdrake.pm_.c:652
msgid "Create a new partition"
msgstr "Crea una nuova partizione"
-#: ../diskdrake.pm_.c:603
+#: ../../diskdrake.pm_.c:672
msgid "Start sector: "
msgstr "Settore iniziale: "
-#: ../diskdrake.pm_.c:606
+#: ../../diskdrake.pm_.c:676 ../../diskdrake.pm_.c:750
msgid "Size in MB: "
msgstr "Dimensione in MB: "
-#: ../diskdrake.pm_.c:609
+#: ../../diskdrake.pm_.c:679 ../../diskdrake.pm_.c:753
msgid "Filesystem type: "
msgstr "Tipo di filesystem: "
-#: ../diskdrake.pm_.c:611
+#: ../../diskdrake.pm_.c:682
msgid "Preference: "
msgstr "Preferenza: "
-#: ../diskdrake.pm_.c:655 ../diskdrake.pm_.c:671
+#: ../../diskdrake.pm_.c:729 ../../install_steps.pm_.c:132
+msgid "This partition can't be used for loopback"
+msgstr "Questa partizione non puņ essere usata per il loopback"
+
+#: ../../diskdrake.pm_.c:739
+msgid "Loopback"
+msgstr "Loopback"
+
+#: ../../diskdrake.pm_.c:749
+msgid "Loopback file name: "
+msgstr "Nome file loopback: "
+
+#: ../../diskdrake.pm_.c:775
+msgid "File already used by another loopback, choose another one"
+msgstr "File gią usato da un altro loopback, selezionane uno diverso"
+
+#: ../../diskdrake.pm_.c:776
+msgid "File already exists. Use it?"
+msgstr "Il file esiste gią. Lo uso?"
+
+#: ../../diskdrake.pm_.c:798 ../../diskdrake.pm_.c:814
msgid "Select file"
msgstr "Scegli file"
-#: ../diskdrake.pm_.c:664
+#: ../../diskdrake.pm_.c:807
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -843,11 +1160,11 @@ msgstr ""
"La copia di sicurezza della tabella delle partizioni non ha la stessa\n"
"dimensione. Continuo comunque?"
-#: ../diskdrake.pm_.c:672
+#: ../../diskdrake.pm_.c:815
msgid "Warning"
msgstr "Attenzione"
-#: ../diskdrake.pm_.c:673
+#: ../../diskdrake.pm_.c:816
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -855,130 +1172,171 @@ msgstr ""
"Inserisci un floppy nel drive\n"
"Tutti i dati su questo floppy saranno persi"
-#: ../diskdrake.pm_.c:687
+#: ../../diskdrake.pm_.c:830
msgid "Trying to rescue partition table"
msgstr "Provo a recuperare la tabella delle partizioni"
-#: ../diskdrake.pm_.c:698
+#: ../../diskdrake.pm_.c:841
msgid "device"
msgstr "dispositivo"
-#: ../diskdrake.pm_.c:699
+#: ../../diskdrake.pm_.c:842
msgid "level"
msgstr "livello"
-#: ../diskdrake.pm_.c:700
+#: ../../diskdrake.pm_.c:843
msgid "chunk size"
msgstr "dimensione del blocco"
-#: ../diskdrake.pm_.c:712
+#: ../../diskdrake.pm_.c:855
msgid "Choose an existing RAID to add to"
msgstr "Scegli un RAID esistente a cui effettuare l'aggiunta"
-#: ../diskdrake.pm_.c:713
+#: ../../diskdrake.pm_.c:856
msgid "new"
msgstr "nuovo"
-#: ../fs.pm_.c:67 ../fs.pm_.c:73
+#: ../../fs.pm_.c:85 ../../fs.pm_.c:91 ../../fs.pm_.c:97 ../../fs.pm_.c:103
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formattazione di %s fallita"
-#: ../fs.pm_.c:93
+#: ../../fs.pm_.c:129
#, c-format
-msgid "don't know how to format %s in type %s"
+msgid "I don't know how to format %s in type %s"
msgstr "impossibile formattare %s in tipo %s"
-#: ../fs.pm_.c:106
+#: ../../fs.pm_.c:186
msgid "nfs mount failed"
msgstr "mount di nfs fallito"
-#: ../fs.pm_.c:123
+#: ../../fs.pm_.c:209
msgid "mount failed: "
msgstr "mount fallito: "
-#: ../fs.pm_.c:134
+#: ../../fs.pm_.c:220
#, c-format
msgid "error unmounting %s: %s"
msgstr "errore in fase di unmount di %s: %s"
-#: ../fsedit.pm_.c:219
+#: ../../fsedit.pm_.c:250
msgid "Mount points must begin with a leading /"
msgstr "Le posizioni di mount devono iniziare con /"
-#: ../fsedit.pm_.c:222
+#: ../../fsedit.pm_.c:253
#, c-format
-msgid "There is already a partition with mount point %s"
-msgstr "C'č gią una partizione con la posizione di mount %s"
+msgid "There is already a partition with mount point %s\n"
+msgstr "C'č gią una partizione con la posizione di mount %s\n"
+
+#: ../../fsedit.pm_.c:261
+#, c-format
+msgid "Circular mounts %s\n"
+msgstr "Mounts circolari %s\n"
+
+#: ../../fsedit.pm_.c:273
+msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+msgstr ""
-#: ../fsedit.pm_.c:306
+#: ../../fsedit.pm_.c:355
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Errore aprendo %s in scrittura: %s"
-#: ../fsedit.pm_.c:388
+#: ../../fsedit.pm_.c:437
msgid ""
"An error has 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 trovato alcuna unitą valida su cui "
-"creare nuovifilesystems. Per favore controlla il tuo hardware per la causa "
+"Si č verificato un errore - non č stato trovata alcuna unitą valida su cui "
+"creare nuovi filesystems. Per favore controlla il tuo hardware per la causa "
"di questo problema"
-#: ../fsedit.pm_.c:403
+#: ../../fsedit.pm_.c:452
msgid "You don't have any partitions!"
msgstr "Non hai alcuna partizione!"
-#: ../help.pm_.c:7
+#: ../../help.pm_.c:7
msgid "Choose preferred language for install and system usage."
msgstr ""
"Seleziona il linguaggio preferito per l'installazione e l'uso del sistema."
-#: ../help.pm_.c:10
+#: ../../help.pm_.c:10
msgid "Choose the layout corresponding to your keyboard from the list above"
msgstr "Scegli l'impostazione della tua tastiera dalla lista qui sopra"
-#: ../help.pm_.c:13
+#: ../../help.pm_.c:13
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"
+"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).\n"
"\n"
-"Choose \"Upgrade\" if you wish to update a previous version of Mandrake\n"
-"Linux: 5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1\n"
-"(Helios) or Gold 2000."
+"\n"
+"Select:\n"
+"\n"
+" - Automated (recommended): If you have never installed Linux before, "
+"choose this. NOTE:\n"
+" networking will not be configured during installation, use "
+"\"LinuxConf\"\n"
+" to configure it after the install completes.\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 ""
"Scegli \"Installa\" se non hai una precedente versione di Linux\n"
"installata, o se vuoi utilizzare ditribuzioni o versioni multiple.\n"
"\n"
-"\n"
"Scegli \"Aggiorna\" se vuoi aggiornare una precedente versione di\n"
-"Mandrake Linux: 5.1 (Venice), 5.2 (Leeloo), 5.3 (Festen), 6.0 (Venus),\n"
-"6.1 (Helios) o Gold 2000."
-
-#: ../help.pm_.c:22
-msgid ""
-"Select:\n"
+"Mandrake Linux: 5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus),\n"
+"6.1 (Helios), Gold 2000 o 7.0 (Air).\n"
"\n"
-" - Recommended: If you have never installed Linux before.\n"
"\n"
+"Seleziona:\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"
+" - Automatizzata (raccomandata): se non hai mai installato Linux prima\n"
+"scegli questa. NOTA:\n"
+"la rete non verrą configurata durante l'installazione, usa \"LinuxConf\"\n"
+"per configurarla dopo il completamento dell'installazione.\n"
"\n"
+" - Personalizzata: sei hai abbastanza familiaritą con GNU/Linux, puoi \n"
+"scegliere l'utilizzo principale per la tua macchina. Vedi sotto per "
+"dettagli.\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 ""
-"Seleziona:\n"
+" - Esperto: Suppone che tu conosca bene GNU/Linux e vuoi effettuare una \n"
+"installazione altamente personalizzata. Come con la classe di installazione\n"
+"\"Personalizzata\" sarai in grado di scegliere l'utilizzo del tuo sistema "
+"installato.\n"
+"Ma, per favore, NON SCEGLIERE QUESTA CLASSE SE NON SAI BENE QUELLO CHE STAI "
+"FACENDO!\n"
+
+#: ../../help.pm_.c:37
+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"
-" - Raccomandata: se non hai mai installato Linux prima\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 ""
+"Seleziona:\n"
"\n"
"\n"
" - Personalizzata: sei hai familiaritą con Linux, sarai in grado di \n"
@@ -992,9 +1350,66 @@ msgstr ""
" - Esperto: Se conosci bene GNU/Linux e vuoi effettuare una installazione\n"
"altamente personalizzata, questa Classe d'Installazione č per te. Sarai in\n"
"grado di scegliere l'utilizzo del tuo sistema installato come per \n"
-"\"Personalizzata\"."
+"\"Personalizzata\".\n"
-#: ../help.pm_.c:40
+#: ../../help.pm_.c:49
+msgid ""
+"The different choices for your machine's usage (provided, hence, that you "
+"have\n"
+"chosen either \"Custom\" or \"Expert\" as an installation class) are the\n"
+"following:\n"
+"\n"
+" - Normal: choose this if you intend to use your machine primarily for\n"
+" everyday use (office work, graphics manipulation and so on). Do not\n"
+" expect any compiler, development utility et al. installed.\n"
+"\n"
+" - Development: as its name says. Choose this if you intend to use your\n"
+" machine primarily for software development. You will then have a "
+"complete\n"
+" collection of software installed in order to compile, debug and format\n"
+" source code, or create software packages.\n"
+"\n"
+" - Server: choose this if the machine which you're installing "
+"Linux-Mandrake\n"
+" on is intended to be used as a server. Either a file server (NFS or "
+"SMB),\n"
+" a print server (Unix' lp (Line Printer) protocol or Windows style SMB\n"
+" printing), an authentication server (NIS), a database server and so on. "
+"As\n"
+" such, do not expect any gimmicks (KDE, GNOME...) to be installed.\n"
+msgstr ""
+"Le differenti selezioni per l'uso della tua macchina (ammesso, perciņ, che "
+"tu\n"
+"abbia scelto \"Personalizzata\" o \"Esperto\" come classe d'installazione)\n"
+"sono le seguenti:\n"
+"\n"
+" - Normale: scegli questa se intendi usare la tua macchina principalmente "
+"per\n"
+" uso di ogni giorno (lavoro d'ufficio, manipolazione di grafica e cosģ "
+"via),\n"
+" Non aspettarti di avere installati compilatori, utilitą di sviluppo "
+"etc.\n"
+"\n"
+" - Sviluppo: come dice il nome. Scegli questa se intendi usare la tua "
+"macchina\n"
+" primariamente per sviluppo di software. Avrai quindi una selezione "
+"completa\n"
+" di software installato per compilare, controllare e formattare codice "
+"sorgente,\n"
+" o creare pacchetti software.\n"
+"\n"
+" - Server: scegli questa se la macchina su cui stai installando "
+"Linux-Mandrake\n"
+" č da usare come server. Che sia un file server (NFS o SMB), un server di "
+"\n"
+" stampa (protocollo lp (line printer) di Unix o stampa SMB in stile "
+"Windows),\n"
+" un server di autentificazione (NIS), un server di database e cosģ via. "
+"Come\n"
+" tale, non aspettarti che nessun fronzolo (KDE, GNOME...) venga "
+"installato.\n"
+
+#: ../../help.pm_.c:70
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"
@@ -1038,7 +1453,7 @@ msgstr ""
"dalla guida all'installazione. Queste sono le opzioni che dovrai\n"
"passare al driver."
-#: ../help.pm_.c:64
+#: ../../help.pm_.c:94
msgid ""
"At this point, you may choose what partition(s) to use to install\n"
"your Linux-Mandrake system if they have been already defined (from a\n"
@@ -1063,8 +1478,19 @@ msgid ""
"\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 need not be. Consult the documentation\n"
-"and take your time before proceeding."
+"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 ""
"A questo punto, puoi scegliere quale(i) partizione(i) usare per installare\n"
"il tuo sistema Linux-Mandrake se sono gią state definite (da una\n"
@@ -1091,9 +1517,21 @@ msgstr ""
"partizionamento puņ essere intimidatorio e stressante per l'utente "
"inesperto.\n"
"DiskDrake semplifica il processo in modo che non lo sia. Consulta la\n"
-"documentazione e prenditi tutto il tempo che vuoi prima di procedere."
+"documentazione e prenditi tutto il tempo che vuoi prima di procedere.\n"
+"\n"
+"Puoi raggiungere ogni opzione usando la tastiera: navigare tra le "
+"partizioni\n"
+"usando Tab e le frecce Su/Gił. Quando una partizione č selezionata, puoi "
+"usare:\n"
+"\n"
+"- Ctrl-c per creare una nuova partizione (quando č scelta una partizione "
+"vuota)\n"
+"\n"
+"- Ctrl-d per cancellare una partizione\n"
+"\n"
+"- Ctrl-m per assegnare il mount point\n"
-#: ../help.pm_.c:90
+#: ../../help.pm_.c:131
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"
@@ -1108,39 +1546,44 @@ msgstr ""
"riformattare partizioni gią esistenti, in particolare se contengono files o\n"
"dati che desideri mantenere. Normalmente si tengono: /home e /usr/local."
-#: ../help.pm_.c:98
+#: ../../help.pm_.c:139
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."
+"You may now select the group of packages you wish to\n"
+"install or upgrade.\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\n"
+"the 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\n"
+"through more than 1000 packages..."
msgstr ""
-"Ora puoi scegliere i pacchetti che vuoi installare.\n"
-"\n"
+"Ora puoi scegliere il gruppo di pacchetti che vuoi installare o aggiornare.\n"
"\n"
-"Prima puoi selezionare gruppi di pacchetti da installare o aggiornare.\n"
-"Dopo di ciņ puoi scegliere altri pacchetti in accordo con la dimensione\n"
-"totale che desideri selezionare\n"
+"DrakX controllerą quindi se hai abbastanza spazio per installarli tutti. In "
"\n"
-"\n"
-"Se sei in modo Esperto, puoi selezionare i pacchetti individualmente.\n"
-"Per favore nota che alcuni pacchetti richiedono l'installazione di \n"
-"altri. Sono le dipendenze dei pacchetti. I pacchetti che selzioni,\n"
-"e i pacchetti che essi richiedono saranno automaticamente selezionati\n"
-"per l'installazione. E' impossibile installare un pacchetto senza tutte\n"
-"le sue dipendenze."
+"caso negativo, ti avvertirą. Se vuoi continuare lo stesso, procederą alla\n"
+"installazione dei gruppi selezionati ma abbandonerą alcuni pacchetti di "
+"minore\n"
+"interesse. Alla fine della lista puoi scegliere l'opzione\n"
+"\"Selezione individuale pacchetti\"; in questo caso dovrai scorrere "
+"attraverso\n"
+"pił di 1000 pacchetti..."
+
+#: ../../help.pm_.c:150
+msgid ""
+"If you have all the CDs in the list above, 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 ""
+"Se hai tutti i CDs nella lista riportata sopra, clicca Ok.\n"
+"Se non hai nessuno di quei CDs, clicca Cancel.\n"
+"Se mancano solo alcuni CDs, deselezionali, e clicca Ok."
-#: ../help.pm_.c:114
+#: ../../help.pm_.c:155
msgid ""
"The packages selected are now being installed. This operation\n"
"should take a few minutes unless you have chosen to upgrade an\n"
@@ -1152,7 +1595,7 @@ msgstr ""
"di un sistema preesistente, nel qual caso potrebbe occorrere ancora pił\n"
"tempo prima che l'aggiornamento cominci."
-#: ../help.pm_.c:120
+#: ../../help.pm_.c:161
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"
@@ -1181,16 +1624,16 @@ msgstr ""
"Nel caso di un mouse seriale, dovrai indicare a DrakX a quale\n"
"porta seriale č connesso."
-#: ../help.pm_.c:135
+#: ../../help.pm_.c:176
msgid ""
-"Please select the correct port. For example, the COM1 port in MS Windows\n"
-"is named ttyS0 in Linux."
+"Please select the correct port. For example, the COM1 port under MS Windows\n"
+"is named ttyS0 under Linux."
msgstr ""
"per favore scegli la porta corretta. Per esempio, la porta COM1 in MS "
"Windows\n"
-"č denominata ttyS0 in Linux."
+"č denominata ttyS0 under Linux."
-#: ../help.pm_.c:139
+#: ../../help.pm_.c:180
msgid ""
"This section is dedicated to configuring a local area\n"
"network (LAN) or a modem.\n"
@@ -1242,7 +1685,7 @@ msgstr ""
"rete o abbreviato netmask, e nome host). Se stai settando una rete\n"
"privata a casa per esempio, dovresti scegliere indirizzi."
-#: ../help.pm_.c:169
+#: ../../help.pm_.c:210
msgid ""
"Enter:\n"
"\n"
@@ -1272,7 +1715,7 @@ msgstr ""
"IP\".\n"
"Sei non sei sicuro, chiedi al tuo amministratore di rete.\n"
-#: ../help.pm_.c:184
+#: ../../help.pm_.c:225
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."
@@ -1280,15 +1723,15 @@ msgstr ""
"Puoi ora inserire le opzioni di connessione. Se non sei sicuro di cosa\n"
"inserire, le informazioni corrette possono essere reperite presso il tuo ISP."
-#: ../help.pm_.c:188
+#: ../../help.pm_.c:229
msgid ""
"If you will use proxies, please configure them now. If you don't know if\n"
-"you will use proxies, ask your network administrator or your ISP."
+"you should use proxies, ask your network administrator or your ISP."
msgstr ""
"Se userai dei proxies, per favore configurali ora. Se non sai se userai\n"
"dei proxies, chiedi al tuo amministratore di rete o all'ISP."
-#: ../help.pm_.c:192
+#: ../../help.pm_.c:233
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 "
@@ -1305,31 +1748,53 @@ msgstr ""
"Nota che devi scegliere mirror e pacchetti di crittografia in accordo con\n"
"la tua legislazione."
-#: ../help.pm_.c:200
+#: ../../help.pm_.c:241
msgid ""
"You can now select your timezone according to where you live.\n"
"\n"
"\n"
-"Linux manages time in GMT or \"Greenwich Meridian Time\" and translates it\n"
+"Linux manages time in GMT or \"Greenwich Mean Time\" and translates it\n"
"in local time according to the time zone you have selected."
msgstr ""
"puoi ora selezionare la tua fascia oraria in relazione al luogo dove vivi.\n"
"\n"
"\n"
-"Linux amministra il tempo in GMT o \"Greenwich Meridian Time\" e lo traduce\n"
+"Linux amministra il tempo in GMT o \"Greenwich Mean Time\" e lo traduce\n"
"in tempo locale in accordo alla fascia oraria da te scelta."
-#: ../help.pm_.c:207
-msgid "Help"
-msgstr "Aiuto"
+#: ../../help.pm_.c:248
+msgid ""
+"You may now choose which services you want to see started at boot time.\n"
+"When your mouse comes over an item, a small balloon help will popup which\n"
+"describes the role of the service.\n"
+"\n"
+"Be especially careful in this step if you intend to use your machine as a\n"
+"server: you will probably want not to start any services which you don't\n"
+"want."
+msgstr ""
+"Puoi ora scegliere quali servizi vuoi vedere avviati al momento del boot.\n"
+"Quando il tuo mouse passa sopra un oggetto, apparirą un piccolo aiuto a "
+"pallone\n"
+"che descrive il ruolo del servizio.\n"
+"\n"
+"Stai particolarmente attento in questa fase se intendi usare la tua "
+"macchina\n"
+"come server: non vorrai probabilmente avviare alcun servizio che sai di non\n"
+"volere."
-#: ../help.pm_.c:210
+#: ../../help.pm_.c:257
msgid ""
"Linux can deal with many types of printer. Each of these\n"
-"types require a different setup.\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 directly connected to your computer, select\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"
@@ -1348,7 +1813,12 @@ msgid ""
"for a NetWare printer, except that you need no workgroup information."
msgstr ""
"Linux puņ gestire molti tipi di stampante. Ognuno di questi tipi\n"
-"richiede un settaggio diverso.\n"
+"richiede un settaggio diverso. Nota comunque che lo spooler di stampa\n"
+"usa 'lp' come nome stampante di default; perciņ devi avere una stampante\n"
+"con questo nome; ma puoi dare diversi nomi, separati da caratteri '|', ad\n"
+"una stampante. Cosģ, se preferisci avere nomi pił significativi devi solo\n"
+"metterli per primi, es: \"La mia stampante|lp\".\n"
+"La stampante che ha \"lp\" nel suo nome(i) sarą la stampante predefinita.\n"
"\n"
"\n"
"Se la tua stampante č collegata direttamente al tuo computer, scegli\n"
@@ -1370,7 +1840,7 @@ msgstr ""
"stesso vale per una stampante NetWare, eccetto che non ti serviranno\n"
"informazioni sul gruppo di lavoro."
-#: ../help.pm_.c:233
+#: ../../help.pm_.c:286
msgid ""
"You can now enter the root password for your Linux-Mandrake\n"
"system. The password must be entered twice to verify that both\n"
@@ -1383,7 +1853,7 @@ msgid ""
"be extremely dangerous to the integrity of the system and its data,\n"
"and other systems connected to it. The password should be a\n"
"mixture of alphanumeric characters and a least 8 characters long. It\n"
-"should *never* be written down. Do not make the password too long or\n"
+"should NEVER be written down. Do not make the password too long or\n"
"complicated, though: you must be able to remember without too much\n"
"effort."
msgstr ""
@@ -1403,15 +1873,15 @@ msgstr ""
"o complicata, ad ogni modo: devi essere in grado di ricordarla senza troppo\n"
"sforzo."
-#: ../help.pm_.c:249
+#: ../../help.pm_.c:302
msgid ""
"To enable a more secure system, you should select \"Use shadow file\" and\n"
"\"Use MD5 passwords\"."
msgstr ""
-"Per avere un sustema pił sicuro, dovresti scegliere \"Usa shadow file\" e\n"
+"Per avere un sistema pił sicuro, dovresti scegliere \"Usa shadow file\" e\n"
"\"Usa passwords MD5\"."
-#: ../help.pm_.c:253
+#: ../../help.pm_.c:306
msgid ""
"If your network uses NIS, select \"Use NIS\". If you don't know, ask your\n"
"network administrator."
@@ -1419,7 +1889,7 @@ msgstr ""
"Se la tua rete usa NIS, scegli \"Usa NIS\". Se non sai, chiedi al tuo\n"
"amministratore di rete."
-#: ../help.pm_.c:257
+#: ../../help.pm_.c:310
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"
@@ -1462,7 +1932,7 @@ msgstr ""
"creato qui, e fare il login come root solo per scopi di amministrazione\n"
"e manutenzione."
-#: ../help.pm_.c:276
+#: ../../help.pm_.c:329
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"
@@ -1476,7 +1946,7 @@ msgstr ""
"pił\n"
"in grado di accedere a Linux al boot!"
-#: ../help.pm_.c:282
+#: ../../help.pm_.c:335
msgid ""
"You need to indicate where you wish\n"
"to place the information required to boot to Linux.\n"
@@ -1491,57 +1961,51 @@ msgstr ""
"A meno che tu non sappia esattamente cosa stai facendo, scegli \n"
"Primo settore del drive\"."
-#: ../help.pm_.c:290
+#: ../../help.pm_.c:343
msgid ""
"Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-"(the master drive on the primary channel)."
+" (primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
msgstr ""
"A meno che tu non sia sicuro del contrario, la scelta usuale č \"/dev/hda\"\n"
-"(il disco principale sul canale primario)."
+"(il disco IDE principale sul canale primario) o \"/dev/sda\" (primo disco "
+"SCSI)."
-#: ../help.pm_.c:294
+#: ../../help.pm_.c:347
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"
+"LILO (the LInux LOader) and Grub are bootloaders: they are able to boot\n"
+"either 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"
-"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)."
+"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 (il Linux LOader) puņ caricare Linux e altri sistemi operativi.\n"
-"Normalmente sono riconosciuti correttamente durante l'installazione.\n"
-"Se non vedessi riconosciuti i tuoi, puoi aggiungerne uno o pił adesso.\n"
-"\n"
-"\n"
-"Se non vuoi che chiunque possa accedere ad uno di essi, puoi rimuoverlo ora\n"
-"(sarą necessario un disco di boot per caricarlo)."
-
-#: ../help.pm_.c:303
+"LILO (il LInux LOader) e Grub sono bootloaders: sono capaci di caricare\n"
+"indifferentemente Linux o altri sistemi operativi presenti sul tuo "
+"computer.\n"
+"Normalmente, questi sistemi operativi sono correttamente rilevati e\n"
+"installati. Se non avviene, puoi aggiungere una voce a mano in questo "
+"schermo.\n"
+"Stai attento a scegliere i parametri corretti.\n"
+"\n"
+"\n"
+"Potresti anche non voler dare l'accesso a questi sistemi operativi a "
+"chiunque,\n"
+"nel qual caso puoi cancellare la voci corrispondenti. ma in questo caso, "
+"avrai\n"
+"bisogno di un boot disk per caricarli!"
+
+#: ../../help.pm_.c:359
msgid ""
-"LILO main options are:\n"
+"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"
-" - 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"
@@ -1554,43 +2018,26 @@ msgid ""
" * normal: select normal 80x25 text mode.\n"
" * <number>: use the corresponding text mode."
msgstr ""
-"le opzioni principali di LILO sono:\n"
-" - Boot Device: Setta il nome del dispositivo (es. una partizione\n"
+"Le opzioni principali di LILO e grub sono:\n"
+" - Boot device: Assegna il nome del dispositivo (es. una partizione\n"
"di hard disk) che contiene il settore di boot. Se non sei sicuro, scegli\n"
"\"/dev/hda\".\n"
"\n"
"\n"
-" - Linear: genera indirizzi di settore lineari anzichč indirizzi di tipo\n"
-"settore/testina/cilindro. Indirizzi lineari sono tradotti all'avvio e non\n"
-"dipendono dalla geometria del disco. Nota i dischi di boot possono non\n"
-"essere portabili se viene usato \"linear\", poichč il servizio BIOS per\n"
-"determinare la geometria di disco non funziona affidabilmente con i floppy\n"
-"disks. Quando si usa \"linear\" con grandi dischi, /sbin/lilo puņ generare\n"
-"riferimenti ad aree disco inaccessibili, perchč indirizzi di settore 3D non\n"
-"sono riconosciuti prima del boot.\n"
-"\n"
-"\n"
-" - Compact: Prova a unire richieste di lettura per settori adiacenti in\n"
-"una unica richiesta di lettura. Ciņ riduce drasticamente i tempi di\n"
-"caricamento e mantiene pił piccola la mappa. L'uso di \"compact\" č "
-"cosigliato\n"
-"in particolare quando si effettua il boot da floppy disk.\n"
-"\n"
+" - Ritardo prima di caricare l'immagine di default: Specifica il tempo in\n"
+"decimi di secondo che il boot loader deve attendere prima di caricare la \n"
+"prima immagine.\n"
+"E' utile su sistemi che caricano immediatamente dall'hard disk dopo avere\n"
+"abilitato la tastiera. Il boot loader non aspetta se \"ritardo\" č omesso\n"
+"o se č fissato a zero.\n"
"\n"
-" - Delay before booting default image: Specifica il numero di \n"
-"secondi che il boot loader deve attendere prima di caricare la prima\n"
-"immagine.\n"
-"Ciņ č utile in sistemi che avviano immediatamente da hard disk dopo avere\n"
-"abilitato la tastiera. Il Boot Loader non attende se \"delay\" č omesso\n"
-"o č impostato a zero.\n"
"\n"
-"\n"
-" - Modo Video: Specifica il modo testo VGA che dovrebbe essere scelto al\n"
-"momento dell'avvio. I valori seguenti sono disponibili: \n"
-" * normal: seleziona modo testo normale 80x25.\n"
-" * <numero>: usa il modo testo corrispondente."
+" - Modo Video: Specifica il modo testo VGA che dovrebbe essere selezionato\n"
+"al boot. Sono disponibili i valori seguenti: \n"
+" * normale: seleziona il normale modo testo 80x25.\n"
+" * <numero>: usa il corrispondente modo testo."
-#: ../help.pm_.c:338
+#: ../../help.pm_.c:378
msgid ""
"Now it's time to configure the X Window System, which is the\n"
"core of the Linux GUI (Graphical User Interface). For this purpose,\n"
@@ -1615,7 +2062,7 @@ msgstr ""
"settaggio di va bene. Se non va bene puoi tornare indietro e\n"
"cambiare tutte le volte che č necessario."
-#: ../help.pm_.c:351
+#: ../../help.pm_.c:391
msgid ""
"If something is wrong in X configuration, use these options to correctly\n"
"configure the X Window System."
@@ -1623,7 +2070,7 @@ msgstr ""
"Se qualcosa č sbagliato nella configurazione di X, usa queste opzioni per\n"
"configurare correttamente il Sistema X Window."
-#: ../help.pm_.c:355
+#: ../../help.pm_.c:395
msgid ""
"If you prefer to use a graphical login, select \"Yes\". Otherwise, select\n"
"\"No\"."
@@ -1631,63 +2078,88 @@ msgstr ""
"Se preferisci usare un login grafico, scegli \"Sģ\". Altrimenti, scegli\n"
"\"No\"."
-#: ../help.pm_.c:359
+#: ../../help.pm_.c:399
msgid ""
-"You can now select some miscellaneous options for you 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)."
+"You can now select some miscellaneous options for your system.\n"
+"\n"
+" - Use hard drive optimizations: this option can improve hard disk "
+"performance\n"
+" but is only for advanced users: some buggy chipsets can ruin your data, "
+"so\n"
+" beware. Note that the kernel has a builtin blacklist of drives and\n"
+" chipsets, but if you want to avoid bad surprises, leave this option "
+"unset.\n"
+"\n"
+" - Choose security level: you can choose a security level for your\n"
+" system. Please refer to the manual for complete information. Basically: "
+"if\n"
+" you don't know, select \"Medium\" ; if you really want to have a secure\n"
+" machine, choose \"Paranoid\" but beware: IN THIS LEVEL, ROOT LOGIN AT\n"
+" CONSOLE IS NOT ALLOWED! If you want to be root, you have to login as a "
+"user\n"
+" and then use \"su\". More generally, do not expect to use your machine\n"
+" for anything but as a server. You have been warned.\n"
+"\n"
+" - Precise RAM size if needed: unfortunately, in today's PC world, there is "
+"no\n"
+" standard method to ask the BIOS about the amount of RAM present in your\n"
+" computer. As a consequence, Linux may fail to detect your amount of RAM\n"
+" correctly. If this is the case, you can specify the correct amount of "
+"RAM\n"
+" here. Note that a difference of 2 or 4 MB is normal.\n"
+"\n"
+" - Removable media automounting: if you would prefer not to manually\n"
+" mount removable media (CD-ROM, Floppy, Zip) by typing \"mount\" and\n"
+" \"umount\", select this option. \n"
+"\n"
+" - Enable NumLock at startup: if you want NumLock enabled after booting,\n"
+" select this option (Note: NumLock may or may not work under X)."
msgstr ""
"Puoi ora selezionare alcune opzioni varie per il tuo sistema.\n"
"\n"
-" - Usa ottimizzazione hard drive: Questa opzione puņ migliorare l'accesso\n"
-"all'hard disk ma č solo per utenti avanzati, puņ rovinare il tuo hard \n"
-"drive se usata scorrettamente. Usala solo se sai come farlo.\n"
+" - Usa ottimizzazione hard drive: Questa opzione puņ migliorare la "
+"performance\n"
+"dell'hard disk, ma č solo per utenti avanzati: alcuni chipsets "
+"malfunzionanti \n"
+"possono rovinare i tuoi dati, perciņ attento. Nota che il kernel ha al suo "
+"interno\n"
+"una lista nera di dischi e chipset, ma se vuoi evitare brutte sorprese, "
+"lascia questa\n"
+"opzione non selezionata.\n"
"\n"
"\n"
" - Scegli livello di Sicurezza: Puoi scegliere un livello di sicurezza\n"
"per il tuo sistema.\n"
-" Per favore fai riferimento al manuale per ulteriori informazioni.\n"
-"\n"
-"\n"
-" - Precisa dimensione RAM se necessario: In alcuni casi, Linux non riesce\n"
-"a determinare l'esatta RAM installata su alcuni sistemi. Se č il tuo caso\n"
-"specifica la quantitą corretta. Nota: una differenza di 2 o 4 Mb č normale.\n"
-"\n"
+" Per favore fai riferimento al manuale per informazioni complete.\n"
+"Praticamente: se non sai scegli \"Medio\" ; se veramente vuoi avere una "
+"macchina\n"
+"sicura, scegli \"Paranoico\" ma attento: A QUESTO LIVELLO, IL LOGIN COME "
+"ROOT\n"
+"IN CONSOLE NON č' CONSENTITO! Se vuoi essere root, devi accedere come utente "
+"e\n"
+"poi usare \"su\". Pił in generale, non aspettarti di usare la tua macchina "
+"se\n"
+"non come server. Sei stato avvertito.\n"
+"\n"
+" - Precisa dimensione RAM se necessario: sfortunatamente, nel mondo "
+"attuale\n"
+"dei PC, non c'č nessun metodo standard per chiedere al BIOS la quantitą di\n"
+"memoria nel tua computer. Come conseguenza, Linux puņ fallire nel trovare la "
+"\n"
+"quantitą di RAM correttamente. In questo caso, puoi specificare qui la "
+"giusta \n"
+"dimensione della RAM. Nota che una differenza di 2 o 4 MB č normale.\n"
"\n"
" - Automounting di media rimovibili: Se preferisci non eseguire "
"manualmente\n"
"il mount di dischi rimovibili (CD-ROM, Floppy, Zip) scrivendo \"mount\" e\n"
"\"umount\", scegli questa opzione. \n"
"\n"
-"\n"
" - Abilitą Num Lock all'avvio: Se vuoi abilitare il Number Lock dopo\n"
-"il boot, scegli questa opzione (Nota: Num Lock non funzionerą comunque\n"
+"il boot, scegli questa opzione (Nota: Num Lock potrebbe non funzionare\n"
"sotto X)."
-#: ../help.pm_.c:387
+#: ../../help.pm_.c:428
msgid ""
"Your system is going to reboot.\n"
"\n"
@@ -1702,108 +2174,97 @@ msgstr ""
"Se vuoi avviare un altro sistema operativo, per favore leggi le istruzioni\n"
"aggiuntive."
-#: ../install2.pm_.c:43
+#: ../../install2.pm_.c:43
msgid "Choose your language"
msgstr "Scegli il tuo linguaggio"
-#: ../install2.pm_.c:44
+# there is no room to put "Scegli classe d'installazione"
+#: ../../install2.pm_.c:44
msgid "Select installation class"
-msgstr "Scegli classe d'installazione"
-
-#: ../install2.pm_.c:45
-msgid "Setup SCSI"
-msgstr "Configura SCSI"
+msgstr "Classe d'installazione"
-#: ../install2.pm_.c:46
-msgid "Choose install or upgrade"
-msgstr "Scegli installa o aggiorna"
+#: ../../install2.pm_.c:45
+msgid "Hard drive detection"
+msgstr "Ricerca del disco fisso"
-#: ../install2.pm_.c:47
+#: ../../install2.pm_.c:46
msgid "Configure mouse"
msgstr "Configura mouse"
-#: ../install2.pm_.c:48
+#: ../../install2.pm_.c:47
msgid "Choose your keyboard"
msgstr "Scegli la tua tastiera"
-#: ../install2.pm_.c:49
+#: ../../install2.pm_.c:48 ../../install_steps_interactive.pm_.c:318
msgid "Miscellaneous"
msgstr "Varie"
-#: ../install2.pm_.c:50
+#: ../../install2.pm_.c:49
msgid "Setup filesystems"
msgstr "Configura filesystem"
-#: ../install2.pm_.c:51
+#: ../../install2.pm_.c:50
msgid "Format partitions"
msgstr "Formatta partizioni"
-#: ../install2.pm_.c:52
+#: ../../install2.pm_.c:51
msgid "Choose packages to install"
msgstr "Pacchetti da installare"
-#: ../install2.pm_.c:53
+#: ../../install2.pm_.c:52
msgid "Install system"
msgstr "Installa sistema"
-#: ../install2.pm_.c:54
+#: ../../install2.pm_.c:53
msgid "Configure networking"
msgstr "Configura rete"
-#: ../install2.pm_.c:55
+#: ../../install2.pm_.c:54
msgid "Cryptographic"
msgstr "Criptografico"
-#: ../install2.pm_.c:56
+#: ../../install2.pm_.c:55
msgid "Configure timezone"
msgstr "Configura fuso orario"
-#: ../install2.pm_.c:58
+#: ../../install2.pm_.c:56
+msgid "Configure services"
+msgstr "Configura servizi"
+
+#: ../../install2.pm_.c:57
msgid "Configure printer"
msgstr "Configura stampante"
-#: ../install2.pm_.c:59 ../install_steps_interactive.pm_.c:576
-#: ../install_steps_interactive.pm_.c:577
+#: ../../install2.pm_.c:58 ../../install_steps_interactive.pm_.c:652
+#: ../../install_steps_interactive.pm_.c:653
msgid "Set root password"
msgstr "Scegli password per root"
-#: ../install2.pm_.c:60
+#: ../../install2.pm_.c:59
msgid "Add a user"
msgstr "Aggiungi un utente"
-#: ../install2.pm_.c:61
+#: ../../install2.pm_.c:61
msgid "Create a bootdisk"
msgstr "Crea disco di boot"
-#: ../install2.pm_.c:62
+#: ../../install2.pm_.c:63
msgid "Install bootloader"
msgstr "Installa bootloader"
-#: ../install2.pm_.c:63
+#: ../../install2.pm_.c:64
msgid "Configure X"
msgstr "Configura X"
-#: ../install2.pm_.c:64
+#: ../../install2.pm_.c:65
+msgid "Auto install floppy"
+msgstr "Floppy di auto installazione"
+
+#: ../../install2.pm_.c:66
msgid "Exit install"
msgstr "Termina installazione"
-#: ../install2.pm_.c:83
-msgid "beginner"
-msgstr "principiante"
-
-#: ../install2.pm_.c:83
-msgid "developer"
-msgstr "sviluppatore"
-
-#: ../install2.pm_.c:83
-msgid "expert"
-msgstr "esperto"
-
-#: ../install2.pm_.c:83
-msgid "server"
-msgstr "server"
-
-#: ../install2.pm_.c:311
+#: ../../install2.pm_.c:308
msgid ""
"You must have a root partition.\n"
"For this, create a partition (or click on an existing one).\n"
@@ -1813,13 +2274,7 @@ msgstr ""
"Per questo, crea una partizione (o clicca su una gią esistente).\n"
"Quindi scegli \"Mount point\" e assegna '/'"
-#: ../install2.pm_.c:327
-msgid "Not enough swap to fulfill installation, please add some"
-msgstr ""
-"Swap insufficiente per completare l'installazione. Per favore aumentarne la "
-"dimensione"
-
-#: ../install_any.pm_.c:194 ../standalone/diskdrake_.c:61
+#: ../../install_any.pm_.c:331 ../../standalone/diskdrake_.c:61
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
@@ -1827,7 +2282,7 @@ msgstr ""
"Non posso leggere la tua tabella delle partizioni, č troppo\n"
"corrotta per me :( . proverņ a pulire le partizioni rovinate."
-#: ../install_any.pm_.c:210
+#: ../../install_any.pm_.c:348
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -1835,38 +2290,32 @@ msgstr ""
"Diskdrake ha fallito la lettura della tabella delle partizioni.\n"
"Continua a tuo rischio e pericolo!"
-#: ../install_any.pm_.c:220
+#: ../../install_any.pm_.c:370
msgid "Searching root partition."
msgstr "Ricerca della partizione root."
-#: ../install_any.pm_.c:249
+#: ../../install_any.pm_.c:399
msgid "Information"
msgstr "Informazioni"
-#: ../install_any.pm_.c:250
+#: ../../install_any.pm_.c:400
#, c-format
msgid "%s: This is not a root partition, please select another one."
msgstr "%s: Questa non č una partizione root, per favore scegline un'altra."
-#: ../install_any.pm_.c:252
+#: ../../install_any.pm_.c:402
msgid "No root partition found"
msgstr "Nessuna partizione root trovata"
-#: ../install_any.pm_.c:289
+#: ../../install_any.pm_.c:440
msgid "Can't use broadcast with no NIS domain"
msgstr "Non posso usare il broadcast senza un dominio NIS"
-#: ../install_any.pm_.c:473
+#: ../../install_any.pm_.c:602
msgid "Error reading file $f"
msgstr "Errore leggendo il file $f"
-# c-format
-#: ../install_any.pm_.c:479
-#, c-format
-msgid "Bad kickstart file %s (failed %s)"
-msgstr "Ripristino da file %s (fallito %s)"
-
-#: ../install_steps.pm_.c:72
+#: ../../install_steps.pm_.c:75
msgid ""
"An error occurred, but I don't know how to handle it nicely.\n"
"Continue at your own risk."
@@ -1874,30 +2323,39 @@ msgstr ""
"C'č stato un errore, ma non so come gestirlo correttamente,\n"
"Continua a tuo rischio e pericolo."
-#: ../install_steps.pm_.c:136
+#: ../../install_steps.pm_.c:174
#, c-format
msgid "Duplicate mount point %s"
msgstr "Mount point doppio: %s"
-#: ../install_steps.pm_.c:295
-#, fuzzy, c-format
+#: ../../install_steps.pm_.c:318
+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 ""
+
+#: ../../install_steps.pm_.c:385
+#, c-format
msgid "Welcome to %s"
-msgstr "Benvenuto ai Crackers"
+msgstr "Benvenuto a %s"
-#: ../install_steps.pm_.c:562
+#: ../../install_steps.pm_.c:737
msgid "No floppy drive available"
msgstr "Nessun drive floppy disponibile"
-#: ../install_steps_auto_install.pm_.c:18 ../install_steps_stdio.pm_.c:26
+#: ../../install_steps_auto_install.pm_.c:18 ../../install_steps_gtk.pm_.c:125
+#: ../../install_steps_stdio.pm_.c:26
#, c-format
msgid "Entering step `%s'\n"
msgstr "Inizio fase '%s'\n"
-#: ../install_steps_graphical.pm_.c:259 ../install_steps_gtk.pm_.c:294
+#: ../../install_steps_graphical.pm_.c:259 ../../install_steps_gtk.pm_.c:249
msgid "You must have a swap partition"
msgstr "Devi avere una partizione di swap"
-#: ../install_steps_graphical.pm_.c:261 ../install_steps_gtk.pm_.c:296
+#: ../../install_steps_graphical.pm_.c:261 ../../install_steps_gtk.pm_.c:251
msgid ""
"You don't have a swap partition\n"
"\n"
@@ -1907,79 +2365,93 @@ msgstr ""
"\n"
"Continuo comunque?"
-#: ../install_steps_graphical.pm_.c:287 ../install_steps_gtk.pm_.c:317
+#: ../../install_steps_graphical.pm_.c:287
msgid "Choose the size you want to install"
msgstr "Scegli la dimensione dell'installazione"
-#: ../install_steps_graphical.pm_.c:334 ../install_steps_gtk.pm_.c:361
+#: ../../install_steps_graphical.pm_.c:334
msgid "Total size: "
msgstr "Domensione totale: "
-#: ../install_steps_graphical.pm_.c:346 ../install_steps_gtk.pm_.c:373
-#: ../standalone/rpmdrake_.c:136
+#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:447
+#: ../../standalone/rpmdrake_.c:136
#, c-format
msgid "Version: %s\n"
msgstr "Versione: %s\n"
-#: ../install_steps_graphical.pm_.c:347 ../install_steps_gtk.pm_.c:374
-#: ../standalone/rpmdrake_.c:137
+#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:448
+#: ../../standalone/rpmdrake_.c:137
#, c-format
msgid "Size: %d KB\n"
msgstr "Dimensione: %d KB\n"
-#: ../install_steps_graphical.pm_.c:462 ../install_steps_gtk.pm_.c:489
+#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:360
msgid "Choose the packages you want to install"
msgstr "Scegli i pacchetti da installare"
-#: ../install_steps_graphical.pm_.c:465 ../install_steps_gtk.pm_.c:492
+#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:363
msgid "Info"
msgstr "Info"
-#: ../install_steps_graphical.pm_.c:473 ../install_steps_gtk.pm_.c:500
-#: ../install_steps_interactive.pm_.c:81 ../standalone/rpmdrake_.c:161
+#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:368
+#: ../../install_steps_interactive.pm_.c:129 ../../standalone/rpmdrake_.c:161
msgid "Install"
msgstr "Installa"
-#: ../install_steps_graphical.pm_.c:492 ../install_steps_gtk.pm_.c:519
-#: ../install_steps_interactive.pm_.c:317
+#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:533
+#: ../../install_steps_interactive.pm_.c:382
msgid "Installing"
msgstr "Installazione"
-#: ../install_steps_graphical.pm_.c:499 ../install_steps_gtk.pm_.c:526
+#: ../../install_steps_graphical.pm_.c:499 ../../install_steps_gtk.pm_.c:539
msgid "Please wait, "
msgstr "Attendere per favore, "
-#: ../install_steps_graphical.pm_.c:501 ../install_steps_gtk.pm_.c:528
+#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:541
msgid "Time remaining "
msgstr "Tempo restante "
-#: ../install_steps_graphical.pm_.c:502 ../install_steps_gtk.pm_.c:529
+#: ../../install_steps_graphical.pm_.c:502 ../../install_steps_gtk.pm_.c:542
msgid "Total time "
msgstr "Tempo totale "
-#: ../install_steps_graphical.pm_.c:507 ../install_steps_gtk.pm_.c:534
-#: ../install_steps_interactive.pm_.c:317
+#: ../../install_steps_graphical.pm_.c:507 ../../install_steps_gtk.pm_.c:551
+#: ../../install_steps_interactive.pm_.c:382
msgid "Preparing installation"
msgstr "Sto preparando l'installazione"
-#: ../install_steps_graphical.pm_.c:528 ../install_steps_gtk.pm_.c:549
+#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:566
#, c-format
msgid "Installing package %s"
msgstr "Installazione del pacchetto %s"
-#: ../install_steps_graphical.pm_.c:553 ../install_steps_gtk.pm_.c:574
+#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:607
+#: ../../install_steps_gtk.pm_.c:611
msgid "Go on anyway?"
msgstr "Vado avanti comunque?"
-#: ../install_steps_graphical.pm_.c:553 ../install_steps_gtk.pm_.c:574
+#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:607
msgid "There was an error ordering packages:"
msgstr "C'č stato un errore ordinando i pacchetti:"
-#: ../install_steps_graphical.pm_.c:577 ../install_steps_interactive.pm_.c:893
+#: ../../install_steps_graphical.pm_.c:577
+#: ../../install_steps_interactive.pm_.c:997
msgid "Use existing configuration for X11?"
msgstr "Usare la configurazione esistente per X11?"
-#: ../install_steps_gtk.pm_.c:259
+#: ../../install_steps_gtk.pm_.c:154
+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:195
+msgid "You don't have any windows partitions!"
+msgstr "Non hai alcuna partizione windows!"
+
+#: ../../install_steps_gtk.pm_.c:197
+msgid "You don't have any enough room for Lnx4win"
+msgstr "Non hai abbastanza spazio per Lnx4win"
+
+#: ../../install_steps_gtk.pm_.c:213
msgid ""
"WARNING!\n"
"\n"
@@ -1995,180 +2467,376 @@ msgstr ""
"DrakX ora ha bisogno di ridimensionare la tua partizione Windows. Stai "
"attento:\n"
"questa operazione č pericolosa. Se non lo hai gią fatto, dovresti prima\n"
-"lanciare scandisk (e opzionalmente defrag) su questa partizione e fare il "
-"backup\n"
-"dei tuoi dati.\n"
+"lanciare uscrire dall'installazione, lanciare scandisk (e opzionalmente "
+"defrag),\n"
+"e poi rilanciare l'installazione. Dovresti anche fare il backup dei tuoi "
+"dati.\n"
"Quando sei sicuro, premi Ok."
-#: ../install_steps_gtk.pm_.c:278
+#: ../../install_steps_gtk.pm_.c:232
msgid "Automatic resizing failed"
msgstr "Ridimensionamento automatico fallito"
-#: ../install_steps_gtk.pm_.c:312
+#: ../../install_steps_gtk.pm_.c:261
+msgid "Which partition do you want to use to put Linux4Win?"
+msgstr "Che partizione vuoi usare per Linux4Win?"
+
+#: ../../install_steps_gtk.pm_.c:280
+msgid "Choose the sizes"
+msgstr "Scegli le dimensioni"
+
+#: ../../install_steps_gtk.pm_.c:282
+msgid "Root partition size in MB: "
+msgstr "Dimensione partizione Root in MB: "
+
+#: ../../install_steps_gtk.pm_.c:284
+msgid "Swap partition size in MB: "
+msgstr "Dimensione partizione di swap in MB: "
+
+#: ../../install_steps_gtk.pm_.c:316
+#, 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:318
+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 meno di questa dimensione,\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:323
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."
+"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 ""
-"Ora che hai scelto i gruppi desiderati, scegli quanti \n"
-"pacchetti vuoi, da una installazione minimale ad una \n"
-"installazione completa di ogni gruppo selezionato."
+"Hai spazio sul tuo hard disk 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:329
+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:331
+msgid "Percentage of packages to install"
+msgstr "Percentuale dei pacchetti da installare"
-#: ../install_steps_gtk.pm_.c:315
-msgid "You will be able to choose more precisely in next step"
-msgstr "Potrai scegliere con pił precisione nella prossima fase"
+#: ../../install_steps_gtk.pm_.c:372
+msgid "Automatic dependencies"
+msgstr "Dipendenze automatiche"
-#: ../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:425 ../../standalone/rpmdrake_.c:101
+msgid "Expand Tree"
+msgstr "Espandi struttura"
+
+#: ../../install_steps_gtk.pm_.c:426 ../../standalone/rpmdrake_.c:102
+msgid "Collapse Tree"
+msgstr "Raggruppa struttura"
+
+#: ../../install_steps_gtk.pm_.c:427
+msgid "Toggle between flat and group sorted"
+msgstr "Cambia tra ordinamento semplice o a gruppi"
+
+#: ../../install_steps_gtk.pm_.c:445
msgid "Bad package"
msgstr "Pacchetto errato"
-#: ../install_steps_gtk.pm_.c:522
+#: ../../install_steps_gtk.pm_.c:446
+#, c-format
+msgid "Name: %s\n"
+msgstr "Nome: %s\n"
+
+#: ../../install_steps_gtk.pm_.c:449
+#, c-format
+msgid "Importance: %s\n"
+msgstr "Importanza: %s\n"
+
+#: ../../install_steps_gtk.pm_.c:457
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Domensione totale: %d / %d MB"
+
+#: ../../install_steps_gtk.pm_.c:467
+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:469
+msgid "You can't unselect this package. It is already installed"
+msgstr "Non puoi deselezionare questo pacchetto. E' gią installato"
+
+#: ../../install_steps_gtk.pm_.c:473
+msgid ""
+"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:476
+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:489
+#, fuzzy
+msgid ""
+"You can't select this package as there is not enough space left to install it"
+msgstr "Non puoi deselezionare questo pacchetto. E' gią installato"
+
+#: ../../install_steps_gtk.pm_.c:492
+msgid "The following packages are going to be installed/removed"
+msgstr "I seguenti pacchetti saranno installati/rimossi"
+
+#: ../../install_steps_gtk.pm_.c:501
+msgid "You can't select/unselect this package"
+msgstr "Non puoi selezionare/deselezionare questo pacchetto"
+
+#: ../../install_steps_gtk.pm_.c:536
msgid "Estimating"
msgstr "Sto valutando"
-#: ../install_steps_gtk.pm_.c:544
+#: ../../install_steps_gtk.pm_.c:548 ../../interactive.pm_.c:84
+#: ../../interactive.pm_.c:223 ../../interactive_newt.pm_.c:49
+#: ../../interactive_newt.pm_.c:98 ../../interactive_stdio.pm_.c:27
+#: ../../my_gtk.pm_.c:201 ../../my_gtk.pm_.c:459
+msgid "Cancel"
+msgstr "Cancella"
+
+#: ../../install_steps_gtk.pm_.c:561
#, c-format
msgid "%d packages"
msgstr "%d pacchetti"
-#: ../install_steps_gtk.pm_.c:544
+#: ../../install_steps_gtk.pm_.c:561
msgid ", %U MB"
msgstr ", %U MB"
-#: ../install_steps_interactive.pm_.c:37
+#: ../../install_steps_gtk.pm_.c:592
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Cambia il tuo Cd-Rom!\n"
+"\n"
+"Per favore inserisci il Cd-Rom chiamato \"%s\" nel tuo lettore e premi Ok "
+"quando\n"
+"pronto. Se non ce l'hai, premi Cancel per evitare l'installazione da questo "
+"Cd-Rom."
+
+#: ../../install_steps_gtk.pm_.c:611
+msgid "There was an error installing packages:"
+msgstr "C'č stato un errore installando i pacchetti:"
+
+#: ../../install_steps_interactive.pm_.c:40
msgid "An error occurred"
msgstr "Si č verificato un errore"
-#: ../install_steps_interactive.pm_.c:54
-msgid "Which language do you want?"
-msgstr "Che linguaggio vuoi?"
+#: ../../install_steps_interactive.pm_.c:57
+msgid "Please, choose a language to use."
+msgstr "Per favore, scegli un linguaggio da usare."
-#: ../install_steps_interactive.pm_.c:68 ../standalone/keyboarddrake_.c:22
+#: ../../install_steps_interactive.pm_.c:72
+#: ../../standalone/keyboarddrake_.c:22
msgid "Keyboard"
msgstr "Tastiera"
-#: ../install_steps_interactive.pm_.c:69 ../standalone/keyboarddrake_.c:23
-msgid "What is your keyboard layout?"
-msgstr "Che tipo di tastiera usi?"
-
-#: ../install_steps_interactive.pm_.c:79
-msgid "Install/Upgrade"
-msgstr "Installa/Aggiorna"
-
-#: ../install_steps_interactive.pm_.c:80
-msgid "Is this an install or an upgrade?"
-msgstr "E' una installazione o un aggiornamento?"
+#: ../../install_steps_interactive.pm_.c:73
+msgid "Please, choose your keyboard layout."
+msgstr "Per favore, scegli l'impostazione della tastiera."
-#: ../install_steps_interactive.pm_.c:81
-msgid "Upgrade"
-msgstr "Aggiorna"
+#: ../../install_steps_interactive.pm_.c:81
+msgid "You can choose other languages that will be available after install"
+msgstr ""
+"Puoi scegliere altri linguaggi che saranno disponibili dopo l'installazione"
-#: ../install_steps_interactive.pm_.c:89
+#: ../../install_steps_interactive.pm_.c:91
msgid "Root Partition"
msgstr "partizione Root"
-#: ../install_steps_interactive.pm_.c:90
+#: ../../install_steps_interactive.pm_.c:92
msgid "What is the root partition (/) of your system?"
msgstr "Qual'č la partizione root (/) del tuo sistema?"
-#: ../install_steps_interactive.pm_.c:100
-msgid "Recommended"
-msgstr "Raccomandata"
+#: ../../install_steps_interactive.pm_.c:100
+#: ../../install_steps_interactive.pm_.c:140
+msgid "Install Class"
+msgstr "Classe d'installazione"
+
+#: ../../install_steps_interactive.pm_.c:100
+msgid "Which installation class do you want?"
+msgstr "Che classe di installazione vuoi?"
+
+#: ../../install_steps_interactive.pm_.c:102
+msgid "Install/Upgrade"
+msgstr "Installa/Aggiorna"
+
+#: ../../install_steps_interactive.pm_.c:102
+msgid "Is this an install or an upgrade?"
+msgstr "E' una installazione o un aggiornamento?"
+
+#: ../../install_steps_interactive.pm_.c:110
+msgid "Automated"
+msgstr "Automatizzata"
-#: ../install_steps_interactive.pm_.c:101
+#: ../../install_steps_interactive.pm_.c:112
+#: ../../install_steps_interactive.pm_.c:124
msgid "Customized"
msgstr "Personalizzata"
-#: ../install_steps_interactive.pm_.c:102
+#: ../../install_steps_interactive.pm_.c:113
+#: ../../install_steps_interactive.pm_.c:124
msgid "Expert"
msgstr "Esperto"
-#: ../install_steps_interactive.pm_.c:104
-#: ../install_steps_interactive.pm_.c:118
-msgid "Install Class"
-msgstr "Classe d'installazione"
+#: ../../install_steps_interactive.pm_.c:122
+msgid ""
+"Are you sure you are an expert? \n"
+"You will be allowed to make powerfull but dangerous things here."
+msgstr ""
+"Sei sicuro di essere un esperto? \n"
+"Ti sarą concesso fare cose potenti ma pericolose qui."
-#: ../install_steps_interactive.pm_.c:105
-msgid "What installation class do you want?"
-msgstr "Che classe di installazione vuoi?"
+#: ../../install_steps_interactive.pm_.c:129
+msgid "Upgrade"
+msgstr "Aggiorna"
-#: ../install_steps_interactive.pm_.c:114
+#: ../../install_steps_interactive.pm_.c:135
msgid "Normal"
msgstr "Normale"
-#: ../install_steps_interactive.pm_.c:115
+#: ../../install_steps_interactive.pm_.c:136
msgid "Development"
msgstr "Sviluppatore"
-#: ../install_steps_interactive.pm_.c:116
+#: ../../install_steps_interactive.pm_.c:137
msgid "Server"
msgstr "Server"
-#: ../install_steps_interactive.pm_.c:119
-msgid "What usage do you want?"
-msgstr "Che linguaggio vuoi?"
+#: ../../install_steps_interactive.pm_.c:141
+msgid "Which usage is your system used for ?"
+msgstr "Qual'č l'uso che farai del tuo sistema ?"
-#: ../install_steps_interactive.pm_.c:132 ../standalone/mousedrake_.c:25
-msgid "What is the type of your mouse?"
-msgstr "Di che tipo č il tuo mouse?"
+#: ../../install_steps_interactive.pm_.c:152
+msgid "Please, choose the type of your mouse."
+msgstr "Per favore, scegli il tipo del tuo mouse."
-#: ../install_steps_interactive.pm_.c:140 ../standalone/mousedrake_.c:38
+#: ../../install_steps_interactive.pm_.c:160 ../../standalone/mousedrake_.c:38
msgid "Mouse Port"
msgstr "Porta mouse"
-#: ../install_steps_interactive.pm_.c:141 ../standalone/mousedrake_.c:39
-msgid "Which serial port is your mouse connected to?"
-msgstr "A che porta seriale č connesso il mouse ?"
+#: ../../install_steps_interactive.pm_.c:161
+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:172
+msgid "Configuring IDE"
+msgstr "Sto configurando IDE"
+
+#: ../../install_steps_interactive.pm_.c:172
+msgid "IDE"
+msgstr "IDE"
-#: ../install_steps_interactive.pm_.c:157
+#: ../../install_steps_interactive.pm_.c:182
msgid "no available partitions"
msgstr "nessuna partizione disponibile"
-#: ../install_steps_interactive.pm_.c:159
+#: ../../install_steps_interactive.pm_.c:184
#, c-format
-msgid "(%dMb)"
-msgstr "(%dMb)"
+msgid "(%dMB)"
+msgstr "(%dMB)"
-#: ../install_steps_interactive.pm_.c:166
-msgid "Which partition do you want to use as your root partition"
-msgstr "Che partizione vuoi usare come partizione di root?"
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Please choose a partition to use as your root partition."
+msgstr "Per favore scegli una partizione da usare come partizione di root."
-#: ../install_steps_interactive.pm_.c:173
+#: ../../install_steps_interactive.pm_.c:198
msgid "Choose the mount points"
msgstr "Scegli la posizione di mount"
-#: ../install_steps_interactive.pm_.c:185
+#: ../../install_steps_interactive.pm_.c:210
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Devi resettare perchč la tabella delle partizioni venga fissata"
-#: ../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:236
msgid "Choose the partitions you want to format"
msgstr "Scegli le partizioni che vuoi formattare"
-#: ../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:240
msgid "Check bad blocks?"
+msgstr "Controllo blocchi danneggiati?"
+
+#: ../../install_steps_interactive.pm_.c:248
+msgid "Formatting partitions"
+msgstr "Formattazione partizioni"
+
+#: ../../install_steps_interactive.pm_.c:252
+#, c-format
+msgid "Creating and formatting file %s"
+msgstr "Sto creando e formattando il file %s"
+
+#: ../../install_steps_interactive.pm_.c:255
+msgid "Not enough swap to fulfill installation, please add some"
msgstr ""
+"Swap insufficiente per completare l'installazione. Per favore aumentarne la "
+"dimensione"
-#: ../install_steps_interactive.pm_.c:230
+#: ../../install_steps_interactive.pm_.c:261
msgid "Looking for available packages"
msgstr "Sto cercando i pacchetti disponibili"
-#: ../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:267
msgid "Finding packages to upgrade"
msgstr "Sto cercando i pacchetti da aggiornare"
-#: ../install_steps_interactive.pm_.c:266
-#, c-format
-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"
+#: ../../install_steps_interactive.pm_.c:284
+msgid "Your system has not enough space left for installation or upgrade"
msgstr ""
+"Il tuo sistema non ha spazio rimasto sufficiente per l'installazione\n"
+"o l'aggiornamento."
-#: ../install_steps_interactive.pm_.c:290
+#: ../../install_steps_interactive.pm_.c:317
msgid "Package Group Selection"
msgstr "Selezione Gruppi di Pacchetti"
-#: ../install_steps_interactive.pm_.c:326
+#: ../../install_steps_interactive.pm_.c:320
+msgid "Individual package selection"
+msgstr "Selezione individuale pacchetti"
+
+#: ../../install_steps_interactive.pm_.c:360
+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 ""
+"Se hai tutti i CDs nella lista qui sopra, clicca Ok.\n"
+"Se non hai nessuno di quesi CDs, clicca Cancel.\n"
+"Se mancano solo alcuni dei CDs, deselezionali, e poi clicca Ok."
+
+#: ../../install_steps_interactive.pm_.c:363
+#, c-format
+msgid "Cd-Rom labeled \"%s\""
+msgstr "Cd-Rom chiamato \"%s\""
+
+#: ../../install_steps_interactive.pm_.c:391
msgid ""
"Installing package %s\n"
"%d%%"
@@ -2176,55 +2844,55 @@ msgstr ""
"Installazione del pacchetto %s\n"
"%d%%"
-#: ../install_steps_interactive.pm_.c:335
-msgid "Post install configuration"
+#: ../../install_steps_interactive.pm_.c:400
+msgid "Post-install configuration"
msgstr "Configurazione post installazione"
-#: ../install_steps_interactive.pm_.c:346
+#: ../../install_steps_interactive.pm_.c:410
msgid "Keep the current IP configuration"
msgstr "Mantieni la configurazione IP corrente"
-#: ../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:411
msgid "Reconfigure network now"
msgstr "Riconfigura le rete ora"
-#: ../install_steps_interactive.pm_.c:348
-#: ../install_steps_interactive.pm_.c:360
+#: ../../install_steps_interactive.pm_.c:412
msgid "Do not set up networking"
msgstr "Non configurare la rete"
-#: ../install_steps_interactive.pm_.c:350
-#: ../install_steps_interactive.pm_.c:358
+#: ../../install_steps_interactive.pm_.c:415
+#: ../../install_steps_interactive.pm_.c:420
msgid "Network Configuration"
msgstr "Configurazione di rete"
-#: ../install_steps_interactive.pm_.c:351
+#: ../../install_steps_interactive.pm_.c:416
msgid "Local networking has already been configured. Do you want to:"
msgstr "La rete LAN č gią stata configurata. Desideri:"
-#: ../install_steps_interactive.pm_.c:359
-msgid "Do you want to configure networking for your system?"
-msgstr "Vuoi configurare una rete per il tuo sistema?"
-
-#: ../install_steps_interactive.pm_.c:360
-msgid "Dialup with modem"
-msgstr "Connessione con modem"
+#: ../../install_steps_interactive.pm_.c:421
+msgid "Do you want to configure a local network for your system?"
+msgstr "Vuoi configurare una rete locale per il tuo sistema?"
-#: ../install_steps_interactive.pm_.c:360
-msgid "Local LAN"
-msgstr "LAN locale"
-
-#: ../install_steps_interactive.pm_.c:369
+#: ../../install_steps_interactive.pm_.c:427
msgid "no network card found"
msgstr "nessuna scheda di rete trovata"
-#: ../install_steps_interactive.pm_.c:399
-#: ../install_steps_interactive.pm_.c:400
+#: ../../install_steps_interactive.pm_.c:449
+msgid "Modem Configuration"
+msgstr "Configurazione modem"
+
+#: ../../install_steps_interactive.pm_.c:450
+msgid ""
+"Do you want to configure a dialup connection with modem for your system?"
+msgstr "Vuoi configurare una connessione dialup con modem per il tuo sistema?"
+
+#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid "Configuring network device %s"
msgstr "Sto configurando il dispositivo di rete %s"
-#: ../install_steps_interactive.pm_.c:401
+#: ../../install_steps_interactive.pm_.c:464
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -2234,31 +2902,31 @@ msgstr ""
"Ogni dato dovrebbe essere inserito come un indirizzo IP in notazione\n"
"decimale puntata (per esempio, 1.2.3.4.)."
-#: ../install_steps_interactive.pm_.c:404
+#: ../../install_steps_interactive.pm_.c:467
msgid "Automatic IP"
msgstr "IP automatico"
-#: ../install_steps_interactive.pm_.c:404
+#: ../../install_steps_interactive.pm_.c:467
msgid "IP address:"
msgstr "Indirizzo IP:"
-#: ../install_steps_interactive.pm_.c:404
+#: ../../install_steps_interactive.pm_.c:467
msgid "Netmask:"
msgstr "Netmask:"
-#: ../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:468
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../install_steps_interactive.pm_.c:411 ../printerdrake.pm_.c:149
+#: ../../install_steps_interactive.pm_.c:474 ../../printerdrake.pm_.c:89
msgid "IP address should be in format 1.2.3.4"
msgstr "L'indirizzo IP deve essere in formato 1.2.3.4"
-#: ../install_steps_interactive.pm_.c:429
+#: ../../install_steps_interactive.pm_.c:492
msgid "Configuring network"
msgstr "Sto configurando la rete"
-#: ../install_steps_interactive.pm_.c:430
+#: ../../install_steps_interactive.pm_.c:493
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -2270,91 +2938,79 @@ msgstr ""
"come ''mybox.mylab.myco.com''.\n"
"Puoi anche inserire l'indirizzo IP del gateway se ne hai uno"
-#: ../install_steps_interactive.pm_.c:434
+#: ../../install_steps_interactive.pm_.c:497
msgid "DNS server:"
msgstr "Server DNS:"
-#: ../install_steps_interactive.pm_.c:434
+#: ../../install_steps_interactive.pm_.c:497
msgid "Gateway device:"
msgstr "Device di gateway:"
-#: ../install_steps_interactive.pm_.c:434
+#: ../../install_steps_interactive.pm_.c:497
msgid "Gateway:"
msgstr "Gateway:"
-#: ../install_steps_interactive.pm_.c:434
+#: ../../install_steps_interactive.pm_.c:497
msgid "Host name:"
msgstr "Nome host:"
-#: ../install_steps_interactive.pm_.c:447
+#: ../../install_steps_interactive.pm_.c:510
msgid "Try to find a modem?"
msgstr "provo a cercare un modem?"
-#: ../install_steps_interactive.pm_.c:457
-msgid "Which serial port is your modem connected to?"
-msgstr "A che porta seriale č connesso il tuo modem?"
+#: ../../install_steps_interactive.pm_.c:521
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Per favore scegli a che porta seriale č connesso il tuo modem."
-#: ../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:527
msgid "Dialup options"
msgstr "Opzioni di Dialup"
-#: ../install_steps_interactive.pm_.c:463
+#: ../../install_steps_interactive.pm_.c:528
msgid "Connection name"
msgstr "Nome connessione"
-#: ../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:529
msgid "Phone number"
msgstr "Numero telefonico"
-#: ../install_steps_interactive.pm_.c:465
+#: ../../install_steps_interactive.pm_.c:530
msgid "Login ID"
msgstr "ID di accesso"
-#: ../install_steps_interactive.pm_.c:466
-#: ../install_steps_interactive.pm_.c:578
-#: ../install_steps_interactive.pm_.c:624
-#: ../install_steps_interactive.pm_.c:724 ../standalone/adduserdrake_.c:40
-msgid "Password"
-msgstr "Password"
-
-#: ../install_steps_interactive.pm_.c:467
+#: ../../install_steps_interactive.pm_.c:532
msgid "Authentication"
msgstr "Autenticazione"
-#: ../install_steps_interactive.pm_.c:467
+#: ../../install_steps_interactive.pm_.c:532
msgid "CHAP"
msgstr "CHAP"
-#: ../install_steps_interactive.pm_.c:467
+#: ../../install_steps_interactive.pm_.c:532
msgid "PAP"
msgstr "PAP"
-#: ../install_steps_interactive.pm_.c:467
+#: ../../install_steps_interactive.pm_.c:532
msgid "Script-based"
msgstr "Basata su script"
-#: ../install_steps_interactive.pm_.c:467
+#: ../../install_steps_interactive.pm_.c:532
msgid "Terminal-based"
msgstr "Basata su terminale"
-#: ../install_steps_interactive.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:533
msgid "Domain name"
msgstr "Nome dominio"
-#: ../install_steps_interactive.pm_.c:469
+#: ../../install_steps_interactive.pm_.c:535
msgid "First DNS Server"
msgstr "Primo server DNS"
-#: ../install_steps_interactive.pm_.c:470
+#: ../../install_steps_interactive.pm_.c:536
msgid "Second DNS Server"
msgstr "Secondo server DNS"
-#: ../install_steps_interactive.pm_.c:483
-msgid "Bringing up the network"
-msgstr "Sto impiantando la rete"
-
-#: ../install_steps_interactive.pm_.c:492
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:549
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
"\n"
@@ -2371,7 +3027,7 @@ msgid ""
"In addition customer and/or end user shall particularly be aware to not "
"infringe\n"
"the laws of his/their jurisdiction. Should customer and/or end user do not\n"
-"respect the provision of these applicable laws, he/they will incur serious\n"
+"respect the provision of these applicable laws, he/they will incure serious\n"
"sanctions.\n"
"\n"
"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
@@ -2427,128 +3083,94 @@ msgstr ""
"Per ogni eventuale delucidazione in relazione a questo argomento, si prega "
"di\n"
"contattare\n"
+"Mandrakesoft, Inc.\n"
"2400 N. Lincoln Avenue Suite 243\n"
"Altadena California 91001\n"
"USA"
-#: ../install_steps_interactive.pm_.c:523
+#: ../../install_steps_interactive.pm_.c:580
msgid "Choose a mirror from which to get the packages"
msgstr "Scegli un mirror da cui prendere i pacchetti"
-#: ../install_steps_interactive.pm_.c:528
+#: ../../install_steps_interactive.pm_.c:588
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:532
-msgid "Which packages do you want to install"
-msgstr "Quali pacchetti vuoi installare"
-
-#: ../install_steps_interactive.pm_.c:534
-msgid "Downloading cryptographic packages"
-msgstr "Scaricamento pacchetti crittografici"
+#: ../../install_steps_interactive.pm_.c:592
+msgid "Please choose the packages you want to install."
+msgstr "Per favore scegli i pacchetti che vuoi installare."
-#: ../install_steps_interactive.pm_.c:544
+#: ../../install_steps_interactive.pm_.c:606
msgid "Which is your timezone?"
msgstr "Qual'č la tua zona oraria?"
-#: ../install_steps_interactive.pm_.c:545
+#: ../../install_steps_interactive.pm_.c:607
msgid "Is your hardware clock set to GMT?"
msgstr "L'orologio del tuo hardware č settato su GMT?"
-#: ../install_steps_interactive.pm_.c:555
-msgid "Printer"
-msgstr "Stampante"
-
-#: ../install_steps_interactive.pm_.c:556
-msgid "Would you like to configure a printer?"
-msgstr "Vorresti configurare una stampante?"
-
-#: ../install_steps_interactive.pm_.c:576
+#: ../../install_steps_interactive.pm_.c:652
msgid "No password"
msgstr "Nessuna Password"
-#: ../install_steps_interactive.pm_.c:576
-#: ../install_steps_interactive.pm_.c:798 ../interactive.pm_.c:74
-#: ../interactive.pm_.c:84 ../interactive.pm_.c:164
-#: ../interactive_newt.pm_.c:50 ../interactive_newt.pm_.c:97
-#: ../interactive_stdio.pm_.c:27 ../my_gtk.pm_.c:192 ../my_gtk.pm_.c:425
-#: ../my_gtk.pm_.c:525
-msgid "Ok"
-msgstr "Ok"
-
-#: ../install_steps_interactive.pm_.c:579
-#: ../install_steps_interactive.pm_.c:625
-#: ../install_steps_interactive.pm_.c:725 ../standalone/adduserdrake_.c:41
-msgid "Password (again)"
-msgstr "Password (ripeti)"
-
-#: ../install_steps_interactive.pm_.c:581
+#: ../../install_steps_interactive.pm_.c:657
msgid "Use shadow file"
msgstr "Usa file shadow"
-#: ../install_steps_interactive.pm_.c:581
+#: ../../install_steps_interactive.pm_.c:657
msgid "shadow"
msgstr "shadow"
-#: ../install_steps_interactive.pm_.c:582
+#: ../../install_steps_interactive.pm_.c:658
msgid "MD5"
msgstr "MD5"
-#: ../install_steps_interactive.pm_.c:582
+#: ../../install_steps_interactive.pm_.c:658
msgid "Use MD5 passwords"
msgstr "Usa password MD5"
-#: ../install_steps_interactive.pm_.c:584
+#: ../../install_steps_interactive.pm_.c:660
msgid "Use NIS"
msgstr "Usa NIS"
-#: ../install_steps_interactive.pm_.c:584
+#: ../../install_steps_interactive.pm_.c:660
msgid "yellow pages"
msgstr "pagine gialle"
-#: ../install_steps_interactive.pm_.c:588
-#: ../install_steps_interactive.pm_.c:636
-#: ../install_steps_interactive.pm_.c:736 ../standalone/adduserdrake_.c:52
-msgid "Please try again"
-msgstr "Per favore prova di nuovo"
-
-#: ../install_steps_interactive.pm_.c:588
-#: ../install_steps_interactive.pm_.c:636
-#: ../install_steps_interactive.pm_.c:736 ../standalone/adduserdrake_.c:52
-msgid "The passwords do not match"
-msgstr "Le passwrods non corrispondono"
-
-#: ../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:666
#, c-format
msgid "This password is too simple (must be at least %d characters long)"
msgstr "Questa password č troppo semplice (deve essere almeno di %d caratteri)"
-#: ../install_steps_interactive.pm_.c:597
+#: ../../install_steps_interactive.pm_.c:673
msgid "Authentification NIS"
msgstr "NIS di autentificazione"
-#: ../install_steps_interactive.pm_.c:598
+#: ../../install_steps_interactive.pm_.c:674
msgid "NIS Domain"
msgstr "Dominio NIS"
-#: ../install_steps_interactive.pm_.c:598
+#: ../../install_steps_interactive.pm_.c:674
msgid "NIS Server"
msgstr "Server NIS"
-#: ../install_steps_interactive.pm_.c:618 ../standalone/adduserdrake_.c:34
+#: ../../install_steps_interactive.pm_.c:699
+#: ../../standalone/adduserdrake_.c:36
msgid "Accept user"
msgstr "Accetta utente"
-#: ../install_steps_interactive.pm_.c:618 ../standalone/adduserdrake_.c:34
+#: ../../install_steps_interactive.pm_.c:699
+#: ../../standalone/adduserdrake_.c:36
msgid "Add user"
msgstr "Aggiungi utente"
-#: ../install_steps_interactive.pm_.c:619 ../standalone/adduserdrake_.c:35
+#: ../../install_steps_interactive.pm_.c:700
+#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid "(already added %s)"
msgstr "(gią aggiunto %s)"
-#: ../install_steps_interactive.pm_.c:619 ../standalone/adduserdrake_.c:35
+#: ../../install_steps_interactive.pm_.c:700
+#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid ""
"Enter a user\n"
@@ -2557,55 +3179,67 @@ msgstr ""
"Inserisci un utente\n"
"%s"
-#: ../install_steps_interactive.pm_.c:621 ../standalone/adduserdrake_.c:37
+#: ../../install_steps_interactive.pm_.c:702
+#: ../../standalone/adduserdrake_.c:39
msgid "Real name"
msgstr "Vero nome"
-#: ../install_steps_interactive.pm_.c:622 ../standalone/adduserdrake_.c:38
+#: ../../install_steps_interactive.pm_.c:703 ../../printerdrake.pm_.c:84
+#: ../../printerdrake.pm_.c:109 ../../standalone/adduserdrake_.c:40
msgid "User name"
msgstr "Nome utente"
-#: ../install_steps_interactive.pm_.c:627 ../standalone/adduserdrake_.c:43
+#: ../../install_steps_interactive.pm_.c:708
+#: ../../standalone/adduserdrake_.c:45
msgid "Shell"
msgstr "Shell"
-#: ../install_steps_interactive.pm_.c:637 ../standalone/adduserdrake_.c:53
+#: ../../install_steps_interactive.pm_.c:710
+#: ../../standalone/adduserdrake_.c:47
+msgid "Icon"
+msgstr "Icona"
+
+#: ../../install_steps_interactive.pm_.c:720
+#: ../../standalone/adduserdrake_.c:57
msgid "This password is too simple"
msgstr "Questa password č troppo semplice"
-#: ../install_steps_interactive.pm_.c:638 ../standalone/adduserdrake_.c:54
+#: ../../install_steps_interactive.pm_.c:721
+#: ../../standalone/adduserdrake_.c:58
msgid "Please give a user name"
msgstr "Per favore fornisci un nome utente"
-#: ../install_steps_interactive.pm_.c:639 ../standalone/adduserdrake_.c:55
+#: ../../install_steps_interactive.pm_.c:722
+#: ../../standalone/adduserdrake_.c:59
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Il nome utente deve contenere solo lettere minuscole, numeri, '-' e '_'"
-#: ../install_steps_interactive.pm_.c:640 ../standalone/adduserdrake_.c:56
+#: ../../install_steps_interactive.pm_.c:723
+#: ../../standalone/adduserdrake_.c:60
msgid "This user name is already added"
msgstr "Questo nome utente č gią stato aggiunto"
-#: ../install_steps_interactive.pm_.c:659
-msgid "First drive"
-msgstr "Primo disco"
+#: ../../install_steps_interactive.pm_.c:747
+msgid "First floppy drive"
+msgstr "Primo drive floppy"
-#: ../install_steps_interactive.pm_.c:660
-msgid "Second drive"
-msgstr "Secondo disco"
+#: ../../install_steps_interactive.pm_.c:748
+msgid "Second floppy drive"
+msgstr "Secondo drive floppy"
-#: ../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:749
msgid "Skip"
msgstr "Salta"
-#: ../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:755
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
"install\n"
-"LILO on your system, or another operating system removes LILO, or LILO "
-"doesn't\n"
+"LILO (or grub) on your system, or another operating system removes LILO, or "
+"LILO doesn't\n"
"work with your hardware configuration. A custom bootdisk can also be used "
"with\n"
"the Mandrake rescue image, making it much easier to recover from severe "
@@ -2614,267 +3248,200 @@ msgid ""
msgstr ""
"Un disco di avvio personalizzato provvede un modo di accesso al tuo sistema\n"
"Linux senza dipendere dal normale bootloader. Ciņ č utile se non vuoi\n"
-"installare lilo sul tuo sistema, o un altro sistema operativo rimuove lilo,\n"
-"o lilo non funziona con la tua configurazione hardware. Un disco di avvio\n"
+"installare LILO (o grub) sul tuo sistema, o un altro sistema operativo "
+"rimuove\n"
+"LILO o LILO non funziona con la tua configurazione hardware. Un disco di "
+"avvio\n"
"personalizzato puņ anche essere usato con l'immagine di salvataggio di\n"
"Mandrake, rendendo molto pił facile il ripristino dopo gravi errori\n"
"del sistema. Vuoi creare un disco di avvio per il tuo sistema?"
-#: ../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:764
msgid "Sorry, no floppy drive available"
msgstr "Spiacente, nessun drive floppy disponibile"
-#: ../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:767
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:683
+#: ../../install_steps_interactive.pm_.c:772
#, c-format
msgid "Insert a floppy in drive %s"
msgstr "inserisci il floppy nel drive %s"
-#: ../install_steps_interactive.pm_.c:684
-#: ../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:773
msgid "Creating bootdisk"
msgstr "Creazione disco di avvio"
-#: ../install_steps_interactive.pm_.c:691
-msgid "Preparing bootloader"
-msgstr "Preparazione del bootloader"
-
-#: ../install_steps_interactive.pm_.c:703
-msgid "First sector of boot partition"
-msgstr "Primo settore della partizione di boot"
-
-#: ../install_steps_interactive.pm_.c:703
-msgid "First sector of drive (MBR)"
-msgstr "Primo settore del drive (MBR)"
-
-#: ../install_steps_interactive.pm_.c:708
-msgid "LILO Installation"
-msgstr "Installazione di LILO"
-
-#: ../install_steps_interactive.pm_.c:709
-msgid "Where do you want to install the bootloader?"
-msgstr "Dove vuoi installare il bootloader?"
-
-#: ../install_steps_interactive.pm_.c:715
-msgid "Do you want to use LILO?"
-msgstr "Vuoi usare LILO?"
-
-#: ../install_steps_interactive.pm_.c:718
-msgid "Boot device"
-msgstr "Dispositivo di Boot"
-
-#: ../install_steps_interactive.pm_.c:719
-msgid "Linear (needed for some SCSI drives)"
-msgstr "Lineare (necessario per alcuni dischi SCSI)"
-
-#: ../install_steps_interactive.pm_.c:719
-msgid "linear"
-msgstr "lineare"
-
-#: ../install_steps_interactive.pm_.c:720
-msgid "Compact"
-msgstr "Compatta"
-
-#: ../install_steps_interactive.pm_.c:720
-msgid "compact"
-msgstr "compatta"
-
-#: ../install_steps_interactive.pm_.c:721
-msgid "Delay before booting default image"
-msgstr "Ritardo prima di avviare l'immagine di default"
-
-#: ../install_steps_interactive.pm_.c:722
-msgid "Video mode"
-msgstr "Modo Video"
-
-#: ../install_steps_interactive.pm_.c:726
-msgid "Restrict command line options"
-msgstr "Inibizione opzioni riga di comando"
-
-#: ../install_steps_interactive.pm_.c:726
-msgid "restrict"
-msgstr "inibisci"
+#: ../../install_steps_interactive.pm_.c:785 ../../standalone/drakboot_.c:55
+msgid "Installation of LILO failed. The following error occured:"
+msgstr "Installazione di LILO fallita. C'č stato il seguente errore:"
-#: ../install_steps_interactive.pm_.c:732
-msgid "LILO main options"
-msgstr "Opzioni principali di LILO"
+#: ../../install_steps_interactive.pm_.c:806
+msgid "Do you want to use SILO?"
+msgstr "Vuoi usare SILO?"
-#: ../install_steps_interactive.pm_.c:735
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-"L'opzione ''Inibisci opzioni della linea di comando'' č inutile\n"
-"senza una password"
+#: ../../install_steps_interactive.pm_.c:817
+msgid "SILO main options"
+msgstr "Opzioni principali di SILO"
-#: ../install_steps_interactive.pm_.c:746
+#: ../../install_steps_interactive.pm_.c:830
msgid ""
-"Here are the following entries in LILO.\n"
+"Here are the following entries in SILO.\n"
"You can add some more or change the existing ones."
msgstr ""
-"Ci sono le selezioni seguenti in LILO.\n"
+"Ci sono le selezioni seguenti in SILO.\n"
"Puoi aggiungerne altre o cambiare quelle esistenti."
-#: ../install_steps_interactive.pm_.c:748 ../standalone/rpmdrake_.c:302
-msgid "Add"
-msgstr "Aggiungi"
-
-#: ../install_steps_interactive.pm_.c:757
-msgid "Linux"
-msgstr "Linux"
-
-#: ../install_steps_interactive.pm_.c:757
-msgid "Other OS (windows...)"
-msgstr "Altro OS (windows...)"
-
-#: ../install_steps_interactive.pm_.c:757
-msgid "Which type of entry do you want to add"
-msgstr "Che tipo di entry vuoi aggiungere"
+#: ../../install_steps_interactive.pm_.c:858
+msgid "Partition"
+msgstr "Partizione"
-#: ../install_steps_interactive.pm_.c:777
-msgid "Image"
-msgstr "Immagine"
-
-#: ../install_steps_interactive.pm_.c:778
-#: ../install_steps_interactive.pm_.c:786
-msgid "Root"
-msgstr "Root"
-
-#: ../install_steps_interactive.pm_.c:779
-msgid "Append"
-msgstr "Aggiungi"
-
-#: ../install_steps_interactive.pm_.c:780
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../install_steps_interactive.pm_.c:781
-msgid "Read-write"
-msgstr "Lettura-scrittura"
-
-#: ../install_steps_interactive.pm_.c:787
-msgid "Table"
-msgstr "tabella"
-
-#: ../install_steps_interactive.pm_.c:788
-msgid "Unsafe"
-msgstr "Non sicuro"
-
-#: ../install_steps_interactive.pm_.c:793
-msgid "Label"
-msgstr "Etichetta"
-
-#: ../install_steps_interactive.pm_.c:795
-msgid "Default"
-msgstr "Predefinito"
-
-#: ../install_steps_interactive.pm_.c:798
-msgid "Remove entry"
-msgstr "Rimuovi voce"
-
-#: ../install_steps_interactive.pm_.c:801
-msgid "Empty label not allowed"
-msgstr "Etichetta vuota non ammessa"
-
-#: ../install_steps_interactive.pm_.c:802
+#: ../../install_steps_interactive.pm_.c:878
msgid "This label is already in use"
msgstr "Questa etichetta č gią in uso"
-#: ../install_steps_interactive.pm_.c:803
-#, c-format
-msgid "A entry %s already exists"
-msgstr "Una voce %s esiste gią"
+#: ../../install_steps_interactive.pm_.c:891
+msgid "Installation of SILO failed. The following error occured:"
+msgstr "Installazione di SILO fallita. C'č stato il seguente errore:"
-#: ../install_steps_interactive.pm_.c:817
-msgid "Installation of LILO failed. The following error occured:"
-msgstr "Installazione di LILO fallita. C'č stato il seguente errore:"
+#: ../../install_steps_interactive.pm_.c:901
+msgid "Preparing bootloader"
+msgstr "Preparazione del bootloader"
+
+#: ../../install_steps_interactive.pm_.c:909
+msgid "Do you want to use aboot?"
+msgstr "Vuoi usare aboot?"
+
+#: ../../install_steps_interactive.pm_.c:912
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Errore installando aboot, \n"
+"provo a forzare l'installazione anche se ciņ distrugge la prima partizione?"
-#: ../install_steps_interactive.pm_.c:831
+#: ../../install_steps_interactive.pm_.c:929
msgid "Proxies configuration"
msgstr "Configurazione dei Proxy"
-#: ../install_steps_interactive.pm_.c:832
+#: ../../install_steps_interactive.pm_.c:930
msgid "HTTP proxy"
msgstr "Proxy HTTP"
-#: ../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:931
msgid "FTP proxy"
msgstr "Proxy FTP"
-#: ../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:937
msgid "Proxy should be http://..."
msgstr "Il proxy dovrebbe essere http://..."
-#: ../install_steps_interactive.pm_.c:840
+#: ../../install_steps_interactive.pm_.c:938
msgid "Proxy should be ftp://..."
msgstr "Il proxy dovrebbe essere ftp://..."
-#: ../install_steps_interactive.pm_.c:850 ../standalone/draksec_.c:20
+#: ../../install_steps_interactive.pm_.c:948 ../../standalone/draksec_.c:20
msgid "Welcome To Crackers"
msgstr "Benvenuto ai Crackers"
-#: ../install_steps_interactive.pm_.c:851 ../standalone/draksec_.c:21
+#: ../../install_steps_interactive.pm_.c:949 ../../standalone/draksec_.c:21
msgid "Poor"
msgstr "Scarso"
-#: ../install_steps_interactive.pm_.c:852 ../standalone/draksec_.c:22
+#: ../../install_steps_interactive.pm_.c:950 ../../standalone/draksec_.c:22
msgid "Low"
msgstr "Basso"
-#: ../install_steps_interactive.pm_.c:853 ../standalone/draksec_.c:23
+#: ../../install_steps_interactive.pm_.c:951 ../../standalone/draksec_.c:23
msgid "Medium"
msgstr "Medio"
-#: ../install_steps_interactive.pm_.c:854 ../standalone/draksec_.c:24
+#: ../../install_steps_interactive.pm_.c:952 ../../standalone/draksec_.c:24
msgid "High"
msgstr "Alto"
-#: ../install_steps_interactive.pm_.c:855 ../standalone/draksec_.c:25
+#: ../../install_steps_interactive.pm_.c:953 ../../standalone/draksec_.c:25
msgid "Paranoid"
msgstr "Paranoico"
-#: ../install_steps_interactive.pm_.c:868
+#: ../../install_steps_interactive.pm_.c:966
msgid "Miscellaneous questions"
msgstr "Questioni varie"
-#: ../install_steps_interactive.pm_.c:869
+#: ../../install_steps_interactive.pm_.c:967
msgid "(may cause data corruption)"
msgstr "(puņ causare danni ai dati)"
-#: ../install_steps_interactive.pm_.c:869
+#: ../../install_steps_interactive.pm_.c:967
msgid "Use hard drive optimisations?"
msgstr "Usa le ottimizzazioni per disco fisso?"
-#: ../install_steps_interactive.pm_.c:870 ../standalone/draksec_.c:46
+#: ../../install_steps_interactive.pm_.c:968 ../../standalone/draksec_.c:46
msgid "Choose security level"
msgstr "Scegli livello di sicurezza"
-#: ../install_steps_interactive.pm_.c:871
+#: ../../install_steps_interactive.pm_.c:969
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Precisa la dimensione RAM se necessario(trovati %d MB)"
-#: ../install_steps_interactive.pm_.c:872
+#: ../../install_steps_interactive.pm_.c:970
msgid "Removable media automounting"
msgstr "Automounting di media rimovibili"
-#: ../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:972
+msgid "Clean /tmp at each boot"
+msgstr "Pulisci /tmp ad ogni avvio"
+
+#: ../../install_steps_interactive.pm_.c:975
+msgid "Enable multi profiles"
+msgstr "Abilita profili multipli"
+
+#: ../../install_steps_interactive.pm_.c:977
msgid "Enable num lock at startup"
msgstr "Abilita num lock all'avvio"
-#: ../install_steps_interactive.pm_.c:877
-msgid "Give the ram size in Mb"
+#: ../../install_steps_interactive.pm_.c:980
+msgid "Give the ram size in MB"
msgstr "Specifica dimensione RAM in Mb"
-#: ../install_steps_interactive.pm_.c:905
-#: ../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:982
+msgid "Can't use supermount in high security level"
+msgstr "Non puoi usare supermount in alto livello di sicurezza"
+
+#: ../../install_steps_interactive.pm_.c:1002
+msgid ""
+"DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
+"By default, the 3.3 server is used because it works on more graphic cards.\n"
+"\n"
+"Do you want to try XFree 4.0?"
+msgstr ""
+"DrakX genererą files config sia per XFree 3.3 che XFree 4.0.\n"
+"Per default, il server 3.3 č usato perchč funziona con pił schede grafiche.\n"
+"\n"
+"Vuoi provare XFree 4.0?"
+
+#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1167
msgid "Try to find PCI devices?"
msgstr "Provo a trovare dispositivi PCI?"
-#: ../install_steps_interactive.pm_.c:920
+#: ../../install_steps_interactive.pm_.c:1034
+msgid "Do you want to generate an auto install floppy for linux replication?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1036
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Inserisci un floppy vuoto nel drive %s"
+
+#: ../../install_steps_interactive.pm_.c:1044
+msgid "Creating auto install floppy"
+msgstr "Sto creando il floppy di auto installazione"
+
+#: ../../install_steps_interactive.pm_.c:1068
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -2883,7 +3450,7 @@ msgstr ""
"Alcune fasi non sono completate.\n"
"Vuoi veramente interrompere adesso?"
-#: ../install_steps_interactive.pm_.c:927
+#: ../../install_steps_interactive.pm_.c:1075
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -2903,26 +3470,26 @@ msgstr ""
"capitolo\n"
"sulla post-installazione della Guida Ufficiale dell'Utente Linux Mandrake."
-#: ../install_steps_interactive.pm_.c:936
+#: ../../install_steps_interactive.pm_.c:1084
msgid "Shutting down"
msgstr "Spegnimento in corso"
-#: ../install_steps_interactive.pm_.c:950
+#: ../../install_steps_interactive.pm_.c:1096
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Driver d'installazione per scheda %s %s"
-#: ../install_steps_interactive.pm_.c:951
+#: ../../install_steps_interactive.pm_.c:1097
#, c-format
msgid "(module %s)"
msgstr "(modulo %s)"
-#: ../install_steps_interactive.pm_.c:961
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
msgid "Which %s driver should I try?"
msgstr "Quale driver %s dovrei provare?"
-#: ../install_steps_interactive.pm_.c:969
+#: ../../install_steps_interactive.pm_.c:1115
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -2933,27 +3500,27 @@ msgid ""
"should\n"
"not cause any damage."
msgstr ""
-"in alcuni casi, il driver $s ha bisogno di informazioni extra per "
+"in alcuni casi, il driver %s ha bisogno di informazioni extra per "
"funzionare\n"
"correttamente, anche se normalmente puņ andare senza. Vorresti specificare\n"
"opzioni extra o lasciare che il driver cerchi sulla tua macchina le\n"
"informazioni di cui ha bisogno? Occasionalmente, la ricerca bloccherą il\n"
"computer, ma non dovrebbe causare alcun danno."
-#: ../install_steps_interactive.pm_.c:974
+#: ../../install_steps_interactive.pm_.c:1120
msgid "Autoprobe"
msgstr "Autoriconoscimento"
-#: ../install_steps_interactive.pm_.c:974
+#: ../../install_steps_interactive.pm_.c:1120
msgid "Specify options"
msgstr "Specifica opzioni"
-#: ../install_steps_interactive.pm_.c:978
+#: ../../install_steps_interactive.pm_.c:1124
#, c-format
msgid "You may now provide its options to module %s."
msgstr "Adesso puoi passare le sue opzioni al modulo %s."
-#: ../install_steps_interactive.pm_.c:984
+#: ../../install_steps_interactive.pm_.c:1130
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -2964,11 +3531,11 @@ msgstr ""
"Le opzioni sono in formato ''nome=valore nome2=valore2 ...''.\n"
"Per esempio, ''io=0x300 irq=7''"
-#: ../install_steps_interactive.pm_.c:987
+#: ../../install_steps_interactive.pm_.c:1133
msgid "Module options:"
msgstr "Opzioni del modulo:"
-#: ../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:1143
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -2977,316 +3544,308 @@ msgstr ""
"Caricamento del modulo %s fallito.\n"
"Vuoi riprovare con altri parametri?"
-#: ../install_steps_interactive.pm_.c:1010
+#: ../../install_steps_interactive.pm_.c:1156
msgid "Try to find PCMCIA cards?"
msgstr "Provo a trovare schede PCMCIA?"
-#: ../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1157
msgid "Configuring PCMCIA cards..."
msgstr "Configuro scheda PCMCIA..."
-#: ../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1157
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../install_steps_interactive.pm_.c:1018
-msgid ""
-"Linux does not yet fully support ultra dma 66 HPT.\n"
-"As a work-around i can make a custom floppy giving access the hard drive on "
-"ide2 and ide3"
-msgstr ""
-"Linux non supporta ancora in pieno l'HPT ultra dma 66.\n"
-"Come ripiego posso creare floppy speciali che danno accesso agli hard disk "
-"su ide2 e ide3"
-
-#: ../install_steps_interactive.pm_.c:1039
-msgid ""
-"Enter a floppy to create an HTP enabled boot\n"
-"(all data on floppy will be lost)"
-msgstr ""
-"Inserisci un floppy per creare un boot abilitato HTP\n"
-"(tutti i dati sul floppy saranno persi)"
-
-#: ../install_steps_interactive.pm_.c:1056
-msgid "It is necessary to restart installation booting on the floppy"
-msgstr "E' necessario ricominciare l'installazione partendo dal floppy"
-
-#: ../install_steps_interactive.pm_.c:1057
-msgid "It is necessary to restart installation with the new parameters"
-msgstr "E' necessario ricominciare l'installazione con i nuovi parametri"
-
-#: ../install_steps_interactive.pm_.c:1061
-#, c-format
-msgid ""
-"Failed to create an HTP boot floppy.\n"
-"You may have to restart installation and give ``%s'' at the prompt"
-msgstr ""
-"Errore nel creare un floppy di bot HPT.\n"
-"Potresti dover riavviare l'installazione e dare ''%s'' al prompt"
-
-#: ../install_steps_interactive.pm_.c:1081
+#: ../../install_steps_interactive.pm_.c:1176
#, c-format
msgid "Found %s %s interfaces"
msgstr "Trovate %s interfacce %s"
-#: ../install_steps_interactive.pm_.c:1082
+#: ../../install_steps_interactive.pm_.c:1177
msgid "Do you have another one?"
msgstr "Ne hai un'altra?"
-#: ../install_steps_interactive.pm_.c:1083
+#: ../../install_steps_interactive.pm_.c:1178
#, c-format
-msgid "Do you have any %s interface?"
+msgid "Do you have any %s interfaces?"
msgstr "Hai una qualsiasi interfaccia %s?"
-#: ../install_steps_interactive.pm_.c:1085 ../interactive.pm_.c:79
-#: ../my_gtk.pm_.c:424 ../printerdrake.pm_.c:176
+#: ../../install_steps_interactive.pm_.c:1180 ../../interactive.pm_.c:79
+#: ../../my_gtk.pm_.c:458 ../../printerdrake.pm_.c:124
msgid "No"
msgstr "No"
-#: ../install_steps_interactive.pm_.c:1085 ../interactive.pm_.c:79
-#: ../my_gtk.pm_.c:424
+#: ../../install_steps_interactive.pm_.c:1180 ../../interactive.pm_.c:79
+#: ../../my_gtk.pm_.c:458
msgid "Yes"
msgstr "Sģ"
-#: ../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1181
msgid "See hardware info"
msgstr "Vedi informazioni hardware"
-#: ../install_steps_newt.pm_.c:19
+#: ../../install_steps_interactive.pm_.c:1197
+msgid "Bringing up the network"
+msgstr "Sto attivando la rete"
+
+#: ../../install_steps_interactive.pm_.c:1202
+msgid "Bringing down the network"
+msgstr "Sto disattivando la rete"
+
+#: ../../install_steps_newt.pm_.c:21
#, c-format
msgid "Linux-Mandrake Installation %s"
msgstr "Installazione Linux-Mandrake %s"
-#: ../install_steps_newt.pm_.c:30
+#: ../../install_steps_newt.pm_.c:32
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
" <Tab>/<Alt-Tab> muove il cursore | <Barra> seleziona | <F12> videata succ."
-#: ../interactive.pm_.c:84 ../interactive.pm_.c:163
-#: ../interactive_newt.pm_.c:50 ../interactive_newt.pm_.c:97
-#: ../interactive_stdio.pm_.c:27 ../my_gtk.pm_.c:193 ../my_gtk.pm_.c:425
-msgid "Cancel"
-msgstr "Cancella"
+#: ../../install_steps_newt.pm_.c:43
+#, c-format
+msgid ""
+"You can now partition your %s hard drive\n"
+"When you are done, don't forget to save using `w'"
+msgstr ""
+"Adesso puoi partizionare il tuo disco fisso %s\n"
+"Quando hai finito, non dimenticare di salvare usando 'w'"
-#: ../interactive.pm_.c:181
+#: ../../interactive.pm_.c:244
msgid "Please wait"
msgstr "Attendere prego"
-#: ../interactive_stdio.pm_.c:35
+#: ../../interactive_stdio.pm_.c:35
#, c-format
msgid "Ambiguity (%s), be more precise\n"
msgstr "Ambiguitą (%s), cerca di essere pił preciso\n"
-#: ../interactive_stdio.pm_.c:36 ../interactive_stdio.pm_.c:51
-#: ../interactive_stdio.pm_.c:70
+#: ../../interactive_stdio.pm_.c:36 ../../interactive_stdio.pm_.c:51
+#: ../../interactive_stdio.pm_.c:70
msgid "Bad choice, try again\n"
msgstr "Scelta errata, prova di nuovo\n"
-#: ../interactive_stdio.pm_.c:39
+#: ../../interactive_stdio.pm_.c:39
#, c-format
msgid " ? (default %s) "
msgstr " ? (default %s) "
-#: ../interactive_stdio.pm_.c:52
+#: ../../interactive_stdio.pm_.c:52
#, c-format
msgid "Your choice? (default %s) "
msgstr "La tua scelta? (default %s) "
-#: ../interactive_stdio.pm_.c:71
+#: ../../interactive_stdio.pm_.c:71
#, c-format
msgid "Your choice? (default %s enter `none' for none) "
msgstr "La tua scelta? (default %s inserisci 'nessuna' per nessuna) "
-#: ../keyboard.pm_.c:88
-msgid "Armenian"
-msgstr "Armena"
+#: ../../keyboard.pm_.c:89 ../../keyboard.pm_.c:116
+msgid "Czech"
+msgstr "Ceca"
+
+#: ../../keyboard.pm_.c:90 ../../keyboard.pm_.c:103 ../../keyboard.pm_.c:117
+msgid "German"
+msgstr "Tedesca"
+
+#: ../../keyboard.pm_.c:91 ../../keyboard.pm_.c:120
+msgid "Dvorak"
+msgstr "Dvorak"
+
+#: ../../keyboard.pm_.c:92 ../../keyboard.pm_.c:122
+msgid "Spanish"
+msgstr "Spagnola"
+
+#: ../../keyboard.pm_.c:93 ../../keyboard.pm_.c:123
+msgid "Finnish"
+msgstr "Finlandese"
+
+#: ../../keyboard.pm_.c:94 ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:124
+msgid "French"
+msgstr "Francese"
+
+#: ../../keyboard.pm_.c:95 ../../keyboard.pm_.c:143
+msgid "Norwegian"
+msgstr "Norvegese"
+
+#: ../../keyboard.pm_.c:96
+msgid "Polish"
+msgstr "Polacca"
+
+#: ../../keyboard.pm_.c:97 ../../keyboard.pm_.c:148
+msgid "Russian"
+msgstr "Russa"
+
+#: ../../keyboard.pm_.c:98 ../../keyboard.pm_.c:157
+msgid "UK keyboard"
+msgstr "Tastiera UK"
+
+#: ../../keyboard.pm_.c:99 ../../keyboard.pm_.c:102 ../../keyboard.pm_.c:158
+msgid "US keyboard"
+msgstr "Tastiera US"
+
+#: ../../keyboard.pm_.c:106
+msgid "Armenian (old)"
+msgstr "Armena (vecchia)"
+
+#: ../../keyboard.pm_.c:107
+msgid "Armenian (typewriter)"
+msgstr "Armena (macchina da scrivere)"
+
+#: ../../keyboard.pm_.c:108
+msgid "Armenian (phonetic)"
+msgstr "Armena (fonetica)"
-#: ../keyboard.pm_.c:89
+#: ../../keyboard.pm_.c:111
msgid "Belgian"
msgstr "Belga"
-#: ../keyboard.pm_.c:90
+#: ../../keyboard.pm_.c:112
msgid "Bulgarian"
msgstr "Bulgara"
-#: ../keyboard.pm_.c:91
-msgid "Brazilian"
-msgstr "Brasiliana"
-
-#: ../keyboard.pm_.c:92
-msgid "Swiss (French layout)"
-msgstr "Svizzera (impostazione francese)"
+#: ../../keyboard.pm_.c:113
+msgid "Brazilian (ABNT-2)"
+msgstr "Brasiliana (ABNT-2)"
-#: ../keyboard.pm_.c:93
+#: ../../keyboard.pm_.c:114
msgid "Swiss (German layout)"
msgstr "Svizzera (impostazione tedesca)"
-#: ../keyboard.pm_.c:94
-msgid "Czech"
-msgstr "Ceca"
+#: ../../keyboard.pm_.c:115
+msgid "Swiss (French layout)"
+msgstr "Svizzera (impostazione francese)"
-#: ../keyboard.pm_.c:95
-msgid "German"
-msgstr "Tedesca"
+#: ../../keyboard.pm_.c:118
+msgid "German (no dead keys)"
+msgstr "Tedesca (nessun tasto morto)"
-#: ../keyboard.pm_.c:96
+#: ../../keyboard.pm_.c:119
msgid "Danish"
msgstr "Danese"
-#: ../keyboard.pm_.c:97
-msgid "Dvorak"
-msgstr "Dvorak"
-
-#: ../keyboard.pm_.c:98
+#: ../../keyboard.pm_.c:121
msgid "Estonian"
msgstr "Estone"
-#: ../keyboard.pm_.c:99
-msgid "Spanish"
-msgstr "Spagnola"
-
-#: ../keyboard.pm_.c:100
-msgid "Finnish"
-msgstr "Finlandese"
-
-#: ../keyboard.pm_.c:101
-msgid "French"
-msgstr "Francese"
-
-#: ../keyboard.pm_.c:102
+#: ../../keyboard.pm_.c:125
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgiana (impostazione \"Russa\")"
-#: ../keyboard.pm_.c:103
+#: ../../keyboard.pm_.c:126
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgiana (impostazione \"Latina\")"
-#: ../keyboard.pm_.c:104
+#: ../../keyboard.pm_.c:127
msgid "Greek"
msgstr "Greca"
-#: ../keyboard.pm_.c:105
+#: ../../keyboard.pm_.c:128
msgid "Hungarian"
msgstr "Hungherese"
-#: ../keyboard.pm_.c:106
+#: ../../keyboard.pm_.c:129
+msgid "Croatian"
+msgstr "Croata"
+
+#: ../../keyboard.pm_.c:130
msgid "Israeli"
msgstr "Israeliana"
-#: ../keyboard.pm_.c:107
+#: ../../keyboard.pm_.c:131
msgid "Israeli (Phonetic)"
msgstr "Israeliana (Fonetica)"
-#: ../keyboard.pm_.c:108
+#: ../../keyboard.pm_.c:134
msgid "Icelandic"
msgstr "Islandese"
-#: ../keyboard.pm_.c:109
+#: ../../keyboard.pm_.c:135
msgid "Italian"
msgstr "Italiana"
-#: ../keyboard.pm_.c:110
+#: ../../keyboard.pm_.c:136
msgid "Latin American"
msgstr "Latino Americana"
-#: ../keyboard.pm_.c:111
+#: ../../keyboard.pm_.c:137
msgid "Dutch"
msgstr "Olandese"
-#: ../keyboard.pm_.c:112
-msgid "Lithuanian AZERTY"
-msgstr "Lituana AZERTY"
+#: ../../keyboard.pm_.c:138
+msgid "Lithuanian AZERTY (old)"
+msgstr "Lituana AZERTY (vecchio)"
-#: ../keyboard.pm_.c:113
+#: ../../keyboard.pm_.c:140
+msgid "Lithuanian AZERTY (new)"
+msgstr "Lituana AZERTY (nuovo)"
+
+#: ../../keyboard.pm_.c:141
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituana \"numero riga\" QWERTY"
-#: ../keyboard.pm_.c:114
+#: ../../keyboard.pm_.c:142
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituana \"fonetica\" QWERTY"
-#: ../keyboard.pm_.c:115
-msgid "Norwegian"
-msgstr "Norvegese"
-
-#: ../keyboard.pm_.c:116
-#, fuzzy
+#: ../../keyboard.pm_.c:144
msgid "Polish (qwerty layout)"
-msgstr "Svizzera (impostazione tedesca)"
+msgstr "Polacca (impostazione qwerty)"
-#: ../keyboard.pm_.c:117
-#, fuzzy
+#: ../../keyboard.pm_.c:145
msgid "Polish (qwertz layout)"
-msgstr "Svizzera (impostazione tedesca)"
+msgstr "Polacca (impostazione qwertz)"
-#: ../keyboard.pm_.c:118
+#: ../../keyboard.pm_.c:146
msgid "Portuguese"
msgstr "Portoghese"
-#: ../keyboard.pm_.c:119
+#: ../../keyboard.pm_.c:147
msgid "Canadian (Quebec)"
msgstr "Canadese (Quebec)"
-#: ../keyboard.pm_.c:120
-msgid "Russian"
-msgstr "Russa"
-
-#: ../keyboard.pm_.c:121
+#: ../../keyboard.pm_.c:149
msgid "Russian (Yawerty)"
msgstr "Russa (Yawerty)"
-#: ../keyboard.pm_.c:122
+#: ../../keyboard.pm_.c:150
msgid "Swedish"
msgstr "Svedese"
-#: ../keyboard.pm_.c:123
+#: ../../keyboard.pm_.c:151
msgid "Slovenian"
msgstr "Slovena"
-#: ../keyboard.pm_.c:124
+#: ../../keyboard.pm_.c:152
msgid "Slovakian"
msgstr "Slovacca"
-#: ../keyboard.pm_.c:125
+#: ../../keyboard.pm_.c:153
msgid "Thai keyboard"
msgstr "Tastiera Thai"
-#: ../keyboard.pm_.c:126
+#: ../../keyboard.pm_.c:154
msgid "Turkish (traditional \"F\" model)"
msgstr "Turca (modulo \"F\" tradizionale)"
-#: ../keyboard.pm_.c:127
+#: ../../keyboard.pm_.c:155
msgid "Turkish (modern \"Q\" model)"
msgstr "Turca (modello \"Q\" moderno)"
-#: ../keyboard.pm_.c:128
+#: ../../keyboard.pm_.c:156
msgid "Ukrainian"
msgstr "Ucraina"
-#: ../keyboard.pm_.c:129
-msgid "UK keyboard"
-msgstr "Tastiera UK"
-
-#: ../keyboard.pm_.c:130
-msgid "US keyboard"
-msgstr "Tastiera US"
-
-#: ../keyboard.pm_.c:131
+#: ../../keyboard.pm_.c:159
msgid "US keyboard (international)"
msgstr "Tastiera US (internazionale"
-#: ../keyboard.pm_.c:132
+#: ../../keyboard.pm_.c:160
msgid "Yugoslavian (latin layout)"
msgstr "Yugoslava (impostazione latina)"
-# 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.
-#
-#: ../lilo.pm_.c:145
+#: ../../lilo.pm_.c:176
#, c-format
msgid ""
"Welcome to LILO the operating system chooser!\n"
@@ -3301,135 +3860,210 @@ msgstr ""
"\n"
"Per elencare le scelte possibili, premi <TAB>.\n"
"\n"
-"Per caricarne una, scrivi il suo nome e premi <ENTER> o aspetta %d secondi\n"
+"Per caricarne una, scrivi il suo nome e premi <ENTER> o aspetta %d secondi "
"per il boot di default.\n"
"\n"
-#: ../mouse.pm_.c:20
-msgid "No Mouse"
-msgstr "Nessun Mouse"
+# 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
+# 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
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../lilo.pm_.c:431
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Benvenuto a GRUB il selettore di sistema operativo!"
-#: ../mouse.pm_.c:21
-msgid "Microsoft Rev 2.1A or higher (serial)"
-msgstr "Microsoft Rev. 2.1A o superiore (seriale)"
+#: ../../lilo.pm_.c:432
+#, c-format
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr "Usa i tasti %c e %c per selezionare quale voce č evidenziata."
-#: ../mouse.pm_.c:22
-msgid "Logitech CC Series (serial)"
-msgstr "Logitech serie CC (seriale)"
+#: ../../lilo.pm_.c:433
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr "Premi enter per caricare l'OS scelto, 'e' per modificare i"
-#: ../mouse.pm_.c:23
-msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-msgstr "Logitech MouseMan+/FirstMouse+ (seriale)"
+#: ../../lilo.pm_.c:434
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "comandi prima di avviare, o 'c' per una riga di comando."
-#: ../mouse.pm_.c:24
-msgid "ASCII MieMouse (serial)"
-msgstr "ASCII MieMouse (seriale)"
+#: ../../lilo.pm_.c:435
+#, c-format
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "La voce evidenziata sarą avviata automaticamente fra %d secondi."
-#: ../mouse.pm_.c:25
-msgid "Genius NetMouse (serial)"
-msgstr "Genius NetMouse (seriale)"
+#: ../../lilo.pm_.c:439
+msgid "not enough room in /boot"
+msgstr ""
-#: ../mouse.pm_.c:26
-msgid "Microsoft IntelliMouse (serial)"
-msgstr "Microsoft IntelliMouse (seriale)"
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../lilo.pm_.c:518
+msgid "Desktop"
+msgstr "Scrivania"
-#: ../mouse.pm_.c:27
-msgid "MM Series (serial)"
-msgstr "Serie MM (seriale)"
+#: ../../lilo.pm_.c:518
+msgid "Start Menu"
+msgstr "Menu d'Avvio"
-#: ../mouse.pm_.c:28
-msgid "MM HitTablet (serial)"
-msgstr "MM HitTablet (seriale)"
+#: ../../mouse.pm_.c:21
+msgid "Sun - Mouse"
+msgstr "Sun - Mouse"
-#: ../mouse.pm_.c:29
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Mouse Logitech (seriale, vecchio tipo C7)"
+#: ../../mouse.pm_.c:23
+msgid "Apple ADB Mouse"
+msgstr "Mouse ADB Apple"
-#: ../mouse.pm_.c:30
-msgid "Logitech MouseMan/FirstMouse (serial)"
-msgstr "Logitech MouseMan/FirstMouse (seriale)"
+#: ../../mouse.pm_.c:24
+msgid "Apple ADB Mouse (2 Buttons)"
+msgstr "Mouse ADB Apple (2 Pulsanti)"
-#: ../mouse.pm_.c:31
-msgid "Generic Mouse (serial)"
-msgstr "Mouse Generico (seriale)"
+#: ../../mouse.pm_.c:25
+msgid "Apple ADB Mouse (3+ Buttons)"
+msgstr "Mouse ADB Apple (3 Pulsanti o pił)"
-#: ../mouse.pm_.c:32
-msgid "Microsoft compatible (serial)"
-msgstr "Compatibile Microsoft (seriale)"
+#: ../../mouse.pm_.c:26
+msgid "Apple USB Mouse"
+msgstr "Mouse USB Apple"
-#: ../mouse.pm_.c:33
-msgid "Generic 3 Button Mouse (serial)"
-msgstr "Mouse Generico a 3 pulsanti (seriale)"
+#: ../../mouse.pm_.c:27
+msgid "Apple USB Mouse (2 Buttons)"
+msgstr "Mouse USB Apple (2 Pulsanti)"
-#: ../mouse.pm_.c:34
-msgid "Mouse Systems (serial)"
-msgstr "Mouse Systems (seriale)"
+#: ../../mouse.pm_.c:28
+msgid "Apple USB Mouse (3+ Buttons)"
+msgstr "Mouse USB Apple (3 Pulsanti o pił)"
-#: ../mouse.pm_.c:35
+#: ../../mouse.pm_.c:30
msgid "Generic Mouse (PS/2)"
msgstr "Mouse Generico (PS/2)"
-#: ../mouse.pm_.c:36
+#: ../../mouse.pm_.c:31
msgid "Logitech MouseMan/FirstMouse (ps/2)"
msgstr "Logitech MouseMan/FirstMouse (PS/2)"
-#: ../mouse.pm_.c:37
+#: ../../mouse.pm_.c:32
msgid "Generic 3 Button Mouse (PS/2)"
msgstr "Mouse Generico a 3 Pulsanti (PS/2)"
-#: ../mouse.pm_.c:38
+#: ../../mouse.pm_.c:33
msgid "ALPS GlidePoint (PS/2)"
msgstr "GlidePoint ALPS (PS/2)"
-#: ../mouse.pm_.c:39
+#: ../../mouse.pm_.c:34
msgid "Logitech MouseMan+/FirstMouse+ (PS/2)"
msgstr "Logitech MouseMan+/FirstMouse+ (PS/2)"
-#: ../mouse.pm_.c:40
+#: ../../mouse.pm_.c:35
msgid "Kensington Thinking Mouse (PS/2)"
msgstr "Kensington Thinking Mouse (PS/2)"
-#: ../mouse.pm_.c:41
+#: ../../mouse.pm_.c:36
msgid "ASCII MieMouse (PS/2)"
msgstr "ASCII MieMouse (PS/2)"
-#: ../mouse.pm_.c:42
+#: ../../mouse.pm_.c:37
msgid "Genius NetMouse (PS/2)"
msgstr "Genius NetMouse (PS/2)"
-#: ../mouse.pm_.c:43
+#: ../../mouse.pm_.c:38
msgid "Genius NetMouse Pro (PS/2)"
msgstr "Genius NetMouse Pro (PS/2)"
-#: ../mouse.pm_.c:44
+#: ../../mouse.pm_.c:39
msgid "Genius NetScroll (PS/2)"
msgstr "Genius Netscorll (PS/2)"
-#: ../mouse.pm_.c:45
+#: ../../mouse.pm_.c:40
msgid "Microsoft IntelliMouse (PS/2)"
msgstr "Microsoft IntelliMouse (PS/2)"
-#: ../mouse.pm_.c:46
+#: ../../mouse.pm_.c:41
msgid "ATI Bus Mouse"
msgstr "ATI Mouse Bus)"
-#: ../mouse.pm_.c:47
+#: ../../mouse.pm_.c:42
msgid "Microsoft Bus Mouse"
msgstr "Microsoft Bus Mouse"
-#: ../mouse.pm_.c:48
+#: ../../mouse.pm_.c:43
msgid "Logitech Bus Mouse"
msgstr "Logitech Bus Mouse"
-#: ../mouse.pm_.c:49
+#: ../../mouse.pm_.c:44
msgid "USB Mouse"
msgstr "Mouse USB"
-#: ../mouse.pm_.c:50
+#: ../../mouse.pm_.c:45
msgid "USB Mouse (3 buttons or more)"
msgstr "Mouse USB (3 pulsanti o pił)"
-#: ../partition_table.pm_.c:486
+#: ../../mouse.pm_.c:47
+msgid "No Mouse"
+msgstr "Nessun Mouse"
+
+#: ../../mouse.pm_.c:48
+msgid "Microsoft Rev 2.1A or higher (serial)"
+msgstr "Microsoft Rev. 2.1A o superiore (seriale)"
+
+#: ../../mouse.pm_.c:49
+msgid "Logitech CC Series (serial)"
+msgstr "Logitech serie CC (seriale)"
+
+#: ../../mouse.pm_.c:50
+msgid "Logitech MouseMan+/FirstMouse+ (serial)"
+msgstr "Logitech MouseMan+/FirstMouse+ (seriale)"
+
+#: ../../mouse.pm_.c:51
+msgid "ASCII MieMouse (serial)"
+msgstr "ASCII MieMouse (seriale)"
+
+#: ../../mouse.pm_.c:52
+msgid "Genius NetMouse (serial)"
+msgstr "Genius NetMouse (seriale)"
+
+#: ../../mouse.pm_.c:53
+msgid "Microsoft IntelliMouse (serial)"
+msgstr "Microsoft IntelliMouse (seriale)"
+
+#: ../../mouse.pm_.c:54
+msgid "MM Series (serial)"
+msgstr "Serie MM (seriale)"
+
+#: ../../mouse.pm_.c:55
+msgid "MM HitTablet (serial)"
+msgstr "MM HitTablet (seriale)"
+
+#: ../../mouse.pm_.c:56
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Mouse Logitech (seriale, vecchio tipo C7)"
+
+#: ../../mouse.pm_.c:57
+msgid "Logitech MouseMan/FirstMouse (serial)"
+msgstr "Logitech MouseMan/FirstMouse (seriale)"
+
+#: ../../mouse.pm_.c:58
+msgid "Generic Mouse (serial)"
+msgstr "Mouse Generico (seriale)"
+
+#: ../../mouse.pm_.c:59
+msgid "Microsoft compatible (serial)"
+msgstr "Compatibile Microsoft (seriale)"
+
+#: ../../mouse.pm_.c:60
+msgid "Generic 3 Button Mouse (serial)"
+msgstr "Mouse Generico a 3 pulsanti (seriale)"
+
+#: ../../mouse.pm_.c:61
+msgid "Mouse Systems (serial)"
+msgstr "Mouse Systems (seriale)"
+
+#: ../../my_gtk.pm_.c:459
+msgid "Is this correct?"
+msgstr "E' corretto ?"
+
+#: ../../partition_table.pm_.c:533
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 "
@@ -3439,113 +4073,124 @@ msgstr ""
"L'unica soluzione č di mouvere le tue partizioni primarie per avere il buco "
"vicino alle partizioni estese"
-#: ../partition_table.pm_.c:572
+#: ../../partition_table.pm_.c:621
#, c-format
msgid "Error reading file %s"
msgstr "Errore leggendo il file %s"
-#: ../partition_table.pm_.c:579
+#: ../../partition_table.pm_.c:628
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Ripristino da file %s fallito: %s"
-#: ../partition_table.pm_.c:581
+#: ../../partition_table.pm_.c:630
msgid "Bad backup file"
msgstr "File di backup errato"
-#: ../partition_table.pm_.c:602
+#: ../../partition_table.pm_.c:651
#, c-format
msgid "Error writing to file %s"
msgstr "Errore scrivendo su file %s"
-#: ../placeholder.pm_.c:5
+#: ../../pkgs.pm_.c:20
+msgid "mandatory"
+msgstr "obbligatorio"
+
+#: ../../pkgs.pm_.c:21
+msgid "must have"
+msgstr "da avere"
+
+#: ../../pkgs.pm_.c:22
+msgid "important"
+msgstr "importante"
+
+#: ../../pkgs.pm_.c:24
+msgid "very nice"
+msgstr "molto bello"
+
+#: ../../pkgs.pm_.c:25
+msgid "nice"
+msgstr "bello"
+
+#: ../../pkgs.pm_.c:26 ../../pkgs.pm_.c:27
+msgid "interesting"
+msgstr "interessante"
+
+#: ../../pkgs.pm_.c:28 ../../pkgs.pm_.c:29 ../../pkgs.pm_.c:30
+#: ../../pkgs.pm_.c:31
+msgid "maybe"
+msgstr "forse"
+
+#: ../../pkgs.pm_.c:33
+msgid "i18n (important)"
+msgstr "i18n (importante)"
+
+#: ../../pkgs.pm_.c:34
+msgid "i18n (very nice)"
+msgstr "i18n (molto bello)"
+
+#: ../../pkgs.pm_.c:35
+msgid "i18n (nice)"
+msgstr "i18n (bello)"
+
+#: ../../placeholder.pm_.c:5
msgid "Show less"
msgstr "Mostra meno"
-#: ../placeholder.pm_.c:6
+#: ../../placeholder.pm_.c:6
msgid "Show more"
msgstr "Mostra di pił"
-#: ../printer.pm_.c:244
+#: ../../printer.pm_.c:244
msgid "Local printer"
msgstr "Stampante Locale"
-#: ../printer.pm_.c:245
+#: ../../printer.pm_.c:245
msgid "Remote lpd"
msgstr "Lpd Remoto"
-#: ../printer.pm_.c:246
+#: ../../printer.pm_.c:246
msgid "SMB/Windows 95/98/NT"
msgstr "SMB/Windows95/98/NT"
-#: ../printer.pm_.c:247
+#: ../../printer.pm_.c:247
msgid "NetWare"
msgstr "NetWare"
-#: ../printerdrake.pm_.c:75
-msgid "Local Printer Options"
-msgstr "Opzioni Stampante Locale"
-
-#: ../printerdrake.pm_.c:76
-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?"
-msgstr ""
-"Ogni coda di stampa (a cui sono diretti i jobs di stampa) ha bisogno di\n"
-"un nome (spesso lp) e una directory di spool associata ad esso. Che\n"
-"nome e directory dovrebbero essere usati per questa coda?"
-
-#: ../printerdrake.pm_.c:79
-msgid "Name of queue:"
-msgstr "Nome della coda:"
-
-#: ../printerdrake.pm_.c:79
-msgid "Spool directory:"
-msgstr "Directory di spool:"
-
-#: ../printerdrake.pm_.c:90
-msgid "Select Printer Connection"
-msgstr "Scegli Connessione Stampante"
-
-#: ../printerdrake.pm_.c:91
-msgid "How is the printer connected?"
-msgstr "Com'č collegata la stampante?"
-
-#: ../printerdrake.pm_.c:99
+#: ../../printerdrake.pm_.c:19
msgid "Detecting devices..."
msgstr "Riconoscimento periferiche..."
-#: ../printerdrake.pm_.c:99
+#: ../../printerdrake.pm_.c:19
msgid "Test ports"
msgstr "Test delle porte"
-#: ../printerdrake.pm_.c:112
+#: ../../printerdrake.pm_.c:35
#, c-format
msgid "A printer, model \"%s\", has been detected on "
msgstr "Una stampante, modello \"%s\", č stata trovata su "
-#: ../printerdrake.pm_.c:119
+#: ../../printerdrake.pm_.c:44
msgid "Local Printer Device"
msgstr "Device della Stampante Locale"
-#: ../printerdrake.pm_.c:120
+#: ../../printerdrake.pm_.c:45
msgid ""
-"What device is your printer connected to \n"
+"What device is your printer connected to \n"
"(note that /dev/lp0 is equivalent to LPT1:)?\n"
msgstr ""
-"A quale device č collegata la tua stampante \n"
+"A quale device č collegata la tua stampante \n"
"(nota che /dev/lp0 č equivalente a LPT1:)?\n"
-#: ../printerdrake.pm_.c:121
-msgid "Printer Device:"
-msgstr "Device Stampante:"
+#: ../../printerdrake.pm_.c:47
+msgid "Printer Device"
+msgstr "Device Stampante"
-#: ../printerdrake.pm_.c:125
+#: ../../printerdrake.pm_.c:62
msgid "Remote lpd Printer Options"
msgstr "Opzioni Stampante lpd Remota"
-#: ../printerdrake.pm_.c:126
+#: ../../printerdrake.pm_.c:63
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
@@ -3555,19 +4200,19 @@ msgstr ""
"il nome dell'host del server della stampante e il nome della coda\n"
"su quel server in cui i jobs dovranno essere messi."
-#: ../printerdrake.pm_.c:129
-msgid "Remote hostname:"
+#: ../../printerdrake.pm_.c:66
+msgid "Remote hostname"
msgstr "Nome host remoto:"
-#: ../printerdrake.pm_.c:129
+#: ../../printerdrake.pm_.c:67
msgid "Remote queue"
msgstr "Nome coda remota"
-#: ../printerdrake.pm_.c:134
+#: ../../printerdrake.pm_.c:75
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Opzioni Stampante SMB(Windows9x/NT)"
-#: ../printerdrake.pm_.c:135
+#: ../../printerdrake.pm_.c:76
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (Note! It may be different from its\n"
@@ -3581,35 +4226,27 @@ msgstr ""
"come il nome di condivisione per la stampante cui vuoi accedere e ogni\n"
"nome utente, password, e informazioni sui gruppi di lavoro applicabili."
-#: ../printerdrake.pm_.c:140
-msgid "SMB server IP:"
-msgstr "IP del server SMB:"
-
-#: ../printerdrake.pm_.c:140
-msgid "SMB server host:"
-msgstr "Host del server SMB:"
+#: ../../printerdrake.pm_.c:81
+msgid "SMB server host"
+msgstr "Host del server SMB"
-#: ../printerdrake.pm_.c:141 ../printerdrake.pm_.c:163
-msgid "Password:"
-msgstr "Password:"
+#: ../../printerdrake.pm_.c:82
+msgid "SMB server IP"
+msgstr "IP del server SMB"
-#: ../printerdrake.pm_.c:141
-msgid "Share name:"
-msgstr "Nome di condivisione:"
+#: ../../printerdrake.pm_.c:83
+msgid "Share name"
+msgstr "Nome di condivisione"
-#: ../printerdrake.pm_.c:141 ../printerdrake.pm_.c:163
-msgid "User name:"
-msgstr "Nome utente:"
+#: ../../printerdrake.pm_.c:86
+msgid "Workgroup"
+msgstr "Gruppo di lavoro"
-#: ../printerdrake.pm_.c:142
-msgid "Workgroup:"
-msgstr "Gruppo di lavoro:"
-
-#: ../printerdrake.pm_.c:157
+#: ../../printerdrake.pm_.c:102
msgid "NetWare Printer Options"
msgstr "opzioni Stampante NetWare"
-#: ../printerdrake.pm_.c:158
+#: ../../printerdrake.pm_.c:103
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (Note! it may be different from its\n"
@@ -3621,67 +4258,95 @@ msgstr ""
"del suo host TCP/IP) insieme al nome della coda di stampa per la\n"
"stampante cui vuoi accedere e ogni nome utente e password applicabili."
-#: ../printerdrake.pm_.c:162
-msgid "Print Queue Name:"
-msgstr "Nome della Coda di Stampa:"
+#: ../../printerdrake.pm_.c:107
+msgid "Printer Server"
+msgstr "Server della Stampante"
-#: ../printerdrake.pm_.c:162
-msgid "Printer Server:"
-msgstr "Server della Stampante:"
+#: ../../printerdrake.pm_.c:108
+msgid "Print Queue Name"
+msgstr "Nome della Coda di Stampa"
-#: ../printerdrake.pm_.c:173
+#: ../../printerdrake.pm_.c:121
msgid "Yes, print ASCII test page"
msgstr "Sģ, stampa pagina di prova ASCII"
-#: ../printerdrake.pm_.c:174
+#: ../../printerdrake.pm_.c:122
msgid "Yes, print PostScript test page"
msgstr "Sģ, stampa pagina di prova Postscript"
-#: ../printerdrake.pm_.c:175
+#: ../../printerdrake.pm_.c:123
msgid "Yes, print both test pages"
msgstr "Sģ, stampa entrambe le pagine di prova"
-#: ../printerdrake.pm_.c:183
+#: ../../printerdrake.pm_.c:130
msgid "Configure Printer"
msgstr "Configura Stampante"
-#: ../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:131
msgid "What type of printer do you have?"
msgstr "Che tipo di stampante hai?"
-#: ../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:163
msgid "Printer options"
msgstr "Opzioni Stampante"
-#: ../printerdrake.pm_.c:205
+#: ../../printerdrake.pm_.c:164
msgid "Paper Size"
msgstr "Formato Carta"
-#: ../printerdrake.pm_.c:206
+#: ../../printerdrake.pm_.c:165
msgid "Eject page after job?"
msgstr "Espulsione pagina dopo il job?"
-#: ../printerdrake.pm_.c:209
-msgid "Fix stair-stepping text?"
-msgstr "Correggi lo stair-stepping del testo?"
-
-#: ../printerdrake.pm_.c:212
+#: ../../printerdrake.pm_.c:170
msgid "Uniprint driver options"
msgstr "Opzioni driver Uniprint"
-#: ../printerdrake.pm_.c:213
+#: ../../printerdrake.pm_.c:171
msgid "Color depth options"
msgstr "Opzioni profonditą colore"
-#: ../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:173
+msgid "Print text as PostScript?"
+msgstr "Stampa testo come PostScript?"
+
+#: ../../printerdrake.pm_.c:174
+msgid "Reverse page order"
+msgstr "Ordine pagine inverso"
+
+#: ../../printerdrake.pm_.c:176
+msgid "Fix stair-stepping text?"
+msgstr "Correggi lo stair-stepping del testo?"
+
+#: ../../printerdrake.pm_.c:179
+msgid "Number of pages per output pages"
+msgstr "Numero di pagine per pagine di output"
+
+#: ../../printerdrake.pm_.c:180
+msgid "Right/Left margins in points (1/72 of inch)"
+msgstr "Margine Destro/Sinistro in punti (1/72 di pollice)"
+
+#: ../../printerdrake.pm_.c:181
+msgid "Top/Bottom margins in points (1/72 of inch)"
+msgstr "Margine Superiore/Inferiore in punti (1/72 di pollice)"
+
+#: ../../printerdrake.pm_.c:184
+msgid "Extra GhostScript options"
+msgstr "Opzioni extra GhostScript"
+
+#: ../../printerdrake.pm_.c:187
+msgid "Extra Text options"
+msgstr "Opzioni Testo Extra"
+
+#: ../../printerdrake.pm_.c:198
msgid "Do you want to test printing?"
msgstr "Vuoi provare la stampa?"
-#: ../printerdrake.pm_.c:234
+#: ../../printerdrake.pm_.c:210
msgid "Printing test page(s)..."
msgstr "Stampa della(e) pagina(e) di prova..."
-#: ../printerdrake.pm_.c:252
+#: ../../printerdrake.pm_.c:218
#, c-format
msgid ""
"Test page(s) have been sent to the printer daemon.\n"
@@ -3692,37 +4357,358 @@ msgid ""
"Does it work properly?"
msgstr ""
"La pagina(e) di prova č stata inviata al daemon della stampante.\n"
-"potrebbe occorrere un po' di tempo prima che la stampa inizi.\n"
+"potrebbe occorrere un pņ di tempo prima che la stampa inizi.\n"
"Stato della stampa:\n"
"%s\n"
"\n"
"Funziona correttamente?"
-#: ../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:222
msgid ""
"Test page(s) have been sent to the printer daemon.\n"
"This may take a little time before printer start.\n"
"Does it work properly?"
msgstr ""
"La pagina(e) di prova č stata inviata al daemon della stampante.\n"
-"potrebbe occorrere un po' di tempo prima che la stampa inizi.\n"
+"potrebbe occorrere un pņ di tempo prima che la stampa inizi.\n"
"Funziona correttamente?"
-#: ../raid.pm_.c:36
+#: ../../printerdrake.pm_.c:238
+msgid "Printer"
+msgstr "Stampante"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Would you like to configure a printer?"
+msgstr "Vorresti configurare una stampante?"
+
+#: ../../printerdrake.pm_.c:243
+msgid ""
+"Here are the following print queues.\n"
+"You can add some more or change the existing ones."
+msgstr ""
+"Ci sono le seguenti code di stampa.\n"
+"Puoi aggiungerne altre o cambiare quelle esistenti."
+
+#: ../../printerdrake.pm_.c:266 ../../printerdrake.pm_.c:272
+msgid "Select Printer Connection"
+msgstr "Scegli Connessione Stampante"
+
+#: ../../printerdrake.pm_.c:267
+msgid "How is the printer connected?"
+msgstr "Com'č collegata la stampante?"
+
+#: ../../printerdrake.pm_.c:272
+msgid "Remove queue"
+msgstr "Rimuovi coda"
+
+#: ../../printerdrake.pm_.c:273
+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 ""
+"Ogni coda di stampa (a cui sono diretti i jobs di stampa) ha bisogno di\n"
+"un nome (spesso lp) e una directory di spool associata ad esso. Che\n"
+"nome e directory dovrebbero essere usati per questa coda e come č connessa\n"
+"la stampante?"
+
+#: ../../printerdrake.pm_.c:276
+msgid "Name of queue"
+msgstr "Nome della coda"
+
+#: ../../printerdrake.pm_.c:277
+msgid "Spool directory"
+msgstr "Directory di spool"
+
+#: ../../printerdrake.pm_.c:278
+msgid "Printer Connection"
+msgstr "Connessione Stampante"
+
+#: ../../raid.pm_.c:36
#, c-format
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:106
+#: ../../raid.pm_.c:106
msgid "Can't write file $file"
msgstr "non posso scrivere il file $file"
-#: ../raid.pm_.c:146
+#: ../../raid.pm_.c:131
+msgid "mkraid failed"
+msgstr "mkraid fallito"
+
+#: ../../raid.pm_.c:131
+msgid "mkraid failed (maybe raidtools are missing?)"
+msgstr "mkraid fallito (forse manca raidtools?)"
+
+#: ../../raid.pm_.c:147
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Non ci sono abbastanza partizioni per RAID livello %d\n"
-#: ../standalone/draksec_.c:28
+#: ../../services.pm_.c:14
+msgid "Anacron a periodic command scheduler."
+msgstr "Anacron un gestore di comandi periodici"
+
+#: ../../services.pm_.c:15
+msgid ""
+"apmd is used for monitoring batery status and logging it via syslog.\n"
+"It can also be used for shutting down the machine when the battery is low."
+msgstr ""
+"apmd č usato per monitorare lo stato delle batterie e fare il log tramite\n"
+"syslog. Puņ anche essere usato per spegnere la macchina quando la batteria\n"
+"č a livello basso."
+
+#: ../../services.pm_.c:17
+msgid ""
+"Runs commands scheduled by the at command at the time specified when\n"
+"at was run, and runs batch commands when the load average is low enough."
+msgstr ""
+"Lancia comandi programmati dal comando at al momento specificato quando\n"
+"at č stato lanciato, e lancia comandi batch quando il carico medio č basso\n"
+"abbastanza."
+
+#: ../../services.pm_.c:19
+msgid ""
+"cron is a standard UNIX program that runs user-specified programs\n"
+"at periodic scheduled times. vixie cron adds a number of features to the "
+"basic\n"
+"UNIX cron, including better security and more powerful configuration options."
+msgstr ""
+"cron č un programma UNIX standard che lancia programmi definiti dall'utente\n"
+"a intervalli periodici programmati. vixie cron aggiunge un numero di "
+"funzioni\n"
+"al cron UNIX di base, inclusi maggior sicurezza e opzioni di configurazione "
+"\n"
+"pił potenti."
+
+#: ../../services.pm_.c:22
+msgid ""
+"GPM adds mouse support to text-based Linux applications such the\n"
+"Midnight Commander. It also allows mouse-based console cut-and-paste "
+"operations,\n"
+"and includes support for pop-up menus on the console."
+msgstr ""
+"GPM aggiunge il supporto del mouse a applicazioni linux basate su testo "
+"come\n"
+"Midnight Commander. Permette anche operazioni taglia/incolla via mouse in \n"
+"console e include supporto per menu pop-up in console."
+
+#: ../../services.pm_.c:25
+msgid ""
+"Apache is a World Wide Web server. It is used to serve HTML files\n"
+"and CGI."
+msgstr ""
+"Apache č un server per World Wide Web. E' usato per gestire files HTML\n"
+"e CGI."
+
+#: ../../services.pm_.c:27
+msgid ""
+"The internet superserver daemon (commonly called inetd) starts a\n"
+"variety of other internet services as needed. It is responsible for "
+"starting\n"
+"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
+"disables\n"
+"all of the services it is responsible for."
+msgstr ""
+"Il demone superserver di internet (comunemente chiamato inetd) avvia una\n"
+"varietą di altri servizi internet a richiesta. E' responsabile per l'avvio\n"
+"di molti servizi, inclusi telnet, ftp, rsh, e rlogin. Disabilitando inetd\n"
+"si disabilitano tutti i servizi di cui č responsabile."
+
+#: ../../services.pm_.c:31
+msgid ""
+"This package loads the selected keyboard map as set in\n"
+"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
+"You should leave this enabled for most machines."
+msgstr ""
+"Questo pacchetto carica la mappa di tastiera selezionata come definito in\n"
+"/etc/sysconfig/keyboard. Ciņ puņ essere scelto usando l'utilitą kdbconfig.\n"
+"Dovresti lasciarlo abilitato per la maggior parte delle macchine."
+
+#: ../../services.pm_.c:34
+msgid ""
+"lpd is the print daemon required for lpr to work properly. It is\n"
+"basically a server that arbitrates print jobs to printer(s)."
+msgstr ""
+"lpd č il demone di stampa richiesto perchč lpr funzioni propriamente. E'\n"
+"fondamentalmente un server che distribuisce i jobs di stampa alle stampanti."
+
+#: ../../services.pm_.c:36
+msgid ""
+"named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
+"host names to IP addresses."
+msgstr ""
+"chiamato (BIND) č un Domain Name Server (DNS) che č usato per risolvere\n"
+"nomi host in indirizzi IP."
+
+#: ../../services.pm_.c:38
+msgid ""
+"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
+"Manager/Windows), and NCP (NetWare) mount points."
+msgstr ""
+"Monta e smonta tutti i punti di mount di Network File System (NFS),\n"
+"SMB (Lan Manager/Windows), e NCP (Netware)."
+
+#: ../../services.pm_.c:40
+msgid ""
+"Activates/Deactivates all network interfaces configured to start\n"
+"at boot time."
+msgstr ""
+"Attiva/Disattiva tutte le interfacce di rete configurate per l'avvio\n"
+"al boot."
+
+#: ../../services.pm_.c:42
+msgid ""
+"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
+"This service provides NFS server functionality, which is configured via the\n"
+"/etc/exports file."
+msgstr ""
+"NFS č un popolare protocollo per la condivisione di file attraverso reti\n"
+"TCP/IP. Questo servizio consente funzionalitą di server NFS, che sono\n"
+"configurate tramite il file /etc/exports."
+
+#: ../../services.pm_.c:45
+msgid ""
+"NFS is a popular protocol for file sharing across TCP/IP\n"
+"networks. This service provides NFS file locking functionality."
+msgstr ""
+"NFS č un popolare protocollo per condividere un file attraverso un rete "
+"TCP/IP.\n"
+"Questo servizio consente funzionalitą di blocco di file NFS."
+
+#: ../../services.pm_.c:47
+msgid ""
+"PCMCIA support is usually to support things like ethernet and\n"
+"modems in laptops. It won't get started unless configured so it is safe to "
+"have\n"
+"it installed on machines that don't need it."
+msgstr ""
+"Il supporto PCMCIA č di solito per supportare cose tipo ethernet e\n"
+"modem nei laptops. Non sarą lanciato finchč configurato perciņ č sicuro da\n"
+"avere installato su macchine che non lo richiedono."
+
+#: ../../services.pm_.c:50
+msgid ""
+"The portmapper manages RPC connections, which are used by\n"
+"protocols such as NFS and NIS. The portmap server must be running on "
+"machines\n"
+"which act as servers for protocols which make use of the RPC mechanism."
+msgstr ""
+"Il portmapper gestisce connessioni RPC, che sono usate da protocolli\n"
+"come NFS e NIS. Il server portmap deve stare girando su macchine che\n"
+"sgiscono some servers per protocolli che fanno uso di meccanismi RPC."
+
+#: ../../services.pm_.c:53
+msgid ""
+"Postfix is a Mail Transport Agent, which is the program that\n"
+"moves mail from one machine to another."
+msgstr ""
+"Postfix č un Agente di Trasporto di Posta, che č il programma che\n"
+"sposta messaggi da una macchina ad un'altra."
+
+#: ../../services.pm_.c:55
+msgid ""
+"Saves and restores system entropy pool for higher quality random\n"
+"number generation."
+msgstr ""
+"Salva e ripristina l'entropia del sistema per una generazione di numeri\n"
+"casuali di alta qualitą."
+
+#: ../../services.pm_.c:57
+msgid ""
+"The routed daemon allows for automatic IP router table updated via\n"
+"the RIP protocol. While RIP is widely used on small networks, more complex\n"
+"routing protocols are needed for complex networks."
+msgstr ""
+"Il demone routed permette tabelle di router IP automatiche aggiornate per\n"
+"mezzo del protocollo RIP. Mentre RIP č largamente usato in piccole reti, \n"
+"protocolli di route pił complessi sono necessari per reti pił complesse."
+
+#: ../../services.pm_.c:60
+msgid ""
+"The rstat protocol allows users on a network to retrieve\n"
+"performance metrics for any machine on that network."
+msgstr ""
+"Il protocollo rstat permette agli utenti di una rete di recuperare\n"
+"metriche di prestazione per ogni macchina di quella rete."
+
+#: ../../services.pm_.c:62
+msgid ""
+"The rusers protocol allows users on a network to identify who is\n"
+"logged in on other responding machines."
+msgstr ""
+"Il protocollo rusers permette agli utenti di una rete di identificare\n"
+"chi č connesso su una macchina rispondente."
+
+#: ../../services.pm_.c:64
+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 ""
+"Il protocollo rwho permette a utenti remoti di ottenere una lista di \n"
+"tutti gli utenti connessi ad una macchina su cui gira il demone rwho\n"
+"(similarmente a finger)."
+
+#: ../../services.pm_.c:66
+msgid ""
+"Syslog is the facility by which many daemons use to log messages\n"
+"to various system log files. It is a good idea to always run syslog."
+msgstr ""
+"Syslog č una utilitą che molti demoni usano per aggiungere messaggi\n"
+"in vari file di log di sistema. E' una buona idea lanciare sempre syslog."
+
+#: ../../services.pm_.c:68
+msgid "This startup script try to load your modules for your usb mouse."
+msgstr ""
+"Questo script di avvio provaa caricare i tuoi moduli per il tuo\n"
+"mouse usb."
+
+#: ../../services.pm_.c:69
+msgid "Starts and stops the X Font Server at boot time and shutdown."
+msgstr "Avvia e ferma il Server Font di X al boot e allo spegnimento."
+
+#: ../../services.pm_.c:92
+msgid "Choose which services should be automatically started at boot time"
+msgstr "Scegli quali servizi dovrebbero essere lanciati all'avvio"
+
+#: ../../silo.pm_.c:116
+#, c-format
+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 ""
+"Benvenuto in SILO il selezionatore di sistema operativo!\n"
+"\n"
+"Per elencare le scelte possibili, premi <TAB>.\n"
+"\n"
+"Per caricarne una, scrivi il suo nome e premi <ENTER> o aspetta %d secondi "
+"per il boot di default.\n"
+"\n"
+
+#: ../../standalone/drakboot_.c:23
+msgid "Configure LILO/GRUB"
+msgstr "Configura LILO/GRUB"
+
+#: ../../standalone/drakboot_.c:24
+msgid "Create a boot floppy"
+msgstr "Crea floppy di boot"
+
+#: ../../standalone/drakboot_.c:25
+msgid "Format floppy"
+msgstr "Formatta floppy"
+
+#: ../../standalone/drakboot_.c:36
+msgid "Choice"
+msgstr "Scelta"
+
+#: ../../standalone/draksec_.c:28
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"
@@ -3732,7 +4718,7 @@ msgstr ""
"ma molto delicato: non deve essere usato per una macchina connessa ad altre\n"
"o ad Internet. Non c'č nessun accesso con password."
-#: ../standalone/draksec_.c:31
+#: ../../standalone/draksec_.c:31
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -3740,7 +4726,7 @@ msgstr ""
"Ora le password sono abilitate, ma l'uso come computer di rete e comunque\n"
"ancora sconsigliato."
-#: ../standalone/draksec_.c:32
+#: ../../standalone/draksec_.c:32
msgid ""
"Few improvements for this security level, the main one is that there are\n"
"more security warnings and checks."
@@ -3749,7 +4735,7 @@ msgstr ""
"sono\n"
"pił avvisi e controlli di sicurezza."
-#: ../standalone/draksec_.c:34
+#: ../../standalone/draksec_.c:34
msgid ""
"This is the standard security recommended for a computer that will be used\n"
"to connect to the Internet as a client. There are now security checks. "
@@ -3757,7 +4743,7 @@ msgstr ""
"Questa č la sicurezza standard raccomandata per un computer da usare per\n"
"connettersi ad Internet come client. Ora ci sono controlli di sicurezza."
-#: ../standalone/draksec_.c:36
+#: ../../standalone/draksec_.c:36
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -3769,7 +4755,7 @@ msgstr ""
"possibile. La sicurezza č ora abbastanza alta per consentire l'utilizzo\n"
"del sistema come server che accetta connessioni da molti clients."
-#: ../standalone/draksec_.c:39
+#: ../../standalone/draksec_.c:39
msgid ""
"We take level 4 features, but now the system is entirely closed.\n"
"Security features are at their maximum."
@@ -3778,252 +4764,494 @@ msgstr ""
"completamente\n"
"chiuso. Le funzioni di sicurezza sono al massimo."
-#: ../standalone/draksec_.c:49
+#: ../../standalone/draksec_.c:49
msgid "Setting security level"
msgstr "Sto settando il livello di sicurezza"
-#: ../standalone/drakxconf_.c:21
+#: ../../standalone/drakxconf_.c:21
msgid "Choose the tool you want to use"
msgstr "Scegli l'utilitą che vuoi usare"
-#: ../standalone/drakxservices_.c:21
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Scegli quali servizi dovrebbero essere lanciati all'avvio"
+#: ../../standalone/keyboarddrake_.c:23
+msgid "What is your keyboard layout?"
+msgstr "Che tipo di tastiera usi?"
+
+#: ../../standalone/mousedrake_.c:25
+msgid "What is the type of your mouse?"
+msgstr "Di che tipo č il tuo mouse?"
-#: ../standalone/mousedrake_.c:30
+#: ../../standalone/mousedrake_.c:30
msgid "no serial_usb found\n"
msgstr "nessun serial_usb trovato\n"
-#: ../standalone/mousedrake_.c:35
+#: ../../standalone/mousedrake_.c:35
msgid "Emulate third button?"
msgstr "Emula il terzo pulsante?"
-#: ../standalone/rpmdrake_.c:25
+#: ../../standalone/mousedrake_.c:39
+msgid "Which serial port is your mouse connected to?"
+msgstr "A che porta seriale č connesso il mouse ?"
+
+#: ../../standalone/rpmdrake_.c:25
msgid "reading configuration"
msgstr "lettura configurazione"
-#: ../standalone/rpmdrake_.c:45 ../standalone/rpmdrake_.c:50
-#: ../standalone/rpmdrake_.c:253
+#: ../../standalone/rpmdrake_.c:45 ../../standalone/rpmdrake_.c:50
+#: ../../standalone/rpmdrake_.c:253
msgid "File"
msgstr "File"
-#: ../standalone/rpmdrake_.c:48 ../standalone/rpmdrake_.c:229
-#: ../standalone/rpmdrake_.c:253 ../standalone/rpmdrake_.c:269
+#: ../../standalone/rpmdrake_.c:48 ../../standalone/rpmdrake_.c:229
+#: ../../standalone/rpmdrake_.c:253 ../../standalone/rpmdrake_.c:269
msgid "Search"
msgstr "Cerca"
-#: ../standalone/rpmdrake_.c:49 ../standalone/rpmdrake_.c:56
+#: ../../standalone/rpmdrake_.c:49 ../../standalone/rpmdrake_.c:56
msgid "Package"
msgstr "Pacchetto"
-#: ../standalone/rpmdrake_.c:51
+#: ../../standalone/rpmdrake_.c:51
msgid "Text"
-msgstr "Testo"
+msgstr "Tessto"
-#: ../standalone/rpmdrake_.c:53
+#: ../../standalone/rpmdrake_.c:53
msgid "Tree"
-msgstr "Albero"
+msgstr "Struttura"
-#: ../standalone/rpmdrake_.c:54
+#: ../../standalone/rpmdrake_.c:54
msgid "Sort by"
msgstr "Riordina per"
-#: ../standalone/rpmdrake_.c:55
+#: ../../standalone/rpmdrake_.c:55
msgid "Category"
msgstr "Categoria"
-#: ../standalone/rpmdrake_.c:58
+#: ../../standalone/rpmdrake_.c:58
msgid "See"
-msgstr "Esaminare"
+msgstr "Vedi"
-#: ../standalone/rpmdrake_.c:59 ../standalone/rpmdrake_.c:163
+#: ../../standalone/rpmdrake_.c:59 ../../standalone/rpmdrake_.c:163
msgid "Installed packages"
msgstr "Pacchetti installati"
-#: ../standalone/rpmdrake_.c:60
+#: ../../standalone/rpmdrake_.c:60
msgid "Available packages"
msgstr "Pacchetti disponibili"
-#: ../standalone/rpmdrake_.c:62
+#: ../../standalone/rpmdrake_.c:62
msgid "Show only leaves"
-msgstr "Mostra solo le foglie"
+msgstr "Mostra solo singoli pacchetti"
-#: ../standalone/rpmdrake_.c:67
+#: ../../standalone/rpmdrake_.c:67
msgid "Expand all"
msgstr "Espandi tutto"
-#: ../standalone/rpmdrake_.c:68
+#: ../../standalone/rpmdrake_.c:68
msgid "Collapse all"
-msgstr "Riduci tutto"
+msgstr "Raggruppa tutto"
-#: ../standalone/rpmdrake_.c:70
+#: ../../standalone/rpmdrake_.c:70
msgid "Configuration"
msgstr "Configurazione"
-#: ../standalone/rpmdrake_.c:71
+#: ../../standalone/rpmdrake_.c:71
msgid "Add location of packages"
-msgstr "Aggiungere la sorgente del pacchetto"
+msgstr "Aggiungi posizione dei pacchetti"
-#: ../standalone/rpmdrake_.c:75
+#: ../../standalone/rpmdrake_.c:75
msgid "Update location"
-msgstr "Aggiorna sorgente"
+msgstr "Aggiorna posizione"
-#: ../standalone/rpmdrake_.c:79 ../standalone/rpmdrake_.c:328
+#: ../../standalone/rpmdrake_.c:79 ../../standalone/rpmdrake_.c:328
msgid "Remove"
msgstr "Rimuovi"
-#: ../standalone/rpmdrake_.c:100
+#: ../../standalone/rpmdrake_.c:100
msgid "Configuration: Add Location"
-msgstr "Configurazione: Aggiungere Sorgente"
+msgstr "Configurazione: aggiungi posizione"
-#: ../standalone/rpmdrake_.c:101
-msgid "Expand Tree"
-msgstr "Espandi Albero"
-
-#: ../standalone/rpmdrake_.c:102
-msgid "Collapse Tree"
-msgstr "Riduci Albero"
-
-#: ../standalone/rpmdrake_.c:103
+#: ../../standalone/rpmdrake_.c:103
msgid "Find Package"
-msgstr "Cerca Pacchetto"
+msgstr "trova pacchetto"
-#: ../standalone/rpmdrake_.c:104
+#: ../../standalone/rpmdrake_.c:104
msgid "Find Package containing file"
-msgstr "Trova pacchetto contenente file"
+msgstr "Trova Pacchetto contenente il file"
-#: ../standalone/rpmdrake_.c:105
+#: ../../standalone/rpmdrake_.c:105
msgid "Toggle between Installed and Available"
-msgstr "Cambia tra Installati e Disponibili"
+msgstr "Scegli tra Installato e Disponibile"
-#: ../standalone/rpmdrake_.c:139
+#: ../../standalone/rpmdrake_.c:139
msgid "Files:\n"
msgstr "File:\n"
-#: ../standalone/rpmdrake_.c:161 ../standalone/rpmdrake_.c:209
+#: ../../standalone/rpmdrake_.c:161 ../../standalone/rpmdrake_.c:209
msgid "Uninstall"
msgstr "Disinstalla"
-#: ../standalone/rpmdrake_.c:163
+#: ../../standalone/rpmdrake_.c:163
msgid "Choose package to install"
-msgstr "Scegli i pacchetti da installare"
+msgstr "Scegli pacchetti da installare"
-#: ../standalone/rpmdrake_.c:190
+#: ../../standalone/rpmdrake_.c:190
msgid "Checking dependencies"
-msgstr "Verifica dipendenze"
+msgstr "Controllo dipendenze"
-#: ../standalone/rpmdrake_.c:190 ../standalone/rpmdrake_.c:409
+#: ../../standalone/rpmdrake_.c:190 ../../standalone/rpmdrake_.c:409
msgid "Wait"
-msgstr "Attendere"
+msgstr "Attendi"
-#: ../standalone/rpmdrake_.c:209
+#: ../../standalone/rpmdrake_.c:209
msgid "The following packages are going to be uninstalled"
-msgstr "I seguenti pacchetti saranno deinstallati"
+msgstr "I seguenti pacchetti saranno disinstallati"
-#: ../standalone/rpmdrake_.c:210
+#: ../../standalone/rpmdrake_.c:210
msgid "Uninstalling the RPMs"
-msgstr "Deinstallazione delle RPM"
+msgstr "Disintallazione degli RPMs"
-#: ../standalone/rpmdrake_.c:229 ../standalone/rpmdrake_.c:269
+#: ../../standalone/rpmdrake_.c:229 ../../standalone/rpmdrake_.c:269
msgid "Regexp"
msgstr "Regexp"
-#: ../standalone/rpmdrake_.c:229
+#: ../../standalone/rpmdrake_.c:229
msgid "Which package are looking for"
-msgstr "Quali pacchetto stai cercando"
+msgstr "Quali pacchetti richiedono"
-#: ../standalone/rpmdrake_.c:238 ../standalone/rpmdrake_.c:262
-#: ../standalone/rpmdrake_.c:278
+#: ../../standalone/rpmdrake_.c:238 ../../standalone/rpmdrake_.c:262
+#: ../../standalone/rpmdrake_.c:278
#, c-format
msgid "%s not found"
msgstr "%s non trovato"
-#: ../standalone/rpmdrake_.c:238 ../standalone/rpmdrake_.c:262
-#: ../standalone/rpmdrake_.c:278
+#: ../../standalone/rpmdrake_.c:238 ../../standalone/rpmdrake_.c:262
+#: ../../standalone/rpmdrake_.c:278
msgid "No match"
-msgstr "Nessuna corrispodenza"
+msgstr "Nessuna corrispondenza"
-#: ../standalone/rpmdrake_.c:238 ../standalone/rpmdrake_.c:262
-#: ../standalone/rpmdrake_.c:278
+#: ../../standalone/rpmdrake_.c:238 ../../standalone/rpmdrake_.c:262
+#: ../../standalone/rpmdrake_.c:278
msgid "No more match"
-msgstr "Nessuna altra corrispondenza"
+msgstr "Nessun'altra corrispondenza"
-#: ../standalone/rpmdrake_.c:246
+#: ../../standalone/rpmdrake_.c:246
msgid ""
"rpmdrake is currently in ``low memory'' mode.\n"
"I'm going to relaunch rpmdrake to allow searching files"
msgstr ""
-"rpmdrake é correntemente in modo ``low-memory''.\n"
-"Rilancio rpmdrake per poter cercare file."
+"rpmdrake č attualmente in modo ''poca memoria''.\n"
+"Sto per rilanciare rpmdrake per permettere la ricerca dei files"
-#: ../standalone/rpmdrake_.c:253
-msgid "Which file are you looking for"
-msgstr "Che file stai cercando"
+#: ../../standalone/rpmdrake_.c:253
+msgid "Which file are you looking for?"
+msgstr "Quale file stai cercando?"
-#: ../standalone/rpmdrake_.c:269
-msgid "What are looking for"
-msgstr "Cosa stai cercando"
+#: ../../standalone/rpmdrake_.c:269
+msgid "What are looking for?"
+msgstr "Cosa stai cercando?"
-#: ../standalone/rpmdrake_.c:289
+#: ../../standalone/rpmdrake_.c:289
msgid "Give a name (eg: `extra', `commercial')"
-msgstr "Scegli un nome (per esempio: `extra', `commercial')"
+msgstr "Dai un nome (es. 'extra', 'commerciale')"
-#: ../standalone/rpmdrake_.c:291
+#: ../../standalone/rpmdrake_.c:291
msgid "Directory"
msgstr "Directory"
-#: ../standalone/rpmdrake_.c:294
+#: ../../standalone/rpmdrake_.c:294
msgid "No cdrom available (nothing in /mnt/cdrom)"
-msgstr "Nessun cdrom é disponibile (nulla in /mnt/cdrom)"
+msgstr "Nessun cdrom disponibile (niente in /mnt/cdrom)"
-#: ../standalone/rpmdrake_.c:298
+#: ../../standalone/rpmdrake_.c:298
msgid "URL of the directory containing the RPMs"
-msgstr "URL della directory contenente le RPM"
+msgstr "URL della directory contenente gli RPMs"
-#: ../standalone/rpmdrake_.c:299
+#: ../../standalone/rpmdrake_.c:299
msgid ""
"For FTP and HTTP, you need to give the location for hdlist\n"
"It must be relative to the URL above"
msgstr ""
-"Per FTP e HTTP, devi date la sorgente per hdlist\n"
-"che deve essere relativa alla precedente URL"
+"Per FTP e HTTP, hai bisogno di inserire la locazione per hdlist\n"
+"Deve essere relativa all'URL indicato sopra"
-#: ../standalone/rpmdrake_.c:302
+#: ../../standalone/rpmdrake_.c:302
msgid "Please submit the following information"
-msgstr "Completare le informazioni seguente"
+msgstr "Per favore inserisci le seguenti informazioni"
-#: ../standalone/rpmdrake_.c:304
+#: ../../standalone/rpmdrake_.c:304
#, c-format
msgid "%s is already in use"
msgstr "%s č gią in uso"
-#: ../standalone/rpmdrake_.c:315 ../standalone/rpmdrake_.c:321
-#: ../standalone/rpmdrake_.c:329
+#: ../../standalone/rpmdrake_.c:315 ../../standalone/rpmdrake_.c:321
+#: ../../standalone/rpmdrake_.c:329
msgid "Updating the RPMs base"
-msgstr "Aggiornamento della base di dati RPM"
+msgstr "Aggiornamento dell'archivio degli RPMs"
-#: ../standalone/rpmdrake_.c:328
+#: ../../standalone/rpmdrake_.c:328
#, c-format
msgid "Going to remove entry %s"
-msgstr "Rimozione voce %s"
+msgstr "Sto per rimuovere la voce %s"
-#: ../standalone/rpmdrake_.c:360
+#: ../../standalone/rpmdrake_.c:360
msgid "Finding leaves"
-msgstr "Ricerca delle foglie"
+msgstr "Ricerca dei singoli pacchetti"
-#: ../standalone/rpmdrake_.c:360
+#: ../../standalone/rpmdrake_.c:360
msgid "Finding leaves takes some time"
-msgstr "La ricerca delle foglie prende un po' di tempo"
+msgstr "La ricerca dei singoli pacchetti richiede un pņ di tempo"
-#~ msgid "Polish"
-#~ msgstr "Polacca"
+#~ msgid "useless"
+#~ msgstr "inutile"
-#~ msgid "Too many packages chosen: %dMB doesn't fit in %dMB"
-#~ msgstr "Troppi pacchetti selezionati: %dMB non entrano in %dMB"
+#~ msgid "garbage"
+#~ msgstr "spazzatura"
-#~ msgid "Going to install %d MB. You can choose to install more programs"
+#~ 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 ""
-#~ "Sto per installare %d MB. Puoi scegliere se installare pił programmi"
+#~ "Alcuni fonts true type di windows sono stati rilevati sul tuo computer.\n"
+#~ "Vuoi usarli? Assicurati di avere il diritto di usarli sotto Linux."
+
+#~ msgid "Recommended"
+#~ msgstr "Raccomandata"
+
+#~ 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 ""
+#~ "Scegli \"Installa\" se non hai una precedente versione di Linux\n"
+#~ "installata, o se vuoi utilizzare ditribuzioni o versioni multiple.\n"
+#~ "\n"
+#~ "\n"
+#~ "Scegli \"Aggiorna\" se vuoi aggiornare una precedente versione di\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 "Do you want to use LILO?"
+#~ msgstr "Vuoi usare 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 ""
+#~ "Ora puoi scegliere i pacchetti che vuoi installare.\n"
+#~ "\n"
+#~ "\n"
+#~ "Prima puoi selezionare gruppi di pacchetti da installare o aggiornare.\n"
+#~ "Dopo di ciņ puoi scegliere altri pacchetti in accordo con la dimensione\n"
+#~ "totale che desideri selezionare\n"
+#~ "\n"
+#~ "\n"
+#~ "Se sei in modo Esperto, puoi selezionare i pacchetti individualmente.\n"
+#~ "Per favore nota che alcuni pacchetti richiedono l'installazione di \n"
+#~ "altri. Sono le dipendenze dei pacchetti. I pacchetti che selezioni,\n"
+#~ "e i pacchetti che essi richiedono saranno automaticamente selezionati\n"
+#~ "per l'installazione. E' impossibile installare un pacchetto senza tutte\n"
+#~ "le sue dipendenze."
+
+#~ 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 (il Linux LOader) puņ caricare Linux e altri sistemi operativi.\n"
+#~ "Normalmente sono riconosciuti correttamente durante l'installazione.\n"
+#~ "Se non vedessi riconosciuti i tuoi, puoi aggiungerne uno o pił adesso.\n"
+#~ "\n"
+#~ "\n"
+#~ "Se non vuoi che chiunque possa accedere ad uno di essi, puoi rimuoverlo ora\n"
+#~ "(sarą necessario un disco di boot per caricarlo)."
+
+#~ 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 ""
+#~ "Ora che hai scelto i gruppi desiderati, per favore scegli \n"
+#~ "quanti pacchetti vuoi, precisando da installazione minima a \n"
+#~ "completa per ogni gruppo selezionato."
+
+#~ 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 ""
+#~ "Hai bisogno di %dMB per un'installazione completa dei gruppi selezionati.\n"
+#~ "Puoi proseguire ugualmente, ma non avrai tutti i pacchetti"
+
+#~ msgid "Choose other CD to install"
+#~ msgstr "Scegli altro CD da installare"
+
+#~ 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 ""
+#~ "Seleziona:\n"
+#~ "\n"
+#~ "\n"
+#~ " - Raccomandata: se non hai mai installato Linux prima\n"
+#~ "\n"
+#~ "\n"
+#~ " - Personalizzata: sei hai familiaritą con Linux, sarai in grado di \n"
+#~ "scegliere l'utilizzo del sistema instalato tra normale, sviluppo o\n"
+#~ "server. Scegli \"Normale\" per una installazione per uso generico del tuo\n"
+#~ "computer. Dovresti scegliere \"Sviluppo\" se userai il computer soprattutto\n"
+#~ "per sviluppare software, o scegliere \"Server\" se desideri installare un\n"
+#~ "server per uso generico (per posta, stampa...).\n"
+#~ "\n"
+#~ "\n"
+#~ " - Esperto: Se conosci bene GNU/Linux e vuoi effettuare una installazione\n"
+#~ "altamente personalizzata, questa Classe d'Installazione č per te. Sarai in\n"
+#~ "grado di scegliere l'utilizzo del tuo sistema installato come per \n"
+#~ "\"Personalizzata\"."
+
+#~ msgid "Help"
+#~ msgstr "Aiuto"
+
+#~ msgid "Downloading cryptographic packages"
+#~ msgstr "Scaricamento pacchetti crittografici"
+
+#~ msgid "Setup SCSI"
+#~ msgstr "Configura SCSI"
+
+#~ msgid "Which language do you want?"
+#~ msgstr "Che linguaggio vuoi?"
+
+#~ msgid "Which packages do you want to install"
+#~ msgstr "Quali pacchetti vuoi installare"
+
+#~ msgid "Local LAN"
+#~ msgstr "LAN locale"
+
+#~ msgid "Dialup with modem"
+#~ msgstr "Connessione con modem"
+
+# c-format
+#~ msgid "Bad kickstart file %s (failed %s)"
+#~ msgstr "Ripristino da file %s (fallito %s)"
+
+#~ msgid "formatting"
+#~ msgstr "formattazione"
+
+#~ msgid "changing type of"
+#~ msgstr "cambio del tipo di"
+
+#~ msgid "Size: %s MB"
+#~ msgstr "Dimensione: %s MB"
+
+#~ msgid "After %s partition %s,"
+#~ msgstr "Dopo %s partizionare %s,"
#~ msgid "Enter a floppy (all data will be lost)"
#~ msgstr "Inserisci un floppy (tutti i dati verranno persi)"
+
+#~ msgid "Going to install %d MB. You can choose to install more programs"
+#~ msgstr ""
+#~ "Sto per installare %d MB. Puoi scegliere se installare pił programmi"
+
+#~ msgid "Too many packages chosen: %dMB doesn't fit in %dMB"
+#~ msgstr "Troppi pacchetti selezionati: %dMB non entrano in %dMB"
+
+#~ msgid "linear"
+#~ msgstr "lineare"
+
+#~ msgid "Linear (needed for some SCSI drives)"
+#~ msgstr "Lineare (necessario per alcuni dischi SCSI)"
+
+#~ msgid "beginner"
+#~ msgstr "principiante"
+
+#~ msgid "developer"
+#~ msgstr "sviluppatore"
+
+#~ msgid "expert"
+#~ msgstr "esperto"
+
+#~ msgid "server"
+#~ msgstr "server"
+
+#~ msgid "Local Printer Options"
+#~ msgstr "Opzioni Stampante Locale"
+
+#~ msgid "Password:"
+#~ msgstr "Password:"
+
+#~ msgid "User name:"
+#~ msgstr "Nome utente:"
+
+#~ msgid ""
+#~ "Failed to create an HTP boot floppy.\n"
+#~ "You may have to restart installation and give ``%s'' at the prompt"
+#~ msgstr ""
+#~ "Errore nel creare un floppy di bot HPT.\n"
+#~ "Potresti dover riavviare l'installazione e dare ''%s'' al prompt"
+
+#~ msgid "It is necessary to restart installation with the new parameters"
+#~ msgstr "E' necessario ricominciare l'installazione con i nuovi parametri"
+
+#~ msgid "It is necessary to restart installation booting on the floppy"
+#~ msgstr "E' necessario ricominciare l'installazione partendo dal floppy"
+
+#~ msgid ""
+#~ "Enter a floppy to create an HTP enabled boot\n"
+#~ "(all data on floppy will be lost)"
+#~ msgstr ""
+#~ "Inserisci un floppy per creare un boot abilitato HTP\n"
+#~ "(tutti i dati sul floppy saranno persi)"
+
+#~ 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 ""
+#~ "Linux non supporta ancora in pieno l'HPT ultra dma 66.\n"
+#~ "Come ripiego posso creare floppy speciali che danno accesso agli hard disk "
+#~ "su ide2 e ide3"
+
+#~ msgid "A entry %s already exists"
+#~ msgstr "Una voce %s esiste gią"
+
+#~ msgid "Choose install or upgrade"
+#~ msgstr "Scegli installa o aggiorna"
+
+#~ msgid "What usage do you want?"
+#~ msgstr "Che linguaggio vuoi?"
diff --git a/perl-install/share/po/ja.po b/perl-install/share/po/ja.po
index a8fe3c589..9d240d05d 100644
--- a/perl-install/share/po/ja.po
+++ b/perl-install/share/po/ja.po
@@ -1,52 +1,56 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (c) 1999 MandrakeSoft
-# m5021110@u-aizu.ac.jp (Junichi Kimura), 1999-2000
+# Junichi Kimura <jun@kde.gr.jp>, 1999-2000
# YAMAGATA Hiroo <hiyori13@alum.mit.edu>, 1999-2000
#
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2000-01-09 21:03+0100\n"
+"POT-Creation-Date: 2000-05-11 22:37+0200\n"
"PO-Revision-Date: 1999-12-10 16:27+0100\n"
-"Last-Translator: Junichi Kimura <m5021110@u-aizu.ac.jp>\n"
+"Last-Translator: Junichi Kimura <jun@kde.gr.jp>\n"
"Language-Team: Japanese\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=euc-jp\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../Xconfigurator.pm_.c:159
+#: ../../Xconfigurator.pm_.c:116 ../../Xconfigurator.pm_.c:228
+msgid "Generic"
+msgstr "ČĘĶŃ"
+
+#: ../../Xconfigurator.pm_.c:165
msgid "Graphic card"
msgstr "„°„é„Õ„£„Ć„Æ„«”¼„É"
-#: ../Xconfigurator.pm_.c:159
+#: ../../Xconfigurator.pm_.c:165
msgid "Select a graphic card"
msgstr "„°„é„Õ„£„Ć„Æ„«”¼„ɤņĮŖĀņ¤·¤Ę²¼¤µ¤¤"
-#: ../Xconfigurator.pm_.c:160
+#: ../../Xconfigurator.pm_.c:166
msgid "Choose a X server"
msgstr "X „µ”¼„Š¤ņĮŖ¤ó¤Ē²¼¤µ¤¤"
-#: ../Xconfigurator.pm_.c:160
+#: ../../Xconfigurator.pm_.c:166
msgid "X server"
msgstr "X „µ”¼„Š"
-#: ../Xconfigurator.pm_.c:181
+#: ../../Xconfigurator.pm_.c:190
msgid "Select the memory size of your graphic card"
msgstr "„°„é„Õ„£„Ć„Æ„«”¼„ɤĪ„į„ā„ź„µ„¤„ŗ¤ņĮŖĀņ¤·¤Ę²¼¤µ¤¤"
-#: ../Xconfigurator.pm_.c:203
+#: ../../Xconfigurator.pm_.c:217
msgid "Choose options for server"
msgstr "„µ”¼„Š¤Ī„Ŗ„ׄ·„ē„ó¤ņĮŖ¤ó¤Ē²¼¤µ¤¤"
-#: ../Xconfigurator.pm_.c:221
+#: ../../Xconfigurator.pm_.c:228
msgid "Choose a monitor"
msgstr "„ā„Ė„æ¤ņĮŖ¤ó¤Ē²¼¤µ¤¤"
-#: ../Xconfigurator.pm_.c:221
+#: ../../Xconfigurator.pm_.c:228
msgid "Monitor"
msgstr "„ā„Ė„æ"
-#: ../Xconfigurator.pm_.c:224
+#: ../../Xconfigurator.pm_.c:231
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -67,68 +71,68 @@ msgstr ""
"„ā„Ė„椬„Ą„į”¼„ø¤ņ¼õ¤±¤ė¤«¤āĆĪ¤ģ¤Ž¤»¤ó”£\n"
"Ź¬¤«¤é¤Ź¤¤¾ģ¹ē¤Ļ, Äć¤į¤ĪĄßÄź¤Ė¤·¤Ę²¼¤µ¤¤”£"
-#: ../Xconfigurator.pm_.c:231
+#: ../../Xconfigurator.pm_.c:238
msgid "Horizontal refresh rate"
msgstr "æåŹæ„ź„Õ„ģ„Ć„·„å„ģ”¼„Č"
-#: ../Xconfigurator.pm_.c:231
+#: ../../Xconfigurator.pm_.c:238
msgid "Vertical refresh rate"
msgstr "æāľ„ź„Õ„ģ„Ć„·„å„ģ”¼„Č"
-#: ../Xconfigurator.pm_.c:272
+#: ../../Xconfigurator.pm_.c:277
msgid "Monitor not configured"
msgstr "„ā„Ė„椬ĄßÄź¤µ¤ģ¤Ę¤Ž¤»¤ó"
-#: ../Xconfigurator.pm_.c:275
+#: ../../Xconfigurator.pm_.c:280
msgid "Graphic card not configured yet"
msgstr "„°„é„Õ„£„Ć„Æ„«”¼„ɤ¬ĄßÄź¤µ¤ģ¤Ę¤Ž¤»¤ó"
-#: ../Xconfigurator.pm_.c:278
+#: ../../Xconfigurator.pm_.c:283
msgid "Resolutions not chosen yet"
msgstr "²ņĮüÅŁ¤¬ĮŖĀņ¤µ¤ģ¤Ę¤Ž¤»¤ó"
-#: ../Xconfigurator.pm_.c:289
+#: ../../Xconfigurator.pm_.c:296
msgid "Do you want to test the configuration?"
msgstr "¤³¤ĪĄßÄź¤Ē»ī¤·¤Ę¤ß¤Ž¤¹¤«”©"
-#: ../Xconfigurator.pm_.c:293
+#: ../../Xconfigurator.pm_.c:300
msgid "Warning: testing is dangerous on this graphic card"
msgstr "·Ł¹š”§¤³¤Ī„°„é„Õ„£„Ć„Æ„«”¼„ɤĒ„Ę„¹„ȤĻ“ķø±¤Ē¤¹"
-#: ../Xconfigurator.pm_.c:296
-msgid "Test configuration"
+#: ../../Xconfigurator.pm_.c:303
+msgid "Test of the configuration"
msgstr "ĄßÄź¤ņ»ī¤·¤Ž¤¹"
-#: ../Xconfigurator.pm_.c:334
-msgid "An error occurred:"
-msgstr "„؄锼ČÆĄø"
-
-#: ../Xconfigurator.pm_.c:336
+#: ../../Xconfigurator.pm_.c:342
msgid ""
"\n"
-"try changing some parameters"
+"try to change some parameters"
msgstr ""
"\n"
"¤¤¤Æ¤Ä¤«„Ń„é„į”¼„æ¤ņŹŃ¤Ø¤Ę¤ß¤Ę¤Æ¤Ą¤µ¤¤"
-#: ../Xconfigurator.pm_.c:358
+#: ../../Xconfigurator.pm_.c:342
+msgid "An error has occurred:"
+msgstr "„؄锼ČÆĄø"
+
+#: ../../Xconfigurator.pm_.c:365
#, c-format
-msgid "(leaving in %d seconds)"
-msgstr "(¤¢¤Č %d ÉƤĒĢį¤ź¤Ž¤¹)"
+msgid "Leaving in %d seconds"
+msgstr "¤¢¤Č %d ÉƤĒĢį¤ź¤Ž¤¹"
-#: ../Xconfigurator.pm_.c:362 ../my_gtk.pm_.c:425
-msgid "Is this correct?"
-msgstr "Ąµ¤·¤Æɽ¼Ø½ŠĶ褎¤·¤æ¤«”©"
+#: ../../Xconfigurator.pm_.c:369
+msgid "Is this the correct setting?"
+msgstr "ĄßÄź¤Ļ¤³¤ģ¤Ē¤¤¤¤¤Ē¤¹¤«”©"
-#: ../Xconfigurator.pm_.c:370
-msgid "An error occurred, try changing some parameters"
+#: ../../Xconfigurator.pm_.c:377
+msgid "An error has occurred, try to change some parameters"
msgstr "„؄锼ČÆĄø”¤¤¤¤Æ¤Ä¤«¤Ī„Ń„é„į”¼„æ¤ņŹŃ¤Ø¤Ę¤ß¤Ę¤Æ¤Ą¤µ¤¤"
-#: ../Xconfigurator.pm_.c:378 ../Xconfigurator.pm_.c:547
+#: ../../Xconfigurator.pm_.c:385 ../../Xconfigurator.pm_.c:558
msgid "Automatic resolutions"
msgstr "²ņĮüÅŁ¤Ī¼«Ę°ĄßÄź"
-#: ../Xconfigurator.pm_.c:379
+#: ../../Xconfigurator.pm_.c:386
msgid ""
"To find the available resolutions I will try different ones.\n"
"Your screen will blink...\n"
@@ -139,23 +143,33 @@ msgstr ""
"¤¤¤ä¤Ź¤é„ā„Ė„æ¤Ī„¹„¤„Ć„Į¤ņĄŚ¤Ć¤Ę¤ā¤Ą¤¤¤ø¤ē¤¦¤Ö”£½Ŗ¤ļ¤Ć¤æ¤é beep ²»\n"
"¤ĒĆĪ¤é¤»¤Ž¤¹”£"
-#: ../Xconfigurator.pm_.c:434 ../printerdrake.pm_.c:208
+#: ../../Xconfigurator.pm_.c:441 ../../printerdrake.pm_.c:167
msgid "Resolution"
msgstr "²ņĮüÅŁ"
-#: ../Xconfigurator.pm_.c:469
-msgid "Choose resolution and color depth"
+#: ../../Xconfigurator.pm_.c:476
+msgid "Choose the resolution and the color depth"
msgstr "²ņĮüÅŁ¤Čæ§æ¼ÅŁ"
-#: ../Xconfigurator.pm_.c:477
+#: ../../Xconfigurator.pm_.c:478
+#, c-format
+msgid "Graphic card: %s"
+msgstr "„°„é„Õ„£„Ć„Æ„«”¼„É: %s"
+
+#: ../../Xconfigurator.pm_.c:479
+#, c-format
+msgid "XFree86 server: %s"
+msgstr "XFree86 „µ”¼„Š: %s"
+
+#: ../../Xconfigurator.pm_.c:488
msgid "Show all"
msgstr "Į“¤Ę¤ņɽ¼Ø"
-#: ../Xconfigurator.pm_.c:501
+#: ../../Xconfigurator.pm_.c:512
msgid "Resolutions"
msgstr "²ņĮüÅŁ"
-#: ../Xconfigurator.pm_.c:548
+#: ../../Xconfigurator.pm_.c:559
msgid ""
"I can try to find the available resolutions (eg: 800x600).\n"
"Sometimes, though, it may hang the machine.\n"
@@ -165,7 +179,7 @@ msgstr ""
"¤¬”¢¤³¤ģ¤Ē„Ž„·„󤬻ߤŽ¤Ć¤Ę¤·¤Ž¤¦¤«¤ā¤·¤ģ¤Ž¤»¤ó”£\n"
"Ƶ¤·¤Ę¤ß¤Ž¤·¤ē¤¦¤«”©"
-#: ../Xconfigurator.pm_.c:553
+#: ../../Xconfigurator.pm_.c:564
msgid ""
"No valid modes found\n"
"Try with another video card or monitor"
@@ -173,109 +187,109 @@ msgstr ""
"Ķ­øś¤Ź„ā”¼„ɤ¬ø«ÉÕ¤«¤ź¤Ž¤»¤ó\n"
"Ā¾¤Ī„Ó„Ē„Ŗ„«”¼„É/„ā„Ė„æ¤Ē»ī¤·¤Ę²¼¤µ¤¤”£"
-#: ../Xconfigurator.pm_.c:772
+#: ../../Xconfigurator.pm_.c:904
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "„­”¼„Ü”¼„É„ģ„¤„¢„¦„Č: %s\n"
-#: ../Xconfigurator.pm_.c:773
+#: ../../Xconfigurator.pm_.c:905
#, c-format
msgid "Mouse type: %s\n"
msgstr "„Ž„¦„¹¤Ī¼ļĪą: %s\n"
-#: ../Xconfigurator.pm_.c:774
+#: ../../Xconfigurator.pm_.c:906
#, c-format
msgid "Mouse device: %s\n"
msgstr "„Ž„¦„¹„Ē„Š„¤„¹: %s\n"
-#: ../Xconfigurator.pm_.c:775
+#: ../../Xconfigurator.pm_.c:907
#, c-format
msgid "Monitor: %s\n"
msgstr "„ā„Ė„æ: %s\n"
-#: ../Xconfigurator.pm_.c:776
+#: ../../Xconfigurator.pm_.c:908
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "„ā„Ė„ææåŹæʱ“ü: %s\n"
-#: ../Xconfigurator.pm_.c:777
+#: ../../Xconfigurator.pm_.c:909
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "„ā„Ė„ææāľ„ź„Õ„ģ„Ć„·„å: %s\n"
-#: ../Xconfigurator.pm_.c:778
+#: ../../Xconfigurator.pm_.c:910
#, c-format
msgid "Graphic card: %s\n"
msgstr "„°„é„Õ„£„Ć„Æ„«”¼„É: %s\n"
-#: ../Xconfigurator.pm_.c:779
+#: ../../Xconfigurator.pm_.c:911
#, c-format
msgid "Graphic memory: %s kB\n"
msgstr "„°„é„Õ„£„Ć„Æ„į„ā„ź: %s kB\n"
-#: ../Xconfigurator.pm_.c:780
+#: ../../Xconfigurator.pm_.c:912
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 „µ”¼„Š: %s\n"
-#: ../Xconfigurator.pm_.c:794
+#: ../../Xconfigurator.pm_.c:927
msgid "Preparing X-Window configuration"
msgstr "X Window System ¤ĪĄßÄź¤Ī½ąČ÷"
-#: ../Xconfigurator.pm_.c:808
+#: ../../Xconfigurator.pm_.c:941
msgid "Change Monitor"
msgstr "„ā„Ė„æ¤ĪŹŃ¹¹"
-#: ../Xconfigurator.pm_.c:809
+#: ../../Xconfigurator.pm_.c:942
msgid "Change Graphic card"
msgstr "„°„é„Õ„£„Ć„Æ„«”¼„ɤĪŹŃ¹¹"
-#: ../Xconfigurator.pm_.c:810
+#: ../../Xconfigurator.pm_.c:943
msgid "Change Server options"
msgstr "„µ”¼„Š„Ŗ„ׄ·„ē„ó¤ĪŹŃ¹¹"
-#: ../Xconfigurator.pm_.c:811
+#: ../../Xconfigurator.pm_.c:944
msgid "Change Resolution"
msgstr "²ņĮüÅŁ¤ĪŹŃ¹¹"
-#: ../Xconfigurator.pm_.c:812
+#: ../../Xconfigurator.pm_.c:945
msgid "Automatical resolutions search"
msgstr "²ņĮüÅŁ¤Ī¼«Ę°ø”ŗ÷"
-#: ../Xconfigurator.pm_.c:816
+#: ../../Xconfigurator.pm_.c:949
msgid "Show information"
msgstr "¾šŹó¤ņɽ¼Ø"
-#: ../Xconfigurator.pm_.c:817
+#: ../../Xconfigurator.pm_.c:950
msgid "Test again"
msgstr "¤ā¤¦°ģ²ó„Ę„¹„Č"
-#: ../Xconfigurator.pm_.c:818 ../standalone/rpmdrake_.c:46
+#: ../../Xconfigurator.pm_.c:951 ../../standalone/rpmdrake_.c:46
msgid "Quit"
msgstr "½ŖĪ»"
-#: ../Xconfigurator.pm_.c:822
+#: ../../Xconfigurator.pm_.c:955 ../../standalone/drakboot_.c:36
msgid "What do you want to do?"
msgstr "¤É¤¦¤·¤Ž¤¹¤«”©"
-#: ../Xconfigurator.pm_.c:829
+#: ../../Xconfigurator.pm_.c:962
msgid "Forget the changes?"
msgstr "ŹŃ¹¹¤ņĮ“ÉōĒĖ“ž¤·¤Ž¤¹¤«”©"
-#: ../Xconfigurator.pm_.c:845
+#: ../../Xconfigurator.pm_.c:980
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "ŹŃ¹¹¤ņĶ­øś¤Ė¤¹¤ė¤Ė¤Ļ %s ¤Ė„ķ„°„¤„ó¤·¤Ź¤Ŗ¤·¤Ę²¼¤µ¤¤"
-#: ../Xconfigurator.pm_.c:861
+#: ../../Xconfigurator.pm_.c:996
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "„ķ„°„¢„¦„Ȥ·¤æ¾å¤Ē Ctrl-Alt-BackSpace ¤ņ²”¤·¤Ę²¼¤µ¤¤"
-#: ../Xconfigurator.pm_.c:864
+#: ../../Xconfigurator.pm_.c:999
msgid "X at startup"
msgstr "X ¤ĪµÆĘ°"
-#: ../Xconfigurator.pm_.c:865
+#: ../../Xconfigurator.pm_.c:1000
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
@@ -283,184 +297,396 @@ msgstr ""
"„³„ó„Ō„唼„æ¤ņ„Ö”¼„Ȥ·¤æ»ž”¤¼«Ę°ÅŖ¤Ė X ¤¬Ī©¤Į¾å¤¬¤ėĄßÄź¤Ė¤Ē¤­¤Ž¤¹”£\n"
"„ź„Ö”¼„Ȥ·¤æ»ž X ¤ņĪ©¤Į¾å¤²¤Ž¤¹¤«”©"
-#: ../Xconfigurator_consts.pm_.c:4
+#: ../../Xconfigurator_consts.pm_.c:4
msgid "256 colors (8 bits)"
msgstr "256 æ§(8 bits)"
-#: ../Xconfigurator_consts.pm_.c:5
+#: ../../Xconfigurator_consts.pm_.c:5
msgid "32 thousand colors (15 bits)"
msgstr "3Ėü2Ąéæ§ (15 bits)"
-#: ../Xconfigurator_consts.pm_.c:6
+#: ../../Xconfigurator_consts.pm_.c:6
msgid "65 thousand colors (16 bits)"
msgstr "6Ėü5Ąéæ§ (16 bits)"
-#: ../Xconfigurator_consts.pm_.c:7
+#: ../../Xconfigurator_consts.pm_.c:7
msgid "16 million colors (24 bits)"
msgstr "1600Ėüæ§ (24 bits)"
-#: ../Xconfigurator_consts.pm_.c:8
+#: ../../Xconfigurator_consts.pm_.c:8
msgid "4 billion colors (32 bits)"
msgstr "40²Ææ§ (32 bits)"
-#: ../Xconfigurator_consts.pm_.c:96
+#: ../../Xconfigurator_consts.pm_.c:103
msgid "256 kB"
msgstr "256 KB"
-#: ../Xconfigurator_consts.pm_.c:97
+#: ../../Xconfigurator_consts.pm_.c:104
msgid "512 kB"
msgstr "512 KB"
-#: ../Xconfigurator_consts.pm_.c:98
+#: ../../Xconfigurator_consts.pm_.c:105
msgid "1 MB"
msgstr "1 MB"
-#: ../Xconfigurator_consts.pm_.c:99
+#: ../../Xconfigurator_consts.pm_.c:106
msgid "2 MB"
msgstr "2 MB"
-#: ../Xconfigurator_consts.pm_.c:100
+#: ../../Xconfigurator_consts.pm_.c:107
msgid "4 MB"
msgstr "4 MB"
-#: ../Xconfigurator_consts.pm_.c:101
+#: ../../Xconfigurator_consts.pm_.c:108
msgid "8 MB"
msgstr "8 MB"
-#: ../Xconfigurator_consts.pm_.c:102
+#: ../../Xconfigurator_consts.pm_.c:109
msgid "16 MB or more"
msgstr "16 MB °Ź¾å"
-#: ../Xconfigurator_consts.pm_.c:107 ../Xconfigurator_consts.pm_.c:108
+#: ../../Xconfigurator_consts.pm_.c:114 ../../Xconfigurator_consts.pm_.c:115
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr "„¹„æ„ó„Ą”¼„É VGA, 640x480 at 60Hz"
-#: ../Xconfigurator_consts.pm_.c:109
+#: ../../Xconfigurator_consts.pm_.c:116
msgid "Super VGA, 800x600 at 56 Hz"
msgstr "„¹”¼„Ń”¼ VGA, 800x600 at 56 Hz"
-#: ../Xconfigurator_consts.pm_.c:110
+#: ../../Xconfigurator_consts.pm_.c:117
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
msgstr "8514 øß“¹, 1024x768 at 87 Hz interlaced (no 800x600)"
-#: ../Xconfigurator_consts.pm_.c:111
+#: ../../Xconfigurator_consts.pm_.c:118
msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
msgstr "„¹”¼„Ń”¼ VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-#: ../Xconfigurator_consts.pm_.c:112
+#: ../../Xconfigurator_consts.pm_.c:119
msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
msgstr "³ČÄ„ „¹”¼„Ń”¼ VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-#: ../Xconfigurator_consts.pm_.c:113
+#: ../../Xconfigurator_consts.pm_.c:120
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:114
+#: ../../Xconfigurator_consts.pm_.c:121
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
msgstr "1280x1024 at 70 Hz¤ĪHigh Frequency SVGA"
-#: ../Xconfigurator_consts.pm_.c:115
+#: ../../Xconfigurator_consts.pm_.c:122
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
msgstr "1280x1024 at 60 Hz¤¬²ÄĒ½¤Ź„Ž„ė„Į„¹„­„ć„ó„ā„Ė„æ"
-#: ../Xconfigurator_consts.pm_.c:116
+#: ../../Xconfigurator_consts.pm_.c:123
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
msgstr "1280x1024 at 74 Hz¤¬²ÄĒ½¤Ź„Ž„ė„Į„¹„­„ć„ó„ā„Ė„æ"
-#: ../Xconfigurator_consts.pm_.c:117
+#: ../../Xconfigurator_consts.pm_.c:124
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
msgstr "1280x1024 at 76 Hz¤¬²ÄĒ½¤Ź„Ž„ė„Į„¹„­„ć„ó„ā„Ė„æ"
-#: ../Xconfigurator_consts.pm_.c:118
+#: ../../Xconfigurator_consts.pm_.c:125
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "1600x1200 at 70 Hz ¤¬²ÄĒ½¤Ź„ā„Ė„æ"
-#: ../Xconfigurator_consts.pm_.c:119
+#: ../../Xconfigurator_consts.pm_.c:126
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "1600x1200 at 76 Hz ¤¬²ÄĒ½¤Ź„ā„Ė„æ"
-#: ../diskdrake.pm_.c:16 ../diskdrake.pm_.c:370
+#: ../../any.pm_.c:17
+msgid "curly"
+msgstr "„«”¼„ė"
+
+#: ../../any.pm_.c:17
+msgid "default"
+msgstr "„Ē„Õ„©„ė„Č"
+
+#. -PO: names (tie, curly...) have corresponding icons for kdm
+#: ../../any.pm_.c:17
+msgid "tie"
+msgstr "„Ķ„Ƅ愤"
+
+#: ../../any.pm_.c:18
+msgid "brunette"
+msgstr "„Ö„ė„Ķ„Ć„Č"
+
+#: ../../any.pm_.c:18
+msgid "girl"
+msgstr "½÷¤Ī»Ņ"
+
+#: ../../any.pm_.c:18
+msgid "woman-blond"
+msgstr "„Ö„ķ„ó„ɽ÷Ą­"
+
+#: ../../any.pm_.c:19
+msgid "automagic"
+msgstr "„Ŗ”¼„Č„Ž„ø„Ć„Æ"
+
+#: ../../any.pm_.c:60
+msgid "First sector of boot partition"
+msgstr "„Ö”¼„Č„Ń”¼„Ę„£„·„ē„ó¤ĪŗĒ½é¤Ī„»„Æ„æ"
+
+#: ../../any.pm_.c:60
+msgid "First sector of drive (MBR)"
+msgstr "„Ʉ鄤„Ö¤ĪŗĒ½é¤Ī„»„Æ„æ (MBR)"
+
+#: ../../any.pm_.c:65
+msgid "LILO/grub Installation"
+msgstr "LILO/grub ¤Ī„¤„ó„¹„Č”¼„ė"
+
+#: ../../any.pm_.c:66
+msgid "Where do you want to install the bootloader?"
+msgstr "„Ö”¼„Č„ķ”¼„Ą¤ņ¤É¤³¤Ė„¤„ó„¹„Č”¼„ė¤·¤Ž¤¹¤«”©"
+
+#: ../../any.pm_.c:73
+msgid "None"
+msgstr "¤Ź¤·"
+
+#: ../../any.pm_.c:73
+msgid "Which bootloader(s) do you want to use?"
+msgstr "¤É¤Ī„Ö”¼„Č„ķ”¼„Ą¤ņ»Č¤¤¤Ž¤¹¤«"
+
+#: ../../any.pm_.c:84
+msgid "Boot device"
+msgstr "„Ö”¼„Č„Ē„Š„¤„¹"
+
+#: ../../any.pm_.c:85
+msgid "LBA (doesn't work on old BIOSes)"
+msgstr "LBA (øŤ¤ BIOS ¤Ē¤ĻĘ°¤«¤Ź¤¤)"
+
+#: ../../any.pm_.c:86
+msgid "Compact"
+msgstr "„³„ó„Ń„Æ„Č"
+
+#: ../../any.pm_.c:86
+msgid "compact"
+msgstr "„³„ó„Ń„Æ„Č"
+
+#: ../../any.pm_.c:87 ../../install_steps_interactive.pm_.c:809
+msgid "Delay before booting default image"
+msgstr "„Ē„Õ„©„ė„Č„¤„į”¼„øµÆĘ°¤ĪĀŌ¤Į»ž“Ö"
+
+#: ../../any.pm_.c:88
+msgid "Video mode"
+msgstr "„Ó„Ē„Ŗ„ā”¼„É"
+
+#: ../../any.pm_.c:90 ../../install_steps_interactive.pm_.c:531
+#: ../../install_steps_interactive.pm_.c:654
+#: ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_interactive.pm_.c:811 ../../printerdrake.pm_.c:85
+#: ../../printerdrake.pm_.c:110 ../../standalone/adduserdrake_.c:42
+msgid "Password"
+msgstr "„Ń„¹„ļ”¼„É"
+
+#: ../../any.pm_.c:91 ../../install_steps_interactive.pm_.c:655
+#: ../../install_steps_interactive.pm_.c:706
+#: ../../install_steps_interactive.pm_.c:812
+#: ../../standalone/adduserdrake_.c:43
+msgid "Password (again)"
+msgstr "„Ń„¹„ļ”¼„É (¤ā¤¦°ģÅŁ)"
+
+#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+msgid "Restrict command line options"
+msgstr "„³„Ž„ó„Ʉ鄤„ó„Ŗ„ׄ·„ē„ó¤ĪĄ©øĀ"
+
+#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+msgid "restrict"
+msgstr "Ą©øĀ"
+
+#: ../../any.pm_.c:98
+msgid "Bootloader main options"
+msgstr "„Ö”¼„Č„ķ”¼„Ą¤Ī„į„¤„ó„Ŗ„ׄ·„ē„ó"
+
+#: ../../any.pm_.c:101 ../../install_steps_interactive.pm_.c:820
+msgid ""
+"Option ``Restrict command line options'' is of no use without a password"
+msgstr ""
+"``„³„Ž„ó„Ʉ鄤„ó„Ŗ„ׄ·„ē„ó¤ĪĄ©øĀ''„Ŗ„ׄ·„ē„ó¤Ļ„Ń„¹„ļ”¼„ɤ¬¤Ź¤¤¤Č\n"
+"Ģņ¤Ė¤æ¤Į¤Ž¤»¤ó”£"
+
+#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:719
+#: ../../install_steps_interactive.pm_.c:821
+#: ../../standalone/adduserdrake_.c:56
+msgid "Please try again"
+msgstr "¤ā¤¦°ģÅŁ»ī¤·¤Ę²¼¤µ¤¤"
+
+#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:719
+#: ../../install_steps_interactive.pm_.c:821
+#: ../../standalone/adduserdrake_.c:56
+msgid "The passwords do not match"
+msgstr "„Ń„¹„ļ”¼„ɤ¬°ģĆפ·¤Ž¤»¤ó"
+
+#: ../../any.pm_.c:112
+msgid ""
+"Here are the different entries.\n"
+"You can add some more or change the existing ones."
+msgstr ""
+"„Ø„ó„Č„ź¤Ļ°Ź²¼¤Ī¤Č¤Ŗ¤ź¤Ē¤¹”£\n"
+"ÄÉ²Ć”¦ŹŃ¹¹¤Ē¤­¤Ž¤¹”£"
+
+#: ../../any.pm_.c:114 ../../install_steps_interactive.pm_.c:832
+#: ../../printerdrake.pm_.c:245 ../../standalone/rpmdrake_.c:302
+msgid "Add"
+msgstr "²Ć¤Ø¤ė"
+
+#: ../../any.pm_.c:114 ../../diskdrake.pm_.c:42
+#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:832 ../../printerdrake.pm_.c:245
+#: ../../standalone/adduserdrake_.c:36
+msgid "Done"
+msgstr "½ŖĪ»"
+
+#: ../../any.pm_.c:123
+msgid "Linux"
+msgstr "Linux"
+
+#: ../../any.pm_.c:123
+msgid "Other OS (windows...)"
+msgstr "Ā¾¤Ī OS („¦„£„ó„É„¦„ŗ¤Ź¤É...)"
+
+#: ../../any.pm_.c:123
+msgid "Which type of entry do you want to add?"
+msgstr "¤É¤Ī„愤„פņÄÉ²Ć¤·¤Ž¤¹¤«"
+
+#: ../../any.pm_.c:142 ../../install_steps_interactive.pm_.c:857
+msgid "Image"
+msgstr "„¤„į”¼„ø"
+
+#: ../../any.pm_.c:143 ../../any.pm_.c:151
+#: ../../install_steps_interactive.pm_.c:859
+msgid "Root"
+msgstr "„ė”¼„Č"
+
+#: ../../any.pm_.c:144 ../../install_steps_interactive.pm_.c:860
+msgid "Append"
+msgstr "ÄɲĆ"
+
+#: ../../any.pm_.c:145 ../../install_steps_interactive.pm_.c:861
+msgid "Initrd"
+msgstr "Initrd"
+
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:862
+msgid "Read-write"
+msgstr "Ęɤ߽ń¤­"
+
+#: ../../any.pm_.c:152
+msgid "Table"
+msgstr "„Ę”¼„Ö„ė"
+
+#: ../../any.pm_.c:153
+msgid "Unsafe"
+msgstr "“ķø±"
+
+#: ../../any.pm_.c:158 ../../install_steps_interactive.pm_.c:869
+msgid "Label"
+msgstr "„é„Ł„ė"
+
+#: ../../any.pm_.c:160 ../../install_steps_interactive.pm_.c:871
+msgid "Default"
+msgstr "„Ē„Õ„©„ė„Č"
+
+#: ../../any.pm_.c:163 ../../install_steps_gtk.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:652
+#: ../../install_steps_interactive.pm_.c:874 ../../interactive.pm_.c:74
+#: ../../interactive.pm_.c:84 ../../interactive.pm_.c:224
+#: ../../interactive_newt.pm_.c:49 ../../interactive_newt.pm_.c:98
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:200
+#: ../../my_gtk.pm_.c:459 ../../my_gtk.pm_.c:634 ../../printerdrake.pm_.c:272
+msgid "Ok"
+msgstr "OK"
+
+#: ../../any.pm_.c:163 ../../install_steps_interactive.pm_.c:874
+msgid "Remove entry"
+msgstr "„Ø„ó„Č„ź¤ņ¾Ć¤¹"
+
+#: ../../any.pm_.c:166 ../../install_steps_interactive.pm_.c:877
+msgid "Empty label not allowed"
+msgstr "¶õĒņ¤Ī„é„Ł„ė¤Ļµö¤µ¤ģ¤Ę¤¤¤Ž¤»¤ó"
+
+#: ../../any.pm_.c:167
+msgid "This label is already used"
+msgstr "¤³¤Ī„é„Ł„ė¤Ļ¤¹¤Ē¤Ė»Č¤ļ¤ģ¤Ę¤¤¤Ž¤¹"
+
+#: ../../diskdrake.pm_.c:18 ../../diskdrake.pm_.c:413
msgid "Create"
msgstr "ŗīĄ®"
-#: ../diskdrake.pm_.c:17
+#: ../../diskdrake.pm_.c:19
msgid "Unmount"
msgstr "„¢„ó„Ž„¦„ó„Č"
-#: ../diskdrake.pm_.c:18 ../diskdrake.pm_.c:372
+#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:415
msgid "Delete"
msgstr "ŗļ½ü"
-#: ../diskdrake.pm_.c:18
+#: ../../diskdrake.pm_.c:20
msgid "Format"
msgstr "„Õ„©”¼„Ž„Ć„Č"
-#: ../diskdrake.pm_.c:18 ../diskdrake.pm_.c:527
+#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:590
msgid "Resize"
msgstr "„ź„µ„¤„ŗ"
-#: ../diskdrake.pm_.c:18 ../diskdrake.pm_.c:370 ../diskdrake.pm_.c:414
+#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:413
+#: ../../diskdrake.pm_.c:466
msgid "Type"
msgstr "„愤„×"
-#: ../diskdrake.pm_.c:19 ../diskdrake.pm_.c:430
+#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:485
msgid "Mount point"
msgstr "„Ž„¦„ó„Č„Ż„¤„ó„Č"
-#: ../diskdrake.pm_.c:33
+#: ../../diskdrake.pm_.c:35
msgid "Write /etc/fstab"
msgstr "/etc/fstab ¤ņ¹¹æ·"
-#: ../diskdrake.pm_.c:34
+#: ../../diskdrake.pm_.c:36
msgid "Toggle to expert mode"
msgstr "„Ø„­„¹„Ń”¼„Č„ā”¼„ɤĖ°Ü¤ė"
-#: ../diskdrake.pm_.c:35
+#: ../../diskdrake.pm_.c:37
msgid "Toggle to normal mode"
msgstr "„Ī”¼„Ž„ė„ā”¼„ɤĖ°Ü¤ė"
-#: ../diskdrake.pm_.c:36
+#: ../../diskdrake.pm_.c:38
msgid "Restore from file"
msgstr "„Õ„”„¤„ė¤«¤é„ź„¹„Č„¢¤¹¤ė"
-#: ../diskdrake.pm_.c:37
+#: ../../diskdrake.pm_.c:39
msgid "Save in file"
msgstr "„Õ„”„¤„ė¤Ė„»”¼„Ö¤¹¤ė"
-#: ../diskdrake.pm_.c:38
+#: ../../diskdrake.pm_.c:40
msgid "Restore from floppy"
msgstr "„Õ„ķ„Ć„Ō”¼¤«¤é„ź„¹„Č„¢¤¹¤ė"
-#: ../diskdrake.pm_.c:39
+#: ../../diskdrake.pm_.c:41
msgid "Save on floppy"
msgstr "„Õ„ķ„Ć„Ō”¼¤Ė„»”¼„Ö¤¹¤ė"
-#: ../diskdrake.pm_.c:40 ../install_steps_interactive.pm_.c:618
-#: ../install_steps_interactive.pm_.c:748 ../standalone/adduserdrake_.c:34
-msgid "Done"
-msgstr "½ŖĪ»"
-
-#: ../diskdrake.pm_.c:43
+#: ../../diskdrake.pm_.c:45
msgid "Clear all"
msgstr "Į“¤Ę¤ņ„Æ„ź„¢"
-#: ../diskdrake.pm_.c:44
+#: ../../diskdrake.pm_.c:46
msgid "Format all"
msgstr "Į“¤Ę¤ņ„Õ„©”¼„Ž„Ć„Č"
-#: ../diskdrake.pm_.c:45
+#: ../../diskdrake.pm_.c:47
msgid "Auto allocate"
msgstr "¼«Ę°³ä¤źÅö¤Ę"
-#: ../diskdrake.pm_.c:48
+#: ../../diskdrake.pm_.c:50
msgid "All primary partitions are used"
msgstr "Į“¤Ę¤Ī„ׄ鄤„Ž„ź„Ń”¼„Ę„£„·„ē„󤬻Ȥļ¤ģ¤Ę¤¤¤Ž¤¹"
-#: ../diskdrake.pm_.c:48
+#: ../../diskdrake.pm_.c:50
msgid "I can't add any more partition"
msgstr "¤³¤ģ°Ź¾å¤Ī„Ń”¼„Ę„£„·„ē„ó¤ĻÄÉ²Ć¤Ē¤­¤Ž¤»¤ó"
-#: ../diskdrake.pm_.c:48
+#: ../../diskdrake.pm_.c:50
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -468,141 +694,156 @@ msgstr ""
"„Ń”¼„Ę„£„·„ē„ó¤ņĮż¤ä¤·¤æ¤¤¤Ź¤é”¤³ČÄ„„Ń”¼„Ę„£„·„ē„ó¤¬\n"
"ŗī¤ģ¤ė¤č¤¦¤Ė¤É¤³¤«¤Ī„Ń”¼„Ę„£„·„ē„ó¤ņ¾Ć¤·¤Ę²¼¤µ¤¤”£"
-#: ../diskdrake.pm_.c:51
+#: ../../diskdrake.pm_.c:53
msgid "Rescue partition table"
msgstr "„Ń”¼„Ę„£„·„ē„ó„Ę”¼„Ö„ė¤ņ»Ä¤¹"
-#: ../diskdrake.pm_.c:52
+#: ../../diskdrake.pm_.c:54
msgid "Undo"
msgstr "¤ā¤Č¤ĖĢį¤¹"
-#: ../diskdrake.pm_.c:53
+#: ../../diskdrake.pm_.c:55
msgid "Write partition table"
msgstr "„Ń”¼„Ę„£„·„ē„ó„Ę”¼„Ö„ė¤ņ¹¹æ·"
-#: ../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:56
msgid "Reload"
msgstr "„ź„ķ”¼„É"
-#: ../diskdrake.pm_.c:98
+#: ../../diskdrake.pm_.c:96
+msgid "loopback"
+msgstr "„ė”¼„ׄŠ„Ć„Æ"
+
+#: ../../diskdrake.pm_.c:109
msgid "Empty"
msgstr "¶õ"
-#: ../diskdrake.pm_.c:98
+#: ../../diskdrake.pm_.c:109
msgid "Ext2"
msgstr "Ext2"
-#: ../diskdrake.pm_.c:98
+#: ../../diskdrake.pm_.c:109
msgid "FAT"
msgstr "FAT"
-#: ../diskdrake.pm_.c:98
+#: ../../diskdrake.pm_.c:109
msgid "Other"
msgstr "¤½¤ĪĀ¾"
-#: ../diskdrake.pm_.c:98
+#: ../../diskdrake.pm_.c:109
msgid "Swap"
msgstr "„¹„ļ„Ć„×"
-#: ../diskdrake.pm_.c:104
+#: ../../diskdrake.pm_.c:115
msgid "Filesystem types:"
msgstr "„Õ„”„¤„ė„·„¹„Ę„ą „愤„×:"
-#: ../diskdrake.pm_.c:113
+#: ../../diskdrake.pm_.c:124
msgid "Details"
msgstr "¾ÜŗŁ"
-#: ../diskdrake.pm_.c:127
+#: ../../diskdrake.pm_.c:138
msgid ""
-"You have one big fat partition\n"
-"(generally use by MicroSoft Dos/Windows).\n"
+"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 ""
"„Ļ”¼„É„Ē„£„¹„ÆĮ“ĀĪ¤¬Āē¤­¤Ź FAT „Ń”¼„Ę„£„·„ē„ó°ģ¤Ä¤Ą¤±¤Ē¤¹¤Ķ\n"
-"”Ź¤æ¤Ö¤óMS Dos/„¦„£„ó„É„¦„ŗ¤Ī¤ā¤Ī¤Ē¤¹”Ė”£¤Ž¤ŗ¤Ļ¤³¤¤¤Ä¤ņ\n"
-"„ź„µ„¤„ŗ¤¹¤ė¤Ī¤¬¤¤¤¤¤Ē¤·¤ē¤¦”Ź¤½¤Ī„Ń”¼„Ę„£„·„ē„ó¤ņ„Æ„ź„Ć„Æ\n"
-"¤·¤Ę”¢¼”¤Ė \"„ź„µ„¤„ŗ\" ¤ņ„Æ„ź„Ć„Æ¤·¤Ę²¼¤µ¤¤)"
+"”Ź¤æ¤Ö¤óMS Dos/„¦„£„ó„É„¦„ŗ¤Ī¤ā¤Ī¤Ē¤¹”Ė”£\n"
+"¤Ž¤ŗ¤Ļ¤³¤¤¤Ä¤ņ„ź„µ„¤„ŗ¤¹¤ė¤Ī¤¬¤¤¤¤¤Ē¤·¤ē¤¦\n"
+"”Ź¤½¤Ī„Ń”¼„Ę„£„·„ē„ó¤ņ„Æ„ź„Ć„Æ¤·¤Ę”¢¼”¤Ė \"„ź„µ„¤„ŗ\" ¤ņ„Æ„ź„Ć„Æ¤·¤Ę²¼¤µ¤¤)"
-#: ../diskdrake.pm_.c:132
+#: ../../diskdrake.pm_.c:143
msgid "Please make a backup of your data first"
msgstr "„Ē”¼„æ¤Ī„Š„Ć„Æ„¢„Ƅפņ¼č¤Ć¤Ę²¼¤µ¤¤"
-#: ../diskdrake.pm_.c:132 ../diskdrake.pm_.c:146 ../diskdrake.pm_.c:458
-#: ../diskdrake.pm_.c:487
+#: ../../diskdrake.pm_.c:143 ../../diskdrake.pm_.c:160
+#: ../../diskdrake.pm_.c:169 ../../diskdrake.pm_.c:517
+#: ../../diskdrake.pm_.c:546
msgid "Read carefully!"
msgstr "¤č¤ÆĘɤó¤Ē²¼¤µ¤¤”Ŗ"
-#: ../diskdrake.pm_.c:146
-#, c-format
-msgid "After %s partition %s,"
-msgstr "%s „Ń”¼„Ę„£„·„ē„󤫤é %s,"
+#: ../../diskdrake.pm_.c:146
+msgid ""
+"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
+"enough)\n"
+"at the beginning of the disk"
+msgstr ""
+"¤ā¤· aboot ¤ņ»Č¤¦¤Ä¤ā¤ź¤Ź¤é”¢„Ē„£„¹„ƤĪĄčʬ¤Ė¶õ¤­ĪĪ°č (2048„»„Æ„æ¤Æ¤é¤¤)\n"
+"¤ņ»Ä¤¹¤č¤¦µ¤¤ņÉÕ¤±¤Ę²¼¤µ¤¤”£"
-#: ../diskdrake.pm_.c:146
-msgid "all data on this partition will be lost"
-msgstr "¤³¤Ī„Ń”¼„Ę„£„·„ē„ó¾å¤Ī„Ē”¼„æ¤Ļ¼ŗ¤ļ¤ģ¤Ž¤¹"
+#: ../../diskdrake.pm_.c:160
+msgid "Be careful: this operation is dangerous."
+msgstr "Ćķ°Õ: ¤³¤ĪĮąŗī¤Ļ“ķø±¤Ē¤¹”£"
-#: ../diskdrake.pm_.c:165 ../install_any.pm_.c:193 ../install_steps.pm_.c:71
-#: ../install_steps_interactive.pm_.c:37 ../standalone/diskdrake_.c:60
-#: ../standalone/rpmdrake_.c:294 ../standalone/rpmdrake_.c:304
+#: ../../diskdrake.pm_.c:197 ../../install_any.pm_.c:330
+#: ../../install_steps.pm_.c:74 ../../install_steps_interactive.pm_.c:40
+#: ../../standalone/diskdrake_.c:60 ../../standalone/rpmdrake_.c:294
+#: ../../standalone/rpmdrake_.c:304
msgid "Error"
msgstr "„؄锼"
-#: ../diskdrake.pm_.c:189 ../diskdrake.pm_.c:610
+#: ../../diskdrake.pm_.c:221 ../../diskdrake.pm_.c:680
msgid "Mount point: "
msgstr "„Ž„¦„ó„Č„Ż„¤„ó„Č: "
-#: ../diskdrake.pm_.c:190 ../diskdrake.pm_.c:228
+#: ../../diskdrake.pm_.c:222 ../../diskdrake.pm_.c:263
msgid "Device: "
msgstr "„Ē„Š„¤„¹: "
-#: ../diskdrake.pm_.c:191
+#: ../../diskdrake.pm_.c:223
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS „Ē„Š„¤„¹„ģ„攼: %s (æäÄź)\n"
-#: ../diskdrake.pm_.c:192 ../diskdrake.pm_.c:231
+#: ../../diskdrake.pm_.c:224 ../../diskdrake.pm_.c:266
msgid "Type: "
msgstr "„愤„×: "
-#: ../diskdrake.pm_.c:193
+#: ../../diskdrake.pm_.c:225
#, c-format
msgid "Start: sector %s\n"
msgstr "³«»Ļ: „»„Æ„æ %s\n"
-#: ../diskdrake.pm_.c:194
+#: ../../diskdrake.pm_.c:226
#, c-format
-msgid "Size: %s MB"
-msgstr "„µ„¤„ŗ: %s MB"
+msgid "Size: %d MB"
+msgstr "„µ„¤„ŗ: %d MB"
-#: ../diskdrake.pm_.c:196
+#: ../../diskdrake.pm_.c:228
#, c-format
msgid ", %s sectors"
msgstr ", %s „»„Æ„æ"
-#: ../diskdrake.pm_.c:198
+#: ../../diskdrake.pm_.c:230
#, c-format
msgid "Cylinder %d to cylinder %d\n"
msgstr "„·„ź„ó„Ą %d ¤«¤é„·„ź„ó„Ą %d\n"
-#: ../diskdrake.pm_.c:199
+#: ../../diskdrake.pm_.c:231
msgid "Formatted\n"
msgstr "„Õ„©”¼„Ž„Ć„ČŗѤß\n"
-#: ../diskdrake.pm_.c:200
+#: ../../diskdrake.pm_.c:232
msgid "Not formatted\n"
msgstr "Ģ¤„Õ„©”¼„Ž„Ć„Č\n"
-#: ../diskdrake.pm_.c:201
+#: ../../diskdrake.pm_.c:233
msgid "Mounted\n"
msgstr "„Ž„¦„ó„ČŗѤß\n"
-#: ../diskdrake.pm_.c:202
+#: ../../diskdrake.pm_.c:234
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../diskdrake.pm_.c:203
+#: ../../diskdrake.pm_.c:235
+#, c-format
+msgid "Loopback file(s): %s\n"
+msgstr "„ė”¼„ׄŠ„Ć„Æ„Õ„”„¤„ė: %s\n"
+
+#: ../../diskdrake.pm_.c:236
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -610,65 +851,79 @@ msgstr ""
"„Ē„Õ„©„ė„ȤĒ„Ń”¼„Ę„£„·„ē„ó„Ö”¼„Č\n"
" (MS-DOS ¤Ī„Ö”¼„Č, lilo ¤Ē¤Ļ¤Ź¤¤)\n"
-#: ../diskdrake.pm_.c:205
+#: ../../diskdrake.pm_.c:238
#, c-format
msgid "Level %s\n"
msgstr "„ģ„Ł„ė %s\n"
-#: ../diskdrake.pm_.c:206
+#: ../../diskdrake.pm_.c:239
#, c-format
msgid "Chunk size %s\n"
msgstr "„Į„ć„ó„Æ„µ„¤„ŗ %s\n"
-#: ../diskdrake.pm_.c:207
+#: ../../diskdrake.pm_.c:240
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID„Ē„£„¹„Æ %s\n"
-#: ../diskdrake.pm_.c:224
+#: ../../diskdrake.pm_.c:242
+#, c-format
+msgid "Loopback file name: %s"
+msgstr "„ė”¼„ׄŠ„Ć„Æ„Õ„”„¤„ėĢ¾: %s"
+
+#: ../../diskdrake.pm_.c:259
msgid "Please click on a partition"
msgstr "ŹŃ¹¹¤¹¤ė„Ń”¼„Ę„£„·„ē„ó¤ņ„Æ„ź„Ć„Æ¤·¤Ę¤Æ¤Ą¤µ¤¤"
-#: ../diskdrake.pm_.c:229
+#: ../../diskdrake.pm_.c:264
#, c-format
msgid "Size: %d MB\n"
msgstr "„µ„¤„ŗ: %d MB\n"
-#: ../diskdrake.pm_.c:230
+#: ../../diskdrake.pm_.c:265
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "„ø„Ŗ„į„Č„ź: %s „·„ź„ó„Ą, %s „Ų„Ć„É, %s „»„Æ„æ\n"
-#: ../diskdrake.pm_.c:232
+#: ../../diskdrake.pm_.c:267
+#, c-format
+msgid "Partition table type: %s\n"
+msgstr "„Ń”¼„Ę„£„·„ē„ó„Ę”¼„Ö„ė„愤„×: %s\n"
+
+#: ../../diskdrake.pm_.c:268
#, c-format
msgid "on bus %d id %d\n"
msgstr "„Š„¹ %d id %d\n"
-#: ../diskdrake.pm_.c:245
+#: ../../diskdrake.pm_.c:281
msgid "Mount"
msgstr "„Ž„¦„ó„Č"
-#: ../diskdrake.pm_.c:246
+#: ../../diskdrake.pm_.c:282
msgid "Active"
msgstr "„¢„Æ„Ę„£„Ö"
-#: ../diskdrake.pm_.c:247
+#: ../../diskdrake.pm_.c:283
msgid "Add to RAID"
msgstr "RAID ¤Ė²Ć¤Ø¤ė"
-#: ../diskdrake.pm_.c:248
+#: ../../diskdrake.pm_.c:284
msgid "Remove from RAID"
msgstr "RAID ¤«¤é½ü¤Æ"
-#: ../diskdrake.pm_.c:249
+#: ../../diskdrake.pm_.c:285
msgid "Modify RAID"
msgstr "RAID¤ĪŹŃ¹¹"
-#: ../diskdrake.pm_.c:256
+#: ../../diskdrake.pm_.c:286
+msgid "Use for loopback"
+msgstr "„ė”¼„ׄŠ„Ć„Æ¤Ī»ČĶŃ"
+
+#: ../../diskdrake.pm_.c:293
msgid "Choose action"
msgstr "Ę°ŗī¤ņĮŖĀņ"
-#: ../diskdrake.pm_.c:349
+#: ../../diskdrake.pm_.c:386
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -679,7 +934,7 @@ msgstr ""
"¤½¤³¤Ė /boot ¤Ļŗī¤ģ¤Ž¤»¤ó”£/boot¤¬¤½¤³¤Ą¤Č”¢LILO ¤¬¤¦¤Ž¤ÆĘƤ«¤Ź¤¤¤·”¤\n"
"LILO ¤ņ»Č¤ļ¤Ź¤¤¤Ź¤é /boot ¤ĻĶפź¤Ž¤»¤ó¤«¤é"
-#: ../diskdrake.pm_.c:353
+#: ../../diskdrake.pm_.c:390
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -691,146 +946,204 @@ msgstr ""
"»ż¤Ć¤Ę¤¤¤Ž¤»¤ó¤Ķ”£LILO ¤ņ„Ö”¼„Č„Ž„Ķ”¼„ø„ć¤Ė»Č¤¦¤Ź¤é”¤/boot „Ń”¼„Ę„£\n"
"„·„ē„ó¤ĪÄÉ²Ć¤ņ¤ŖĖŗ¤ģ¤Ź¤Æ”£"
-#: ../diskdrake.pm_.c:370 ../diskdrake.pm_.c:372
+#: ../../diskdrake.pm_.c:396
+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 if you want to use lilo or grub"
+msgstr ""
+"¤¢¤Ź¤æ¤Ļ„ė”¼„Č(/)¤Č¤Č¤·¤Ę„½„Õ„Č„¦„§„¢RAID„Ń”¼„Ę„£„·„ē„ó¤ņĮŖ¤Ó¤Ž¤·¤æ¤Ķ”£\n"
+"/boot „Ń”¼„Ę„£„·„ē„óĢµ¤·¤Ē¤³¤ģ¤ņĮąŗī½ŠĶč¤ė„Ö”¼„Č„ķ”¼„Ą¤Ļ¤¢¤ź¤Ž¤»¤ó”£\n"
+"¤Ź¤Ī¤Ē lilo ¤Ž¤æ¤Ļ grub ¤ņ»Č¤¦¤Ź¤é /boot „Ń”¼„Ę„£„·„ē„ó¤ĪÄÉ²Ć¤ņ¤ŖĖŗ¤ģ¤Ź¤Æ”£"
+
+#: ../../diskdrake.pm_.c:413 ../../diskdrake.pm_.c:415
#, c-format
msgid "Use ``%s'' instead"
msgstr "Āå¤ļ¤ź¤Ė ``%s'' ¤ņ»Č¤Ć¤Ę²¼¤µ¤¤"
-#: ../diskdrake.pm_.c:375
+#: ../../diskdrake.pm_.c:418
msgid "Use ``Unmount'' first"
msgstr "ŗĒ½é¤Ė ``Unmount`` ¤ņ»Č¤Ć¤Ę²¼¤µ¤¤"
-#: ../diskdrake.pm_.c:376 ../diskdrake.pm_.c:409
-msgid "changing type of"
-msgstr "„愤„פĪŹŃ¹¹"
+#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:461
+#, c-format
+msgid ""
+"After changing type of partition %s, all data on this partition will be lost"
+msgstr ""
+"„Ń”¼„Ę„£„·„ē„ó¤Ī·æ¤ņ %s "
+"¤ĖŹŃ¹¹¤·¤æø唢¤³¤Ī„Ń”¼„Ę„£„·„ē„ó¾å¤Ī„Ē”¼„æ¤Ļ¼ŗ¤ļ¤ģ¤Ž¤¹"
-#: ../diskdrake.pm_.c:388
+#: ../../diskdrake.pm_.c:431
msgid "Continue anyway?"
msgstr "Ā³¤±¤Ž¤¹¤«”©"
-#: ../diskdrake.pm_.c:393
+#: ../../diskdrake.pm_.c:436
msgid "Quit without saving"
msgstr "„»”¼„Ö¤»¤ŗ½ŖĪ»"
-#: ../diskdrake.pm_.c:393
+#: ../../diskdrake.pm_.c:436
msgid "Quit without writing the partition table?"
msgstr "„Ń”¼„Ę„£„·„ē„ó„Ę”¼„Ö„ė¤ņ¹¹æ·¤»¤ŗ¤Ė½ŖĪ»”©"
-#: ../diskdrake.pm_.c:412
+#: ../../diskdrake.pm_.c:464
msgid "Change partition type"
msgstr "„Ń”¼„Ę„£„·„ē„ó„愤„פĪŹŃ¹¹"
-#: ../diskdrake.pm_.c:413
+#: ../../diskdrake.pm_.c:465
msgid "Which partition type do you want?"
msgstr "¤É¤Ī„Ń”¼„Ę„£„·„ē„ó„愤„פĖ¤·¤Ž¤¹¤«”©"
-#: ../diskdrake.pm_.c:429
+#: ../../diskdrake.pm_.c:483
+#, c-format
+msgid "Where do you want to mount loopback file %s?"
+msgstr "„ė”¼„ׄŠ„Ć„Æ„Õ„”„¤„ė %s ¤ņ¤É¤³¤Ė„Ž„¦„ó„Ȥ·¤Ž¤¹¤«”©"
+
+#: ../../diskdrake.pm_.c:484
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "„Ē„Š„¤„¹ %s ¤ņ¤É¤³¤Ė„Ž„¦„ó„Ȥ·¤Ž¤¹¤«”©"
-#: ../diskdrake.pm_.c:451
-msgid "formatting"
-msgstr "„Õ„©”¼„Ž„Ć„ČĆę"
+#: ../../diskdrake.pm_.c:489
+msgid ""
+"Can't unset mount point as this partition is used for loop back.\n"
+"Remove the loopback first"
+msgstr ""
+"¤³¤Ī„Ń”¼„Ę„£„·„ē„ó¤Ļ„ė”¼„ׄŠ„Ć„Æ¤Ē»Č¤ļ¤ģ¤Ę¤¤¤ė¤Ī¤Ē”¢\n"
+"„Ž„¦„ó„Č„Ż„¤„ó„Ȥ«¤é¼č¤ź½¢¤Æ¤³¤Č¤¬½ŠĶ褎¤»¤ó”£\n"
+"¤Ž¤ŗ„ė”¼„ׄŠ„Ć„Æ¤ņ²ņ½ü¤·¤Ę¤Æ¤Ą¤µ¤¤”£"
-#: ../diskdrake.pm_.c:453
+#: ../../diskdrake.pm_.c:508
+#, c-format
+msgid "After formatting partition %s, all data on this partition will be lost"
+msgstr "„Õ„©”¼„Ž„ƄȤ·¤æ¤é”¢„Ń”¼„Ę„£„·„ē„ó %s ¾å¤Ī„Ē”¼„æ¤Ļ¼ŗ¤ļ¤ģ¤Ž¤¹”£"
+
+#: ../../diskdrake.pm_.c:510
msgid "Formatting"
msgstr "„Õ„©”¼„Ž„Ć„ČĆę"
-#: ../diskdrake.pm_.c:453 ../install_steps_interactive.pm_.c:221
+#: ../../diskdrake.pm_.c:511
+#, c-format
+msgid "Formatting loopback file %s"
+msgstr "„ė”¼„ׄŠ„Ć„Æ„Õ„”„¤„ė %s ¤ņ„Õ„©”¼„Ž„Ć„ČĆę"
+
+#: ../../diskdrake.pm_.c:512 ../../install_steps_interactive.pm_.c:253
#, c-format
msgid "Formatting partition %s"
msgstr "„Ń”¼„Ę„£„·„ē„ó %s ¤ņ„Õ„©”¼„Ž„Ć„ČĆę"
-#: ../diskdrake.pm_.c:458
+#: ../../diskdrake.pm_.c:517
msgid "After formatting all partitions,"
msgstr "Į“¤Ę¤Ī„Ń”¼„Ę„£„·„ē„ó¤ņ„Õ„©”¼„Ž„ƄȤ·¤æøå,"
-#: ../diskdrake.pm_.c:458
+#: ../../diskdrake.pm_.c:517
msgid "all data on these partitions will be lost"
msgstr "¤³¤ģ¤é¤Ī„Ń”¼„Ę„£„·„ē„óĆę¤Ī„Ē”¼„æ¤Ļ¼ŗ¤ļ¤ģ¤Ž¤¹"
-#: ../diskdrake.pm_.c:468
+#: ../../diskdrake.pm_.c:527
msgid "Move"
msgstr "°ÜĘ°"
-#: ../diskdrake.pm_.c:469
-msgid "Which disk do you want to move to?"
+#: ../../diskdrake.pm_.c:528
+msgid "Which disk do you want to move it to?"
msgstr "¤É¤Ī„Ē„£„¹„ƤĖ°ÜĘ°¤·¤Ž¤¹¤«?"
-#: ../diskdrake.pm_.c:473
+#: ../../diskdrake.pm_.c:532
msgid "Sector"
msgstr "„»„Æ„æ"
-#: ../diskdrake.pm_.c:474
-msgid "Which sector do you want to move to?"
+#: ../../diskdrake.pm_.c:533
+msgid "Which sector do you want to move it to?"
msgstr "¤É¤Ī„»„Æ„æ¤ņ°ÜĘ°¤·¤Ž¤¹¤«”©"
-#: ../diskdrake.pm_.c:477
+#: ../../diskdrake.pm_.c:536
msgid "Moving"
msgstr "°ÜĘ°Ćę"
-#: ../diskdrake.pm_.c:477
+#: ../../diskdrake.pm_.c:536
msgid "Moving partition..."
msgstr "„Ń”¼„Ę„£„·„ē„ó¤ņ°ÜĘ°Ćę..."
-#: ../diskdrake.pm_.c:487
+#: ../../diskdrake.pm_.c:546
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "„Ʉ鄤„Ö %s ¤Ī„Ń”¼„Ę„£„·„ē„ó„Ę”¼„Ö„ė¤ņ„Ē„£„¹„ƤĖ½ń¤­¹ž¤ß¤Ž¤¹”Ŗ"
-#: ../diskdrake.pm_.c:489
+#: ../../diskdrake.pm_.c:548
msgid "You'll need to reboot before the modification can take place"
msgstr "„ź„Ö”¼„Ȥ·¤Ę„Ń”¼„Ę„£„·„ē„ó„Ę”¼„Ö„ė¤ĪŹŃ¹¹¤ņČæ±Ē¤µ¤»¤ėɬĶפ¬¤¢¤ź¤Ž¤¹"
-#: ../diskdrake.pm_.c:510 ../install_steps_gtk.pm_.c:255
-msgid "Computing fat filesystem bounds"
+#: ../../diskdrake.pm_.c:569 ../../install_steps_gtk.pm_.c:208
+msgid "Computing FAT filesystem bounds"
msgstr "fat „Õ„”„¤„ė„·„¹„Ę„ą¤Ī¶­³¦¤ņ·×»»"
-#: ../diskdrake.pm_.c:510 ../diskdrake.pm_.c:555
-#: ../install_steps_gtk.pm_.c:255
+#: ../../diskdrake.pm_.c:569 ../../diskdrake.pm_.c:618
+#: ../../install_steps_gtk.pm_.c:208
msgid "Resizing"
msgstr "„ź„µ„¤„ŗĆę"
-#: ../diskdrake.pm_.c:524
-msgid "resizing"
-msgstr "„ź„µ„¤„ŗĆę"
+#: ../../diskdrake.pm_.c:585
+msgid "All data on this partition should be backed-up"
+msgstr "¤³¤Ī„Ń”¼„Ę„£„·„ē„ó¾å¤Ī„Ē”¼„æ¤Ļ„Š„Ć„Æ„¢„Ƅפ¹¤ė¤Ł¤­¤Ē¤¹"
+
+#: ../../diskdrake.pm_.c:587
+#, c-format
+msgid "After resizing partition %s, all data on this partition will be lost"
+msgstr "„ź„µ„¤„ŗøå¤Ė¤Ļ”¢„Ń”¼„Ę„£„·„ē„ó %s ¾å¤Ī„Ē”¼„æ¤Ļ¼ŗ¤ļ¤ģ¤Ž¤¹"
-#: ../diskdrake.pm_.c:534
+#: ../../diskdrake.pm_.c:597
msgid "Choose the new size"
msgstr "æ·¤·¤¤„µ„¤„ŗ¤ņĮŖĀņ"
-#: ../diskdrake.pm_.c:534 ../install_steps_graphical.pm_.c:287
-#: ../install_steps_graphical.pm_.c:334 ../install_steps_gtk.pm_.c:317
-#: ../install_steps_gtk.pm_.c:361
+#: ../../diskdrake.pm_.c:597 ../../install_steps_graphical.pm_.c:287
+#: ../../install_steps_graphical.pm_.c:334
msgid "MB"
msgstr "MB"
-#: ../diskdrake.pm_.c:587
+#: ../../diskdrake.pm_.c:652
msgid "Create a new partition"
msgstr "æ·¤·¤¤„Ń”¼„Ę„£„·„ē„ó¤ņŗīĄ®"
-#: ../diskdrake.pm_.c:603
+#: ../../diskdrake.pm_.c:672
msgid "Start sector: "
msgstr "³«»Ļ„»„Æ„æ: "
-#: ../diskdrake.pm_.c:606
+#: ../../diskdrake.pm_.c:676 ../../diskdrake.pm_.c:750
msgid "Size in MB: "
msgstr "MB ¤Ē¤Ī„µ„¤„ŗ: "
-#: ../diskdrake.pm_.c:609
+#: ../../diskdrake.pm_.c:679 ../../diskdrake.pm_.c:753
msgid "Filesystem type: "
msgstr "„Õ„”„¤„ė„·„¹„Ę„ą„愤„×: "
-#: ../diskdrake.pm_.c:611
+#: ../../diskdrake.pm_.c:682
msgid "Preference: "
msgstr "„ׄź„Õ„”„ģ„ó„¹: "
-#: ../diskdrake.pm_.c:655 ../diskdrake.pm_.c:671
+#: ../../diskdrake.pm_.c:729 ../../install_steps.pm_.c:132
+msgid "This partition can't be used for loopback"
+msgstr "¤³¤Ī„Ń”¼„Ę„£„·„ē„ó¤Ļ„ė”¼„ׄŠ„Ć„Æ¤Ė¤Ļ»Č¤Ø¤Ž¤»¤ó"
+
+#: ../../diskdrake.pm_.c:739
+msgid "Loopback"
+msgstr "„ė”¼„ׄŠ„Ć„Æ"
+
+#: ../../diskdrake.pm_.c:749
+msgid "Loopback file name: "
+msgstr "„ė”¼„ׄŠ„Ć„Æ„Õ„”„¤„ėĢ¾: "
+
+#: ../../diskdrake.pm_.c:775
+msgid "File already used by another loopback, choose another one"
+msgstr "„Õ„”„¤„ė¤Ļ¤¹¤Ē¤ĖŹĢ¤Ī„ė”¼„ׄŠ„Ć„Æ¤Ē»ČĶŃĆę”£Ā¾¤Ī¤ņĮŖ¤Ó¤Ž¤·¤ē¤¦"
+
+#: ../../diskdrake.pm_.c:776
+msgid "File already exists. Use it?"
+msgstr "„Õ„”„¤„ė¤Ļ¤¹¤Ē¤ĖĀøŗߤ·¤Ž¤¹”£¤¤¤Ž¤¢¤ė¤Ī¤ņ»Č¤¤¤Ž¤¹¤«”©"
+
+#: ../../diskdrake.pm_.c:798 ../../diskdrake.pm_.c:814
msgid "Select file"
msgstr "„Õ„”„¤„ė¤ņĮŖĀņ"
-#: ../diskdrake.pm_.c:664
+#: ../../diskdrake.pm_.c:807
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -838,11 +1151,11 @@ msgstr ""
"„Š„Ć„Æ„¢„Ƅפ¹¤ė„Ń”¼„Ę„£„·„ē„ó„Ę”¼„Ö„ė¤Ī„µ„¤„ŗ¤¬°ć¤¤¤Ž¤¹\n"
"Ā³¤±¤Ž¤¹¤«”©"
-#: ../diskdrake.pm_.c:672
+#: ../../diskdrake.pm_.c:815
msgid "Warning"
msgstr "·Ł¹š"
-#: ../diskdrake.pm_.c:673
+#: ../../diskdrake.pm_.c:816
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -850,68 +1163,77 @@ msgstr ""
"„Õ„ķ„Ć„Ō”¼¤ņ„Ʉ鄤„Ö¤ĖĮŽĘž¤·¤Ę¤Æ¤Ą¤µ¤¤\n"
"„Õ„ķ„Ć„Ō”¼¾å¤ĪĮ“¤Ę¤Ī„Ē”¼„æ¤Ļ¼ŗ¤ļ¤ģ¤Ž¤¹"
-#: ../diskdrake.pm_.c:687
+#: ../../diskdrake.pm_.c:830
msgid "Trying to rescue partition table"
msgstr "„Ń”¼„Ę„£„·„ē„ó„Ę”¼„Ö„ė¤ņµß½Š¤·¤Ę¤ß¤¹"
-#: ../diskdrake.pm_.c:698
+#: ../../diskdrake.pm_.c:841
msgid "device"
msgstr "„Ē„Š„¤„¹"
-#: ../diskdrake.pm_.c:699
+#: ../../diskdrake.pm_.c:842
msgid "level"
msgstr "„ģ„Ł„ė"
-#: ../diskdrake.pm_.c:700
+#: ../../diskdrake.pm_.c:843
msgid "chunk size"
msgstr "„Į„ć„ó„Æ„µ„¤„ŗ"
-#: ../diskdrake.pm_.c:712
+#: ../../diskdrake.pm_.c:855
msgid "Choose an existing RAID to add to"
msgstr "ÄÉ²Ć¤¹¤ė“ūĀø¤Ī RAID ¤ņĮŖ¤ó¤Ē²¼¤µ¤¤"
-#: ../diskdrake.pm_.c:713
+#: ../../diskdrake.pm_.c:856
msgid "new"
msgstr "æ·µ¬"
-#: ../fs.pm_.c:67 ../fs.pm_.c:73
+#: ../../fs.pm_.c:85 ../../fs.pm_.c:91 ../../fs.pm_.c:97 ../../fs.pm_.c:103
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s „Õ„©”¼„Ž„Ć„Č, %s ¼ŗĒŌ"
-#: ../fs.pm_.c:93
+#: ../../fs.pm_.c:129
#, c-format
-msgid "don't know how to format %s in type %s"
-msgstr "„Õ„©”¼„Ž„Ć„Č %s, „愤„× %s ¤¹¤ėŹżĖ”¤ņĆĪ¤ź¤Ž¤»¤ó"
+msgid "I don't know how to format %s in type %s"
+msgstr "%s ¤ņ „愤„× %s ¤Ē„Õ„©”¼„Ž„ƄȤ¹¤ėŹżĖ”¤ņĆĪ¤ź¤Ž¤»¤ó"
-#: ../fs.pm_.c:106
+#: ../../fs.pm_.c:186
msgid "nfs mount failed"
msgstr "nfs „Ž„¦„ó„ȤĖ¼ŗĒŌ"
-#: ../fs.pm_.c:123
+#: ../../fs.pm_.c:209
msgid "mount failed: "
msgstr "„Ž„¦„ó„ȤĖ¼ŗĒŌ: "
-#: ../fs.pm_.c:134
+#: ../../fs.pm_.c:220
#, c-format
msgid "error unmounting %s: %s"
-msgstr "%s ¤ņ„¢„ó„Ž„¦„ó„ČĆę¤Ė„؄锼"
+msgstr "%s ¤ņ„¢„ó„Ž„¦„ó„ČĆę¤Ė„؄锼: %s"
-#: ../fsedit.pm_.c:219
+#: ../../fsedit.pm_.c:250
msgid "Mount points must begin with a leading /"
msgstr "„Ž„¦„ó„Č„Ż„¤„ó„ȤĻ / ¤Ē»Ļ¤Ž¤ėɬĶפ¬¤¢¤ź¤Ž¤¹"
-#: ../fsedit.pm_.c:222
+#: ../../fsedit.pm_.c:253
#, c-format
-msgid "There is already a partition with mount point %s"
-msgstr "„Ń”¼„Ę„£„·„ē„ó¤Ļ„Ž„¦„ó„Č„Ż„¤„ó„Č %s ¤Ė„Ž„¦„ó„ČŗѤß"
+msgid "There is already a partition with mount point %s\n"
+msgstr "„Ń”¼„Ę„£„·„ē„ó¤Ļ„Ž„¦„ó„Č„Ż„¤„ó„Č %s ¤Ė„Ž„¦„ó„ČŗѤß\n"
-#: ../fsedit.pm_.c:306
+#: ../../fsedit.pm_.c:261
+#, c-format
+msgid "Circular mounts %s\n"
+msgstr "½ä²ó„Ž„¦„ó„Č %s\n"
+
+#: ../../fsedit.pm_.c:273
+msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+msgstr ""
+
+#: ../../fsedit.pm_.c:355
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "½ń¤­¹ž¤ß¤Ī¤æ¤į %s ¤ņ³«¤Æ¤Č¤­„؄锼¤¬ČÆĄø: %s"
-#: ../fsedit.pm_.c:388
+#: ../../fsedit.pm_.c:437
msgid ""
"An error has occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -919,72 +1241,141 @@ msgstr ""
"„؄锼ČÆĄø - æ·¤·¤¤„Õ„”„¤„ė„·„¹„Ę„ą¤ņ¹½ĆŪ¤Ē¤­¤ė¤č¤¦¤Ź„Ē„Š„¤„¹¤¬\n"
"ø«ÉÕ¤«¤ź¤Ž¤»¤ó”£¤Ź¤Ė¤¬ø¶°ų¤«”¢„Ļ”¼„É„¦„§„¢¤ņ„Į„§„Ć„Æ¤·¤Ę¤Æ¤Ą¤µ¤¤"
-#: ../fsedit.pm_.c:403
+#: ../../fsedit.pm_.c:452
msgid "You don't have any partitions!"
msgstr "„Ń”¼„Ę„£„·„ē„󤬤¢¤ź¤Ž¤»¤ó”Ŗ"
-#: ../help.pm_.c:7
+#: ../../help.pm_.c:7
msgid "Choose preferred language for install and system usage."
msgstr "„¤„ó„¹„Č”¼„ė¤Ī»ž¤Č„·„¹„Ę„ąĶųĶŃ»ž¤Ė»Č¤¤¤æ¤¤øĄøģ¤ņĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤”£"
-#: ../help.pm_.c:10
+#: ../../help.pm_.c:10
msgid "Choose the layout corresponding to your keyboard from the list above"
msgstr "¾å¤Ī„ź„¹„Ȥ«¤é”¢¼«Ź¬¤Ī„­”¼„Ü”¼„ÉĒŪĆÖ¤ņĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤”£"
-#: ../help.pm_.c:13
+#: ../../help.pm_.c:13
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"
+"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).\n"
+"\n"
"\n"
-"Choose \"Upgrade\" if you wish to update a previous version of Mandrake\n"
-"Linux: 5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1\n"
-"(Helios) or Gold 2000."
+"Select:\n"
+"\n"
+" - Automated (recommended): If you have never installed Linux before, "
+"choose this. NOTE:\n"
+" networking will not be configured during installation, use "
+"\"LinuxConf\"\n"
+" to configure it after the install completes.\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 ""
"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¤Ź¤É”¢øŤ¤Mandrake Linux¤ņ„¢„Ƅׄ°„ģ”¼„ɤ¹¤ė¤Ź¤é\n"
-"\"„¢„Ƅׄ°„ģ”¼„É\"¤ņĮŖ¤Ó¤Ž¤·¤ē¤¦”£"
-
-#: ../help.pm_.c:22
-msgid ""
-"Select:\n"
+"6.1 (Helios), Gold 2000, 7.0 (Air)¤Ź¤É”¢øŤ¤Mandrake Linux¤ņ\n"
+"„¢„Ƅׄ°„ģ”¼„ɤ¹¤ė¤Ź¤é\"„¢„Ƅׄ°„ģ”¼„É\"¤ņĮŖ¤Ó¤Ž¤·¤ē¤¦”£\n"
+"\n"
+"\n"
+"ĮŖĀņ:\n"
"\n"
-" - Recommended: If you have never installed Linux before.\n"
+" - Į“¼«Ę°(æ侩): Linux¤Ī„¤„ó„¹„Č”¼„ė¤¬½é¤į¤Ę¤Ź¤é”¢¤³¤ģ¤ņĮŖ¤Ó¤Ž¤·¤ē¤¦”£Ćķ:\n"
+" „Ķ„Ć„Č„ļ”¼„Ƶ”Ē½¤Ļ„¤„ó„¹„Č”¼„ėĆę¤Ė¤ĻĄßÄź¤µ¤ģ¤Ź¤¤¤Ī¤Ē”¢\n"
+" „¤„ó„¹„Č”¼„ėøå¤Ė \"LinuxConf\"¤ĒĄßÄź¤·¤Ę¤Æ¤Ą¤µ¤¤”£\n"
"\n"
+" - „«„¹„æ„Ž„¤„ŗ: GNU/Linux ¤Ė¾Ü¤·¤±¤ģ¤Š”¢¼«Ź¬¤Ī„Ž„·„ó¤Ī¼ē¤Ź»Č¤¤Źż¤Ė\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"
+" - „Ø„­„¹„Ń”¼„Č: ¤³¤ģ¤ĻĖÜÅö¤ĖGNU/Linux¤Ė¾Ü¤·¤¤æĶ¤¬”¢Čó¾ļ¤ĖĘĆ¼ģ¤Ź\n"
+" „¤„ó„¹„Č”¼„ė¤ņ¤·¤æ¤¤¾ģ¹ē¤ĖĮŖ¤Ó¤Ž¤¹”£\"„«„¹„æ„Ž„¤„ŗ\"\n"
+" ¤Ī„¤„ó„¹„Č”¼„ė¤Čʱ¤ø¤Æ”¢¼«Ź¬¤Ī„·„¹„Ę„ą¤Ī»Č¤¤Źż¤ņĮŖ¤Ł¤Ž¤¹”£\n"
+" ¤Ē¤ā”¢“°Į“¤Ė¼«æ®¤¬¤Ź¤¤¤Ź¤é”¢ĄäĀŠ¤Ė¤³¤ģ¤Ļ»Č¤ļ¤Ź¤¤¤Ē¤Æ¤Ą¤µ¤¤”Ŗ\n"
+
+#: ../../help.pm_.c:37
+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"
-" - 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\"."
+" - 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 ""
-"¤³¤ó¤ŹŹżæĖ¤ņĢÜ°Ā¤ĖĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤:\n"
+"ĮŖĀņ:\n"
"\n"
-" - æ侩: Linux¤Ī„¤„ó„¹„Č”¼„ė¤¬½é¤į¤Ę¤Ź¤é¤³¤ģ”£\n"
+" - „«„¹„æ„Ž„¤„ŗ: GNU/Linux ¤Ė¾Ü¤·¤±¤ģ¤Š”¢¼«Ź¬¤Ī„Ž„·„ó¤Ī¼ē¤Ź»Č¤¤Źż¤Ė\n"
+" ¤¢¤ļ¤»¤ĘĮŖ¤Ó¤Ž¤·¤ē¤¦”£¾Ü¤·¤Æ¤Ļ°Ź²¼¤ņ»²¾Č¤·¤Ę¤Æ¤Ą¤µ¤¤”£\n"
"\n"
+" - „Ø„­„¹„Ń”¼„Č: ¤³¤ģ¤ĻĖÜÅö¤ĖGNU/Linux¤Ė¾Ü¤·¤¤æĶ¤¬”¢Čó¾ļ¤ĖĘĆ¼ģ¤Ź\n"
+" „¤„ó„¹„Č”¼„ė¤ņ¤·¤æ¤¤¾ģ¹ē¤ĖĮŖ¤Ó¤Ž¤¹”£\"„«„¹„æ„Ž„¤„ŗ\"\n"
+" ¤Ī„¤„ó„¹„Č”¼„ė¤Čʱ¤ø¤Æ”¢¼«Ź¬¤Ī„·„¹„Ę„ą¤Ī»Č¤¤Źż¤ņĮŖ¤Ł¤Ž¤¹”£\n"
+" ¤Ē¤ā”¢“°Į“¤Ė¼«æ®¤¬¤Ź¤¤¤Ź¤é”¢ĄäĀŠ¤Ė¤³¤ģ¤Ļ»Č¤ļ¤Ź¤¤¤Ē¤Æ¤Ą¤µ¤¤”Ŗ\n"
+
+#: ../../help.pm_.c:49
+msgid ""
+"The different choices for your machine's usage (provided, hence, that you "
+"have\n"
+"chosen either \"Custom\" or \"Expert\" as an installation class) are the\n"
+"following:\n"
+"\n"
+" - Normal: choose this if you intend to use your machine primarily for\n"
+" everyday use (office work, graphics manipulation and so on). Do not\n"
+" expect any compiler, development utility et al. installed.\n"
+"\n"
+" - Development: as its name says. Choose this if you intend to use your\n"
+" machine primarily for software development. You will then have a "
+"complete\n"
+" collection of software installed in order to compile, debug and format\n"
+" source code, or create software packages.\n"
+"\n"
+" - Server: choose this if the machine which you're installing "
+"Linux-Mandrake\n"
+" on is intended to be used as a server. Either a file server (NFS or "
+"SMB),\n"
+" a print server (Unix' lp (Line Printer) protocol or Windows style SMB\n"
+" printing), an authentication server (NIS), a database server and so on. "
+"As\n"
+" such, do not expect any gimmicks (KDE, GNOME...) to be installed.\n"
+msgstr ""
+"„Ž„·„ó¤Ī»Č¤¤Źż¤ĪĮŖĀņ»č”Ź¤³¤ģ¤Ļ¤Ä¤Ž¤ź”¢¤¢¤Ź¤æ¤¬„¤„ó„¹„Č”¼„ė¤ĪĮŖĀņ¤Ē\n"
+"\"„«„¹„æ„ą\" ¤« \"„Ø„­„¹„Ń”¼„Č\" ¤ņĮŖ¤ó¤Ą¤é»Č¤¤¤Ž¤¹”Ė¤Ļ°Ź²¼¤ĪÄĢ¤ź:\n"
"\n"
-" - „«„¹„æ„ąĮŖĀņ: Linux¤Ė¾Ü¤·¤±¤ģ¤Š”¢„·„¹„Ę„ą¤Ī»Č¤¤Źż¤Ė±ž¤ø¤Ę”Ö„Ī”¼„Ž„ė”×\n"
-"”Ö³«ČÆĶŃ”×”Ö„µ”¼„Š”פĪĆ꤫¤éĮŖ¤Ó¤Ž¤·¤ē¤¦”£¤Õ¤Ä¤¦¤Ī„·„¹„Ę„ą¤Ė¤·¤æ¤±¤ģ¤Š”¢\n"
-"\"„Ī”¼„Ž„ė\"¤¬¤¤¤¤¤Ē¤·¤ē¤¦”£¼ē¤Ė„½„Õ„Č³«ČƤņ¤¹¤ė¤Ä¤ā¤ź¤Ź¤é”¢\"³«ČÆĶŃ\"¤ņ\n"
-"ĮŖ¤Ó¤Ž¤¹”£¤¢¤ė¤¤¤Ļ”¢ČĘĶŃ„µ”¼„Š”Ź„į”¼„ėĶŃ”¢°õŗžĶѤŹ¤É¤Ź¤É”Ė¤Č¤·¤Ę»Č¤¦¤Ź¤é\n"
-"\"„µ”¼„Š\"¤¬¤Ŗ¤¹¤¹¤į¤Ē¤¹”£\n"
+" - „Ī”¼„Ž„ė: „Ž„·„ó¤ņ¼ē¤Ė„Ē„¹„Æ„Č„Ć„×¤Ī°ģČĢĶųĶѤĒ»Č¤¦¤Ź¤é”¢¤³¤ģ¤ņ\n"
+" ĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤”£„Ŗ„Õ„£„¹¶ČĢ³”¢²čĮü¤ĪŹŌ½ø¤Ź¤É¤Ē„Ž„·„ó¤ņ»Č¤¦¾ģ¹ē\n"
+" ¤Ė¤Ļ¤³¤ģ¤Ē¤¹”£„³„ó„Ń„¤„é¤ä³«ČÆĶѤĪ„ę”¼„Ę„£„ź„Ę„£¤ĻĘž¤ģ¤Ž¤»¤ó”£\n"
"\n"
+" - ³«ČÆĶŃ: Ģ¾Į°¤Ī¤Č¤Ŗ¤ź”£¤³¤Ī„Ž„·„ó¤ņ¼ē¤Ė„½„Õ„Č³«ČƤĒ»Č¤¦¤Ī¤Ź¤é”¢\n"
+" ¤³¤ģ¤ņĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤”£„½”¼„¹„³”¼„ɤņ„³„ó„Ń„¤„ė”¢„Ē„Š„Ć„°”¢Ą°·Į\n"
+" ¤·¤æ¤ź”¢„½„Õ„Č„Ń„Ć„±”¼„ø¤ņŗī¤Ć¤æ¤ź¤¹¤ė¤Ī¤Ė»Č¤¦„½„Õ„Č½ø¤¬¤¹¤Ł¤Ę\n"
+" „¤„ó„¹„Č”¼„ė¤µ¤ģ¤Ž¤¹”£\n"
"\n"
-" - „Ø„­„¹„Ń”¼„Č”§Expert: GNU/Linux „Š„ź„Š„ź¤Ē”¢ŗŁ¤«¤¤„«„¹„æ„Ž„¤„ŗ¤ņ¤·¤æ\n"
-"¤±¤ģ¤Š”¢¤³¤Ī„¤„ó„¹„Č”¼„ė¤ņĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤”£¤³¤Ī¤Č¤­”¢„·„¹„Ę„ą¤Ī»ČÅÓ¤Ļ\n"
-"\"„«„¹„æ„Ž„¤„ŗ\"¤Ė¤Ź¤ź¤Ž¤¹”£"
+" - „µ”¼„ŠĶŃ: Linux-Mandrake¤ņ„¤„ó„¹„Č”¼„ė¤·¤č¤¦¤Č¤·¤Ę¤¤¤ė„Ž„·„ó¤ņ”¢\n"
+" „µ”¼„ŠĄģĶѤĒ»Č¤¦¤Ä¤ā¤ź¤Ź¤é¤³¤ģ¤Ē¤¹”£„Õ„”„¤„ė„µ”¼„Š (NFS¤äSMB)”¢\n"
+" „ׄź„ó„愵”¼„Š”ŹUnix¤Īlp („鄤„ó„ׄź„ó„æ) „ׄķ„Č„³„ė¤«„¦„£„ó„É„¦„ŗ\n"
+" ¼°¤ĪSMB·ŠĶ³¤Ī°õŗž)”¢Ē§¾Ś„µ”¼„Š (NIS)”¢„Ē”¼„æ„Ł”¼„¹„µ”¼„Š¤Ź¤É¤Ē¤¹”£\n"
+" ¤³¤Ī¾ģ¹ē¤Ė¤Ļ”¢KDE¤äGNOME¤Ź¤É¤Ī¤Ŗ¤ā¤Į¤ć¤Ļ„¤„ó„¹„Č”¼„ė¤·¤Ž¤»¤ó”£\n"
-#: ../help.pm_.c:40
+#: ../../help.pm_.c:70
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"
@@ -1031,7 +1422,7 @@ msgstr ""
"„¹„Č”¼„ė„¬„¤„ɤĒ¤ā”¢¤³¤ģ¤ņ¹µ¤Ø¤Ę¤Ŗ¤Æ¤č¤¦¤Ė¤Ŗ¾©¤į¤·¤Ž¤·¤æ¤č¤Ķ”£¤½¤Ī¾šŹó\n"
"¤ņ„Ʉ鄤„Š¤Ė¤ļ¤æ¤·¤Ę¤ä¤ė¤³¤Č¤Ė¤Ź¤ź¤Ž¤¹”£"
-#: ../help.pm_.c:64
+#: ../../help.pm_.c:94
msgid ""
"At this point, you may choose what partition(s) to use to install\n"
"your Linux-Mandrake system if they have been already defined (from a\n"
@@ -1056,8 +1447,19 @@ msgid ""
"\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 need not be. Consult the documentation\n"
-"and take your time before proceeding."
+"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 ""
"LinuxĶѤĪ„Ń”¼„Ę„£„·„ē„ó¤Ī½ąČ÷¤¬¤Ē¤­¤Ę¤¤¤ģ¤Š”ŹĮ°¤Ė„¤„ó„¹„Č”¼„ė¤·¤æ¤ź”¢\n"
"ŹĢ¤Ī„ę”¼„Ę„£„ź„Ę„£¤Ē„Ń”¼„Ę„£„·„ē„ó¤ņŗī¤Ć¤æ¾ģ¹ē”Ė”¢¤É¤Ī„Ń”¼„Ę„£„·„ē„ó¤Ė\n"
@@ -1083,9 +1485,20 @@ msgstr ""
"Ģį¤ź¤Ž¤»¤ó”£¤Ą¤«¤é„Ń”¼„Ę„£„·„ē„ó¤ņĄŚ¤ė¤Ī¤Ļ”¢½é擼Ō¤Ė¤Ļ¤Ŗ¤Ć¤«¤Ź¤¤\n"
"¤Ē¤¹¤·”¢¤Č¤Ć¤Ę¤āµ¤Čč¤ģ¤¹¤ė¤ā¤Ī¤Ē¤¹”£¤½¤¦¤Ź¤é¤Ź¤¤¤č¤¦¤Ė”¢DiskDrake\n"
"¤Ļ¤³¤Ī„ׄķ„»„¹¤ņ¤Ź¤ė¤Ł¤Æ“ŹĆ±¤Ė¤·¤Ž¤¹”£¤Ž¤ŗ¤Ļ„É„­„å„į„ó„Ę”¼„·„ē„ó¤ņ\n"
-"Ęɤó¤Ē”¢Ąč¤ĖæŹ¤ąĮ°¤Ė¤ø¤Ć¤Æ¤źµ¤¤ņĶī¤ĮĆ失¤Ž¤·¤ē¤¦”£"
+"Ęɤó¤Ē”¢Ąč¤ĖæŹ¤ąĮ°¤Ė¤ø¤Ć¤Æ¤źµ¤¤ņĶī¤ĮĆ失¤Ž¤·¤ē¤¦”£\n"
+"\n"
+"\n"
+"¤É¤Ī„Ŗ„ׄ·„ē„ó¤ā”¢„­”¼„Ü”¼„ɤĒĮŖ¤Ł¤Ž¤¹”£„Ń”¼„Ę„£„·„ē„ó¤ņĮŖ¤Ö¤Ė¤Ļ”¢\n"
+"„æ„Ö¤Č¾å²¼¤Ī„«”¼„½„ė„­”¼¤ņ»Č¤¤¤Ž¤·¤ē¤¦”£„Ń”¼„Ę„£„·„ē„ó¤ņĮŖ¤ó¤Ą¤é”¢\n"
+"¼”¤Ī„­”¼¤¬»Č¤Ø¤Ž¤¹”§\n"
+"\n"
+"- Ctrl-c æ·¤·¤¤„Ń”¼„Ę„£„·„ē„ó¤ņŗī¤ė”Ź¶õ¤Ī„Ń”¼„Ę„£„·„ē„ó¤ņĮŖ¤ó¤Ą¾ģ¹ē”Ė\n"
+"\n"
+"- Ctrl-d ¤½¤Ī„Ń”¼„Ę„£„·„ē„ó¤ņŗļ½ü\n"
+"\n"
+"- Ctrl-m „Ž„¦„ó„Č„Ż„¤„ó„ȤĪĄßÄź\n"
-#: ../help.pm_.c:90
+#: ../../help.pm_.c:131
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"
@@ -1101,38 +1514,40 @@ msgstr ""
"ĘƤĖŹŻĀø¤·¤æ¤¤„Ē”¼„æ”Ź/home ¤Č /usr/local¤Ź¤É”Ė¤¬¤¢¤ģ¤Š”¢„Õ„©”¼„Ž„Ć„Č\n"
"¤·¤Ę¤Ļ¤¤¤±¤Ž¤»¤ó”£"
-#: ../help.pm_.c:98
+#: ../../help.pm_.c:139
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."
+"You may now select the group of packages you wish to\n"
+"install or upgrade.\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\n"
+"the 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\n"
+"through more than 1000 packages..."
msgstr ""
-"¤Ē¤Ļ„¤„ó„¹„Č”¼„ė¤¹¤ė„Ń„Ć„±”¼„ø¤ĪĮŖĀņ¤Ė°Ü¤ź¤Ž¤·¤ē¤¦”£\n"
-"\n"
+"¤Ē¤Ļ„¤„ó„¹„Č”¼„ė”¦„¢„Ƅׄ°„ģ”¼„ɤ·¤æ¤¤„Ń„Ć„±”¼„ø·²¤ņĮŖ¤Ó¤Ž¤·¤ē¤¦”£\n"
"\n"
-"¤Ž¤ŗ¤Ļ”¢„¤„ó„¹„Č”¼„ė¤ä„¢„Ƅׄ°„ģ”¼„ɤ·¤æ¤¤„Ń„Ć„±”¼„ø¤ņ¤Ŗ¤Ŗ¤¶¤Ć¤Ń¤Ė\n"
-"„°„ė”¼„פĒĮŖ¤Ó¤Ž¤¹”£¤½¤Īøå¤Ē”¢„Ń„Ć„±”¼„ø¤Ī„µ„¤„ŗ¤Ź¤É¤«¤é¤ā¤Ć¤ČŗŁ¤«¤¤\n"
-"ĮŖĀņ¤¬¤Ē¤­¤Ž¤¹”£\n"
-"\n"
-"\n"
-"„Ø„­„¹„Ń”¼„Č”¦„ā”¼„ɤŹ¤é”¢øÄŹĢ¤Ī„Ń„Ć„±”¼„ø¤ņĮŖ¤Ł¤Ž¤¹”£\n"
-"„Ń„Ć„±”¼„ø¤ĪĆę¤Ė¤Ļ”¢Ā¾¤Ī„Ń„Ć„±”¼„ø¤¬¤Ź¤¤¤Č»Č¤Ø¤Ź¤¤¤ā¤Ī¤¬¤¢¤ź¤Ž¤¹”£\n"
-"¤³¤ģ¤ņ„Ń„Ć„±”¼„ø¤Ī°ĶĀø“Ų·ø¤Č¤¤¤¤¤Ž¤¹”£¤³¤³¤Ē¤Ļ„Ń„Ć„±”¼„ø¤ņĮŖ¤Ö¤Č”¢\n"
-"¤½¤ģ¤ĖɬĶפŹ„Ń„Ć„±”¼„ø¤ā¼«Ę°ÅŖ¤ĖĮŖ¤Š¤ģ¤Ę„¤„ó„¹„Č”¼„ė¤µ¤ģ¤Ž¤¹”£\n"
-"°ĶĀø“Ų·ø¤¬“°Į“¤Ė²ņ·č¤µ¤ģ¤Ź¤¤¤Č”¢„Ń„Ć„±”¼„ø¤Ļ„¤„ó„¹„Č”¼„ė¤Ē¤­¤Ž¤»¤ó”£"
+"ĮŖ¤ó¤Ą¤é”¢DrakX ¤Ī¤Ū¤¦¤Ē”¢¤½¤ģ¤ņ„¤„ó„¹„Č”¼„ė¤¹¤ė¤Ą¤±¤ĪĶ¾Ķµ¤¬¤¢¤ė¤«\n"
+"„Į„§„Ć„Æ¤·¤Ž¤¹”£ÉŌĀ­¤Ź¤é·Ł¹š¤ņ½Š¤·¤Ž¤¹”£¤½¤ģ¤Ē¤āĀ³¤±¤æ¤±¤ģ¤Š”¢DrakX\n"
+"¤Ļ¼ĀŗŻ¤Ī„¤„ó„¹„Č”¼„ė¤ĖæŹ¤ß¤Ž¤¹¤¬”¢½ÅĶפĒ¤Ź¤¤„Ń„Ć„±”¼„ø¤ĻĶī¤Č¤·¤Ž¤¹”£\n"
+"°ģĶ÷¤ĪŗĒøå¤Ė \"øÄŹĢ¤Ī„Ń„Ć„±”¼„ø¤ņĮŖĀņ\"¤Č¤¤¤¦¤Ī¤¬¤¢¤ź¤Ž¤¹”£¤³¤ģ¤ņ\n"
+"ĮŖ¤Ö¤Č”¢1000øÄ°Ź¾å¤Ī„Ń„Ć„±”¼„ø¤ņ¤ŗ¤Ć¤Čø«¤Ę¤¤¤Æ¤³¤Č¤Ė¤Ź¤ź¤Ž¤¹¤č..."
-#: ../help.pm_.c:114
+#: ../../help.pm_.c:150
+msgid ""
+"If you have all the CDs in the list above, 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 ""
+"¾åµ­¤Ī°ģĶ÷¤ĪCD¤¬¤¹¤Ł¤Ę¤½¤ķ¤Ć¤Ę¤¤¤ģ¤Š”¢Ok¤ņ„Æ„ź„Ć„Æ¤·¤Ž¤·¤ē¤¦”£\n"
+"CD¤¬°ģ¤Ä¤ā¤Ź¤±¤ģ¤Š”¢„­„ć„ó„»„ė¤ņ„Æ„ź„Ć„Æ¤·¤Ę¤Æ¤Ą¤µ¤¤”£\n"
+"¼źøµ¤Ė¤Ź¤¤CD¤¬¤¢¤ģ¤Š”¢¤½¤ģ¤ņĮŖĀņ¤«¤é¤Ļ¤ŗ¤·¤Ę¤«¤éOk¤ņ„Æ„ź„Ć„Æ¤·¤Ž¤¹”£"
+
+#: ../../help.pm_.c:155
msgid ""
"The packages selected are now being installed. This operation\n"
"should take a few minutes unless you have chosen to upgrade an\n"
@@ -1143,7 +1558,7 @@ msgstr ""
"“ūĀø„·„¹„Ę„ą¤Ī„¢„Ƅׄ°„ģ”¼„ɤņĮŖ¤ó¤Ą¾ģ¹ē¤Ļ”¢»öĮ°¤ĖÄ“¤Ł¤ė¤³¤Č¤¬Ā椤¤Ī\n"
"¤Ē”¢¤ā¤Ć¤Č¤«¤«¤ź¤Ž¤¹”£"
-#: ../help.pm_.c:120
+#: ../../help.pm_.c:161
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"
@@ -1171,15 +1586,15 @@ msgstr ""
"„·„ź„¢„ė„Ž„¦„¹¤ņ»Č¤Ć¤Ę¤¤¤ė¤Č¤­¤Ė¤Ļ”¢¤½¤ģ¤¬¤Ä¤Ź¤¬¤Ć¤Ę¤¤¤ė„·„ź„¢„ė„Ż”¼„Č\n"
"¤ā»ŲÄź¤·¤Ę¤Æ¤Ą¤µ¤¤”£"
-#: ../help.pm_.c:135
+#: ../../help.pm_.c:176
msgid ""
-"Please select the correct port. For example, the COM1 port in MS Windows\n"
-"is named ttyS0 in Linux."
+"Please select the correct port. For example, the COM1 port under MS Windows\n"
+"is named ttyS0 under Linux."
msgstr ""
"Ąµ¤·¤¤„Ż”¼„ȤņĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤”£¤æ¤Č¤Ø¤Š”¢MS „¦„£„ó„É„¦„ŗ¤Ē¤ĪCOM1„Ż”¼„ȤĻ”¢\n"
"Linux¤Ē¤Ļ ttyS0 ¤Č¤¤¤¦Ģ¾Į°¤Ė¤Ź¤ź¤Ž¤¹”£"
-#: ../help.pm_.c:139
+#: ../../help.pm_.c:180
msgid ""
"This section is dedicated to configuring a local area\n"
"network (LAN) or a modem.\n"
@@ -1233,7 +1648,7 @@ msgstr ""
"¤¬ĄßÄź¤µ¤ģ¤Ž¤¹”£DrakX ¤Ļ„ā„Ē„ą¤ņƵ¤·¤Ž¤¹¤¬”¢¤³¤ģ¤¬¼ŗĒŌ¤·¤æ¤é”¢„ā„Ē„ą¤Ī\n"
"¤Ä¤Ź¤¬¤Ć¤Ę¤¤¤ė„·„ź„¢„ė„Ż”¼„Ȥņ¼«Ź¬¤Ē»ŲÄź¤·¤Ę¤Æ¤Ą¤µ¤¤”£"
-#: ../help.pm_.c:169
+#: ../../help.pm_.c:210
msgid ""
"Enter:\n"
"\n"
@@ -1263,7 +1678,7 @@ msgstr ""
"¤¹¤ėɬĶפĻ¤¢¤ź¤Ž¤»¤ó”£¼«æ®¤¬¤Ź¤±¤ģ¤Š”¢„Ķ„Ć„Č„ļ”¼„Æ“ÉĶż¼Ō¤«ISP¤Ė¤­¤¤¤Ę\n"
"¤Æ¤Ą¤µ¤¤”£\n"
-#: ../help.pm_.c:184
+#: ../../help.pm_.c:225
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."
@@ -1271,15 +1686,15 @@ msgstr ""
"¤Ē¤Ļ„Ą„¤„ä„ė„¢„ƄפĪĄßÄź¤ņ¤·¤Ž¤¹”£²æ¤ņĘžĪĻ¤·¤Ę¤¤¤¤¤«¤ļ¤«¤é¤Ź¤±¤ģ¤Š”¢\n"
"ISP¤ĖĄµ¤·¤¤¾šŹó¤ņ¶µ¤ļ¤Ć¤Ę¤Æ¤Ą¤µ¤¤”£"
-#: ../help.pm_.c:188
+#: ../../help.pm_.c:229
msgid ""
"If you will use proxies, please configure them now. If you don't know if\n"
-"you will use proxies, ask your network administrator or your ISP."
+"you should use proxies, ask your network administrator or your ISP."
msgstr ""
"„ׄķ„­„·¤ņ»Č¤¦¤Ź¤é”¢¤³¤³¤ĒĄßÄź¤·¤Ž¤·¤ē¤¦”£„ׄķ„­„·¤ņ»Č¤¦¤«¤É¤¦¤«¤ļ¤«¤é¤Ź\n"
"¤±¤ģ¤Š”¢„Ķ„Ć„Č„ļ”¼„Æ“ÉĶż¼Ō¤«ISP¤Ė¤­¤¤¤Ę¤Æ¤Ą¤µ¤¤”£"
-#: ../help.pm_.c:192
+#: ../../help.pm_.c:233
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 "
@@ -1296,12 +1711,12 @@ msgstr ""
"¤Ź¤Ŗ”¢„µ„¤„ȤĪĮŖĀņ¤Č°Å¹ę„Ń„Ć„±”¼„ø¤ĪĮŖĀņ¤Ļ”¢¼«Ź¬¤Ī¤Č¤³¤ķ¤ĪĖ”µ¬Ą©¤Ė¤¢¤Ć¤æ\n"
"¤ā¤Ī¤Ė¤·¤Ę¤Æ¤Ą¤µ¤¤”£"
-#: ../help.pm_.c:200
+#: ../../help.pm_.c:241
msgid ""
"You can now select your timezone according to where you live.\n"
"\n"
"\n"
-"Linux manages time in GMT or \"Greenwich Meridian Time\" and translates it\n"
+"Linux manages time in GMT or \"Greenwich Mean Time\" and translates it\n"
"in local time according to the time zone you have selected."
msgstr ""
"¼«Ź¬¤Ī½»¤ó¤Ē¤¤¤ė»ž“ÖĀÓ¤ņĮŖ¤Ó¤Ž¤¹”£\n"
@@ -1310,17 +1725,36 @@ msgstr ""
"Linux ¤Ļ»ž“Ö¤ņGMT”¢¤Ä¤Ž¤ź \"„°„ź„Ė„Ć„øÉø½ą»ž\" ¤Ē“ÉĶż¤·¤Ę¤¤¤Ę”¢¤½¤ģ¤ņ\n"
"ĮŖ¤ó¤Ą»ž“ÖĀÓ¤Ė¤¢¤ļ¤»¤ĘŹŃ“¹¤·¤Ž¤¹”£"
-#: ../help.pm_.c:207
-msgid "Help"
-msgstr "„Ų„ė„×"
+#: ../../help.pm_.c:248
+msgid ""
+"You may now choose which services you want to see started at boot time.\n"
+"When your mouse comes over an item, a small balloon help will popup which\n"
+"describes the role of the service.\n"
+"\n"
+"Be especially careful in this step if you intend to use your machine as a\n"
+"server: you will probably want not to start any services which you don't\n"
+"want."
+msgstr ""
+"„Ž„·„ó¤ĪµÆĘ°»ž¤Ė¼«Ę°ÅŖ¤Ė³«»Ļ¤·¤æ¤¤„µ”¼„Ó„¹¤ņĮŖ¤Ó¤Ž¤·¤ē¤¦”£\n"
+"¹ąĢܤĪ¤¦¤Ø¤Ė„Ž„¦„¹¤ņ¤ā¤Ć¤Ę¤Æ¤ė¤Č”¢¤½¤ģ¤¬²æ¤Ī„µ”¼„Ó„¹¤«ĄāĢĄ¤¹¤ė\n"
+"¾®¤µ¤Źæį¤­½Š¤·¤¬½Š¤Ę¤­¤Ž¤¹”£\n"
+"\n"
+"¤³¤Ī„Ž„·„ó¤ņ„µ”¼„Š¤Ė¤¹¤ė¤Ä¤ā¤ź¤Ź¤é”¢¤³¤³¤Ē¤ĻĘƤĖµ¤¤ņ¤Ä¤±¤Ž¤·¤ē¤¦”£\n"
+"»Č¤ļ¤Ź¤¤„µ”¼„Ó„¹¤ņ¤ą¤ä¤ß¤Ė³«»Ļ¤µ¤»¤Ę¤Ļ¤¤¤±¤Ž¤»¤ó”£"
-#: ../help.pm_.c:210
+#: ../../help.pm_.c:257
msgid ""
"Linux can deal with many types of printer. Each of these\n"
-"types require a different setup.\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 directly connected to your computer, select\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"
@@ -1339,6 +1773,12 @@ msgid ""
"for a NetWare printer, except that you need no workgroup information."
msgstr ""
"Linux ¤Ē¤Ļ¤¤¤ķ¤ó¤Ź„ׄź„ó„椬»Č¤Ø¤Ž¤¹”£¤¬”¢¤½¤ģ¤¾¤ģĄßÄź¤¬¤Į¤¬¤¤¤Ž¤¹”£\n"
+"¤æ¤Ą¤·”¢°õŗž„¹„×”¼„é¤Ļ„Ē„Õ„©„ė„ȤĪ„ׄź„ó„æĢ¾¤Č¤·¤Ę”Ölp”פņ»Č¤¤¤Ž¤¹”£\n"
+"¤Ą¤«¤é”¢lp¤Č¤¤¤¦Ģ¾Į°¤Ī„ׄź„ó„椬°ģ¤Ä¤ĻɬĶפĒ¤¹”£¤Ē¤ā”¢°ģ¤Ä¤Ī„ׄź„ó„æ\n"
+"¤ĖŹ£æō¤ĪĢ¾Į°¤ņ¤Ä¤±¤ė¤³¤Č¤ā¤Ē¤­¤Ž¤¹”£¤³¤Ī¤Č¤­¤Ļ”Ö|”פĒ¶čĄŚ¤ź¤Ž¤¹”£\n"
+"¤Ą¤«¤é”¢„ׄź„ó„æ¤Ė¤ļ¤«¤ź¤ä¤¹¤¤Ģ¾Į°¤ņ¤Ä¤±¤æ¤±¤ģ¤Š”¢¤½¤ģ¤ņĄč¤Ė½ń¤¤¤Ę\n"
+"¤Ŗ¤±¤Š¤¹¤ß¤Ž¤¹”£¤æ¤Č¤Ø¤Š\"My Printer|lp\"¤Č¤¤¤¦¶ń¹ē¤Ė”£\n"
+"Ģ¾Į°¤ĪĆę¤Ė \"lp\" ¤¬“Ž¤Ž¤ģ¤ė„ׄź„ó„椬„Ē„Õ„©„ė„ȤĖ¤Ź¤ź¤Ž¤¹”£\n"
"\n"
"\n"
"„ׄź„ó„椬ľĄÜ„³„ó„Ō„唼„æ¤Ė¤Ä¤Ź¤¬¤Ć¤Ę¤¤¤ģ¤Š”¢\"„ķ”¼„«„ė„ׄź„ó„æ\"¤ņ\n"
@@ -1358,7 +1798,7 @@ msgstr ""
"¤Ź¤¤¤Č„ׄź„ó„æ¤Ė„¢„Æ„»„¹¤Ē¤­¤Ž¤»¤ó”£NetWare „ׄź„ó„æ¤ā”¢„ļ”¼„Æ„°„ė”¼„פĻ\n"
"ÉŌĶפŹ¤Ą¤±¤Ē”¢¤Ū¤Č¤ó¤Éʱ¤ø¤Ē¤¹”£"
-#: ../help.pm_.c:233
+#: ../../help.pm_.c:286
msgid ""
"You can now enter the root password for your Linux-Mandrake\n"
"system. The password must be entered twice to verify that both\n"
@@ -1371,24 +1811,24 @@ msgid ""
"be extremely dangerous to the integrity of the system and its data,\n"
"and other systems connected to it. The password should be a\n"
"mixture of alphanumeric characters and a least 8 characters long. It\n"
-"should *never* be written down. Do not make the password too long or\n"
+"should NEVER be written down. Do not make the password too long or\n"
"complicated, though: you must be able to remember without too much\n"
"effort."
msgstr ""
"¤Ē¤ĻLinux-Mandrake„·„¹„Ę„ą¤Īroot„Ń„¹„ļ”¼„ɤņĄßÄź¤·¤Ž¤·¤ē¤¦”£\n"
-"„Ń„¹„ļ”¼„ɤĻĘó²óĘžĪĻ¤·¤Ę”¢„愤„ׄ߄¹¤¬¤Ź¤¤¤«¤É¤¦¤«¤ņ³ĪĒ§¤·¤Ž¤¹”£\n"
+"„Ń„¹„ļ”¼„ɤĻ 2 ²óĘžĪĻ¤·¤Ę”¢„愤„ׄ߄¹¤¬¤Ź¤¤¤«¤É¤¦¤«¤ņ³ĪĒ§¤·¤Ž¤¹”£\n"
"\n"
"\n"
"Root¤Č¤¤¤¦¤Ī¤Ļ„·„¹„Ę„ą¤Ī“ÉĶż¼Ō¤Ē”¢„·„¹„Ę„ą¤ĪĄßÄź¤ņŹŃ¤Ø¤é¤ģ¤ėĶ£°ģ¤Ī\n"
"æĶŹŖ¤Ē¤¹”£¤Ē¤¹¤«¤é”¢¤³¤Ī„Ń„¹„ļ”¼„ɤņĘžĪĻ¤¹¤ė¤Č¤­¤ĻĆķ°Õ¤·¤Ę¤Æ¤Ą¤µ¤¤”Ŗ\n"
"rootø¢øĀ¤ņÉŌĄµ¤Ė»Č¤¦¤Č”¢¤³¤Ī„·„¹„Ę„ą¤ä”¢„Ķ„Ć„Č„ļ”¼„ƤĒ¤Ä¤Ź¤¬¤Ć¤æĀ¾¤Ī\n"
"„·„¹„Ę„ą¤ä¤½¤Ī„Ē”¼„æ¤Ė½ÅĀē¤Ź“ķø±¤ņµŚ¤Ü¤¹¤³¤Č¤Ė¤Ź¤ź¤«¤Ķ¤Ž¤»¤ó”£\n"
-"„Ń„¹„ļ”¼„ɤĻ”¢„¢„ė„Õ„”„Ł„ƄȤäæō»ś¤ņŗ®¤¼¤æ¤ā¤Ī¤Ė¤·¤Ę”¢ŗĒÄć¤Ē¤ā8Źø»ś\n"
+"„Ń„¹„ļ”¼„ɤĻ”¢„¢„ė„Õ„”„Ł„ƄȤäæō»ś¤ņŗ®¤¼¤æ¤ā¤Ī¤Ė¤·¤Ę”¢ŗĒÄć¤Ē¤ā 8 Źø»ś\n"
"ɬĶפĒ¤¹”£*ĄäĀŠ¤Ė*„į„ā¤Ć¤Ę¤Ŗ¤¤¤æ¤ź¤·¤Ę¤Ļ¤¤¤±¤Ž¤»¤ó”£¤Ē¤āŤ¹¤®¤æ¤ź\n"
"¤ä¤ä¤³¤·¤¹¤®¤æ¤ź¤¹¤ė„Ń„¹„ļ”¼„ɤā„Ą„į¤Ē¤¹¤č”£¼«Ź¬¤Ē¤Ļ³Ś¤Ė»×¤¤¤Ą¤»¤ė\n"
"ɬĶפ¬¤¢¤ź¤Ž¤¹”£"
-#: ../help.pm_.c:249
+#: ../../help.pm_.c:302
msgid ""
"To enable a more secure system, you should select \"Use shadow file\" and\n"
"\"Use MD5 passwords\"."
@@ -1396,7 +1836,7 @@ msgstr ""
"¹ā„»„­„å„ź„Ę„£„·„¹„Ę„ą¤Ė¤·¤æ¤±¤ģ¤Š”¢\"„·„ć„É„¦„Õ„”„¤„ė¤ņ»Č¤¦\"¤Č\n"
"\"MD5 „Ń„¹„ļ”¼„ɤņ»Č¤¦\"¤ņĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤”£"
-#: ../help.pm_.c:253
+#: ../../help.pm_.c:306
msgid ""
"If your network uses NIS, select \"Use NIS\". If you don't know, ask your\n"
"network administrator."
@@ -1404,7 +1844,7 @@ msgstr ""
"¤ā¤·„Ķ„Ć„Č„ļ”¼„ƤĒ NIS ¤ņ»Č¤Ć¤Ę¤¤¤ė¤Ź¤é \"NIS ¤ņ»Č¤¦\" ¤ņĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤”£\n"
"¤ļ¤«¤é¤Ź¤±¤ģ¤Š„Ķ„Ć„Č„ļ”¼„Æ“ÉĶż¼Ō¤Ė¤­¤¤¤Ę¤Æ¤Ą¤µ¤¤”£"
-#: ../help.pm_.c:257
+#: ../../help.pm_.c:310
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"
@@ -1444,7 +1884,7 @@ msgstr ""
"¤·¤æ¤¬¤Ć¤Ę”¢¤Õ¤Ä¤¦¤Ļ¤³¤³¤Ē¤Ä¤Æ¤ė„ę”¼„¶„¢„«„¦„ó„ȤĒ„·„¹„Ę„ą¤ņ»Č¤¤¤Ž¤·¤ē\n"
"¤¦”£root¤Ē„ķ„°„¤„󤹤ė¤Ī¤Ļ”¢„·„¹„Ę„ą“ÉĶż¤Č„į„ó„Ę„Ź„󄹤Ī¤Č¤­¤Ą¤±¤Ē¤¹”£"
-#: ../help.pm_.c:276
+#: ../../help.pm_.c:329
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"
@@ -1455,7 +1895,7 @@ msgstr ""
"„¤„ó„¹„Č”¼„ė¤·¤æ¤é”¢„Ö”¼„Č„»„Æ„æ¤Ļ¾å½ń¤­¤µ¤ģ¤Ž¤¹”£¤½¤¦¤Ź¤Ć¤æ¤é”¢\n"
"„Ö”¼„Č„Ē„£„¹„Ƥņŗī¤Ć¤Ę¤Ŗ¤«¤Ź¤¤¤Č”¢Linux¤¬Ī©¤Į¾å¤²¤é¤ģ¤Ź¤Æ¤Ź¤ź¤Ž¤¹¤č”£"
-#: ../help.pm_.c:282
+#: ../../help.pm_.c:335
msgid ""
"You need to indicate where you wish\n"
"to place the information required to boot to Linux.\n"
@@ -1470,57 +1910,47 @@ msgstr ""
"\"„Ʉ鄤„Ö¤ĪŗĒ½é¤Ī„»„Æ„æ(MBR)\"¤ņĮŖ¤ó¤Ē¤Ŗ¤Æ¤Ī¤¬ĢµĘń¤Ē¤¹”£Ā¾¤ĪĮŖĀņ»č¤Ļ”¢\n"
"¤ļ¤«¤ėæĶ¤Ą¤±»Č¤Ć¤Ę¤Æ¤Ą¤µ¤¤”£"
-#: ../help.pm_.c:290
+#: ../../help.pm_.c:343
msgid ""
"Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-"(the master drive on the primary channel)."
+" (primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
msgstr ""
-"¤Õ¤Ä¤¦¤Ļ\"/dev/hda\"”Ź„ׄ鄤„Ž„ź„Į„ć„Ķ„ė¤Ī„Ž„¹„攼„Ʉ鄤„Ö”Ė¤ņĮŖ¤Ó¤Ž¤¹”£\n"
+"¤Õ¤Ä¤¦¤Ļ\"/dev/hda\"”Ź„ׄ鄤„Ž„ź„Į„ć„Ķ„ė¤Ī„Ž„¹„攼„Ʉ鄤„Ö”Ė¤«”¢\n"
+"\"/dev/sda\" (ŗĒ½é¤Ī SCSI „Ē„£„¹„Æ) ¤ņĮŖ¤Ó¤Ž¤¹”£\n"
"¼«æ®¤¬¤¢¤ė¾ģ¹ē¤Ė¤Ą¤±Ā¾¤ĪĆĶ¤ņĘž¤ģ¤Ę¤Æ¤Ą¤µ¤¤”£"
-#: ../help.pm_.c:294
+#: ../../help.pm_.c:347
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"
+"LILO (the LInux LOader) and Grub are bootloaders: they are able to boot\n"
+"either 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"
-"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)."
+"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 (LInux LOader) ¤Ļ”¢Linux¤ä¤½¤ĪĀ¾¤ĪOS¤ņ„Ö”¼„ȤĒ¤­¤Ž¤¹”£\n"
-"„Ē„£„¹„ƾå¤Ī³Ę¼ļ¤ĪOS¤Ļ”¢ÉįÄĢ¤Ļ„¤„ó„¹„Č”¼„ė¤ĪĆę¤Ē¤­¤Į¤ó¤Čø”½Š¤µ¤ģ¤Ę¤¤¤Ž¤¹”£\n"
-"¤Ē¤āø”½Š¤µ¤ģ¤Ę¤¤¤Ź¤¤¤č¤¦¤Ź¤é”¢¤³¤³¤ĒÄÉ²Ć¤Ē¤­¤Ž¤¹”£\n"
+"LILO (LInux LOader) ¤Č Grub ¤Ļ„Ö”¼„Č„ķ”¼„Ą¤Ē¤¹”£„³„ó„Ō„唼„æ¾å¤ĪLinux\n"
+"¤Ź¤É³Ę¼ļOS¤ņµÆĘ°¤Ē¤­¤Ž¤¹”£\n"
+"ÉįÄĢ¤Ļ”¢¤³¤ģ¤é¤ĪOS¤Ļ¼«Ę°ÅŖ¤Ė¤­¤Į¤ó¤Čø”½Š¤µ¤ģ¤Ę„¤„ó„¹„Č”¼„ė¤µ¤ģ¤Ž¤¹”£\n"
+"¤³¤ģ¤¬„Ą„į¤Ź¤é”¢¤³¤³¤Ē¼źĘ°¤Ē„Ø„ó„Č„ź¤ņÄÉ²Ć¤·¤Ž¤·¤ē¤¦”£„Ń„é„į”¼„æ¤ņ\n"
+"¤Ž¤Į¤¬¤Ø¤Ź¤¤¤č¤¦Ćķ°Õ¤·¤Ę¤Æ¤Ą¤µ¤¤”£\n"
"\n"
"\n"
-"¤ß¤ó¤Ź¤Ė„¢„Æ„»„¹¤·¤Ę¤Ū¤·¤Æ¤Ź¤¤OS¤¬¤¢¤Ć¤æ¤é”¢¤³¤³¤«¤é¤Ļŗļ½ü¤·¤Ę¤Ŗ¤­¤Ž¤¹”£\n"
-"”Ź¤½¤ĪOS¤ņĪ©¤Į¾å¤²¤ė¤Ė¤Ļ„Ö”¼„Č„Ē„£„¹„Ƥ¬É¬ĶפĖ¤Ź¤ź¤Ž¤¹”Ė"
+"Ā¾¤ĪOS¤Ė¤ĻĀ¾¤ĪæĶ¤¬„¢„Æ„»„¹¤Ē¤­¤Ź¤¤¤č¤¦¤Ė¤·¤æ¤¤¤³¤Č¤ā¤¢¤ź¤Ž¤¹”£¤³¤Ī\n"
+"¾ģ¹ē¤Ė¤Ļ¤½¤ĪOS¤Ī„Ø„ó„Č„ź¤ņŗļ½ü¤·¤Ę¤Ŗ¤­¤Ž¤·¤ē¤¦”£¤æ¤Ą¤·¤³¤Ī¾ģ¹ē¤Ļ”¢\n"
+"¤½¤ĪOS¤ņ»Č¤¦¤Č¤­¤Ė¤ĻµÆĘ°„Ē„£„¹„Ƥ¬Ķפź¤Ž¤¹¤č”Ŗ"
-#: ../help.pm_.c:303
+#: ../../help.pm_.c:359
msgid ""
-"LILO main options are:\n"
+"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"
-" - 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"
@@ -1533,25 +1963,11 @@ msgid ""
" * normal: select normal 80x25 text mode.\n"
" * <number>: use the corresponding text mode."
msgstr ""
-"LILO ¤Ī¼ēĶׄŖ„ׄ·„ē„ó¤Ļ°Ź²¼¤Ī¤Č¤Ŗ¤ź¤Ē¤¹:\n"
+"LILO ¤Č grub ¤Ī¼ēĶׄŖ„ׄ·„ē„ó¤Ļ°Ź²¼¤Ī¤Č¤Ŗ¤ź¤Ē¤¹:\n"
" - „Ö”¼„Č„Ē„Š„¤„¹: „Ö”¼„Č„»„Æ„æ¤ņ»ż¤Ä„Ē„Š„¤„¹Ģ¾¤ņĄßÄź”Ź¤æ¤Č¤Ø¤Š„Ļ”¼„É\n"
"„Ē„£„¹„ƤĪ„Ń”¼„Ę„£„·„ē„ó”Ė”£¼«æ®¤¬¤Ź¤¤øĀ¤ź”¢\"/dev/hda\"¤ņĮŖ¤Ó¤Ž¤·¤ē¤¦”£\n"
"\n"
"\n"
-" - „ź„Ė„¢: „»„Æ„æ/„Ų„Ć„É/„·„ź„󄥤Ī·Į¤Ē„¢„É„ģ„¹»ŲÄź¤¹¤ė¤«¤ļ¤ź¤Ė”¢„ź„Ė„¢\n"
-"„»„Æ„æ„¢„É„ģ„¹¤ņĄøĄ®”£„ź„Ė„¢„¢„É„ģ„¹¤Ļ¼Ā¹Ō»ž¤ĖŹŃ“¹¤µ¤ģ¤Ę”¢„Ē„£„¹„ƤĪ„ø„Ŗ\n"
-"„į„Č„ź¤Ėŗø±¦¤µ¤ģ¤Ž¤»¤ó”£¤Ź¤Ŗ”¢\"„ź„Ė„¢\"¤ņ»Č¤Ć¤æ¤é”¢„Ö”¼„Č„Ē„£„¹„ƤĻĀ¾¤Ī\n"
-"„·„¹„Ę„ą¤Ē¤Ļ¤Ŗ¤½¤é¤Æ»Č¤Ø¤Ž¤»¤ó”£„Ē„£„¹„ƤĪ„ø„Ŗ„į„Č„ź¤ņ·č¤į¤ėBIOS„µ”¼„Ó„¹\n"
-"¤Ļ”¢„Õ„ķ„Ć„Ō”¼¤Ē¤Ļ¤¦¤Ž¤ÆĘƤ«¤Ź¤¤¤«¤é¤Ē¤¹”£Āē¤­¤Ź„Ē„£„¹„ƤĒ\"linear\" ¤ņ\n"
-"»Č¤¦¤Č”¢/sbin/lilo ¤Ļ„¢„Æ„»„¹ÉŌĒ½¤Ź„Ē„£„¹„ÆĪĪ°č¤Ī»²¾Č„Ē”¼„æ¤ņ¤Ä¤Æ¤ė¤Ŗ¤½¤ģ\n"
-"¤¬¤¢¤ź¤Ž¤¹”£3D„»„Æ„æ„¢„É„ģ„¹¤Ļ„Ö”¼„Č»ž¤Ė¤Ļ¤ļ¤«¤é¤Ź¤¤¤«¤é¤Ē¤¹”£\n"
-"\n"
-"\n"
-" - „³„ó„Ń„Æ„Č: ¤Č¤Ź¤ź¤¢¤Ć¤æ„»„Æ„æ¤ĪĘɤ߽Š¤·Ķ×µį¤ņ¤Ž¤Č¤į¤Ę”¢°ģ¤Ä¤ĪĘɤ߽Š¤·\n"
-"Ķ×µį¤Ė¤·¤Ž¤¹”£¤³¤ģ¤Ē„ķ”¼„É»ž“Ö¤Ļ¤«¤Ź¤źøŗ¤Ć¤Ę”¢„Ž„Ƅפā¾®¤µ¤Æ¤Ę¤¹¤ß¤Ž¤¹”£\n"
-"„Õ„ķ„Ć„Ō”¼¤«¤é¤Ī„Ö”¼„ȤĒ¤Ļ”¢ \"„³„ó„Ń„Æ„Č\" ¤ņ»Č¤¦¤Ī¤¬¤Ŗ¾©¤į¤Ē¤¹”£\n"
-"\n"
-"\n"
" - „Ē„Õ„©„ė„Č„¤„į”¼„øµÆĘ°¤ĪĀŌ¤Į»ž“Ö: „Ö”¼„Č„ķ”¼„Ą¤¬ŗĒ½é¤Ī„¤„į”¼„ø¤ņµÆĘ°\n"
"¤¹¤ė¤Ž¤Ē¤ĪĀŌ¤Į»ž“Ö¤ņ1/10ÉĆƱ°Ģ¤Ē»ŲÄź¤·¤Ž¤¹”£¤³¤ģ¤Ļ”¢„­”¼„Ü”¼„ɤ¬Ķ­øś¤Ė\n"
"¤Ź¤Ć¤Ę¤¹¤°¤Ė„Ļ”¼„É„Ē„£„¹„Ƥ«¤éµÆĘ°¤¹¤ė„·„¹„Ę„ą¤Ź¤É¤ĒŹŲĶų¤Ē¤¹”£¤³¤Ī\n"
@@ -1563,7 +1979,7 @@ msgstr ""
" * „Ī”¼„Ž„ė: ÄĢ¾ļ¤Ī 80x25 ¤Ī„Ę„­„¹„Č„ā”¼„É\n"
" * <æō»ś>: æō»ś¤ĖĀŠ±ž¤·¤æ„Ę„­„¹„Č„ā”¼„É"
-#: ../help.pm_.c:338
+#: ../../help.pm_.c:378
msgid ""
"Now it's time to configure the X Window System, which is the\n"
"core of the Linux GUI (Graphical User Interface). For this purpose,\n"
@@ -1587,7 +2003,7 @@ msgstr ""
"øĀ¤ź”Ė”£¤³¤ģ¤ĒĄßÄź¤¬Ąµ¤·¤¤¤«¤ņ³ĪĒ§¤Ē¤­¤Ž¤¹”£Ąµ¤·¤Æ¤Ź¤±¤ģ¤Š”¢Ģį¤Ć¤Ę¤­¤Ę\n"
"¤ä¤ź¤Ź¤Ŗ¤»¤Ž¤¹”£¤³¤ģ¤Ļ²æÅŁ¤Ē¤ā¹„¤­¤Ź¤Ą¤±¤Ē¤­¤Ž¤¹”£"
-#: ../help.pm_.c:351
+#: ../../help.pm_.c:391
msgid ""
"If something is wrong in X configuration, use these options to correctly\n"
"configure the X Window System."
@@ -1595,69 +2011,83 @@ msgstr ""
"X ¤ĪĄßÄź¤¬¤Ŗ¤«¤·¤±¤ģ¤Š”¢¤³¤Ī„Ŗ„ׄ·„ē„ó¤ņ»Č¤Ć¤Ę”¢X„¦„£„ó„É„¦„·„¹„Ę„ą¤ņ\n"
"Ąµ¤·¤ÆĄßÄź¤·Ä¾¤·¤Ę¤Æ¤Ą¤µ¤¤”£"
-#: ../help.pm_.c:355
+#: ../../help.pm_.c:395
msgid ""
"If you prefer to use a graphical login, select \"Yes\". Otherwise, select\n"
"\"No\"."
msgstr ""
-"„°„é„Õ„£„«„ė”¦„ķ„°„¤„󤬹„¤­¤Ź¤é”¢¤³¤³¤Ē\"¤Ļ¤¤\"¤ņĮŖ¤Ó¤Ž¤¹”£¤½¤¦¤Ē¤Ź¤±¤ģ¤Š\n"
+"„°„é„Õ„£„«„ė”¦„ķ„°„¤„󤬹„¤­¤Ź¤é”¢\"¤Ļ¤¤\"¤ņĮŖ¤Ó¤Ž¤¹”£¤½¤¦¤Ē¤Ź¤±¤ģ¤Š\n"
"\"¤¤¤¤¤Ø\"¤ņĮŖ¤Ó¤Ž¤¹”£"
-#: ../help.pm_.c:359
+#: ../../help.pm_.c:399
msgid ""
-"You can now select some miscellaneous options for you 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)."
+"You can now select some miscellaneous options for your system.\n"
+"\n"
+" - Use hard drive optimizations: this option can improve hard disk "
+"performance\n"
+" but is only for advanced users: some buggy chipsets can ruin your data, "
+"so\n"
+" beware. Note that the kernel has a builtin blacklist of drives and\n"
+" chipsets, but if you want to avoid bad surprises, leave this option "
+"unset.\n"
+"\n"
+" - Choose security level: you can choose a security level for your\n"
+" system. Please refer to the manual for complete information. Basically: "
+"if\n"
+" you don't know, select \"Medium\" ; if you really want to have a secure\n"
+" machine, choose \"Paranoid\" but beware: IN THIS LEVEL, ROOT LOGIN AT\n"
+" CONSOLE IS NOT ALLOWED! If you want to be root, you have to login as a "
+"user\n"
+" and then use \"su\". More generally, do not expect to use your machine\n"
+" for anything but as a server. You have been warned.\n"
+"\n"
+" - Precise RAM size if needed: unfortunately, in today's PC world, there is "
+"no\n"
+" standard method to ask the BIOS about the amount of RAM present in your\n"
+" computer. As a consequence, Linux may fail to detect your amount of RAM\n"
+" correctly. If this is the case, you can specify the correct amount of "
+"RAM\n"
+" here. Note that a difference of 2 or 4 MB is normal.\n"
+"\n"
+" - Removable media automounting: if you would prefer not to manually\n"
+" mount removable media (CD-ROM, Floppy, Zip) by typing \"mount\" and\n"
+" \"umount\", select this option. \n"
+"\n"
+" - Enable NumLock at startup: if you want NumLock enabled after booting,\n"
+" select this option (Note: NumLock may or may not work under X)."
msgstr ""
"¤Ē¤Ļ¤½¤ĪĀ¾¤Ī„Ŗ„ׄ·„ē„ó¤ņ¤¤¤Æ¤Ä¤«ĄßÄź¤·¤Ž¤·¤ē¤¦”£\n"
"\n"
-" - „Ļ”¼„É„Ē„£„¹„ÆŗĒŬ²½¤ņ¤¹¤ė: ¤³¤Ī„Ŗ„ׄ·„ē„ó¤Ļ”¢„Ļ”¼„É„Ē„£„¹„ƤĪ\n"
-"¤ņ²žĮ±¤·¤Ę¤Æ¤ģ¤Ž¤¹¤¬”¢»Č¤¤Źż¤ņ¤Ž¤Į¤¬¤Ø¤ė¤Č„Ļ”¼„É„Ē„£„¹„Ƥņ²õ¤¹¤Ŗ¤½¤ģ¤ā\n"
-"¤¢¤ė¤Ī¤Ē”¢¹āÅŁ¤Ź„ę”¼„¶ĄģĶѤĒ¤¹”£»Č¤¤Źż¤ņĆĪ¤Ć¤Ę¤¤¤ė¤Ź¤éĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤”£\n"
-"\n"
+" - „Ļ”¼„É„Ē„£„¹„ÆŗĒŬ²½¤ņ¤¹¤ė: ¤³¤Ī„Ŗ„ׄ·„ē„ó¤Ļ”¢„Ļ”¼„É„Ē„£„¹„ÆĄ­Ē½\n"
+" ¤ņ²žĮ±¤·¤Ę¤Æ¤ģ¤Ž¤¹¤¬”¢¹āÅŁ¤Ź„ę”¼„¶ĄģĶѤĒ¤¹”£°ģÉō¤Ī„Į„Ƅׄ»„ƄȤĄ¤Č\n"
+" „Ē„£„¹„ƾå¤Ī„Ē”¼„椬²õ¤ģ¤Ž¤¹”£„«”¼„Ķ„ė¤Ē¤ā”¢ŗ¤¤Ć¤æ„Į„Ƅׄ»„ƄȤä\n"
+" „Ʉ鄤„Ö¤Ī„Ö„é„Ć„Æ„ź„¹„ȤĻ»ż¤Ć¤Ę¤¤¤Ž¤¹¤¬”¢ÄĖ¤¤ĢܤĖ¤¢¤¤¤æ¤Æ¤Ź¤±¤ģ¤Š\n"
+" ĮŖ¤Š¤Ź¤¤¤Ū¤¦¤¬ĢµĘń¤Ē¤¹”£\n"
"\n"
" - „»„­„å„ź„Ę„£„ģ„Ł„ė¤ĪĮŖĀņ: „·„¹„Ę„ą¤Ī„»„­„å„ź„Ę„£„ģ„Ł„ė¤ņĮŖ¤Ł¤Ž¤¹”£\n"
-" ¾Ü¤·¤Æ¤Ļ„Ž„Ė„å„¢„ė¤ņ»²¾Č¤·¤Ę¤Æ¤Ą¤µ¤¤”£\n"
-"\n"
-"\n"
-" - Ąµ³Ī¤ŹRAM„µ„¤„ŗ: ¤Č¤­¤É¤­”¢Linux¤Ļ„Ž„·„ó¾å¤ĪRAM¤ņĮ“Éō¤Ļø”½Š¤Ē¤­¤Ź¤¤\n"
-"¤³¤Č¤¬¤¢¤ź¤Ž¤¹”£¤³¤Ī¾ģ¹ē¤Ė¤Ļ”¢Ąµ¤·¤¤ĪĢ¤ņ»ŲÄź¤·¤Ž¤¹”£Ćķ°Õ”§ 2 or 4 Mb ¤Æ¤é¤¤\n"
-"¤Ī¤ŗ¤ģ¤Ļµ¤¤Ė¤·¤Ź¤Æ¤ĘĀē¾ęÉפĒ¤¹”£\n"
-"\n"
+" ¾Ü¤·¤Æ¤Ļ„Ž„Ė„å„¢„ė¤ņ»²¾Č¤·¤Ę¤Æ¤Ą¤µ¤¤”£“šĖÜÅŖ¤Ė¤Ļ”¢¤č¤Æ¤ļ¤«¤é¤Ź¤±¤ģ\n"
+" ¤Š \"Éø½ą\"¤ņĮŖ¤ó¤Ē¤¤¤­¤Ž¤·¤ē¤¦”£ĖÜÅö¤Ė„¬„Į„¬„Į¤Ī„»„­„å„ź„Ę„£¤¬¤Ū¤·\n"
+" ¤±¤ģ¤Š\"æĄ·Š¼Į\"¤ņĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤”£¤æ¤Ą¤·Ćķ°Õ”Ŗ””¤³¤ģ¤ņĮŖ¤Ö¤Č”¢„³„ó„½\n"
+" ”¼„ė¤Ēroot¤Ļ„ķ„°„¤„ó¤Ē¤­¤Ź¤Æ¤Ź¤ź¤Ž¤¹”Ŗ””root¤Ė¤Ź¤ė¤Č¤­¤Ļ”¢°ģČĢ„ę”¼„¶\n"
+" ¤Ē„ķ„°„¤„󤷤ʤ«¤é\"su\"„³„Ž„ó„ɤņ»Č¤¦¤³¤Č¤Ė¤Ź¤ź¤Ž¤¹”£¤ā¤Ć¤ČøĄ¤Ø¤Š”¢\n"
+" ¤³¤ģ¤ņĮŖ¤ó¤Ą¤é„Ž„·„ó¤ņ„µ”¼„ŠĶŃ°Ź³°¤Ē»Č¤¦¤Ī¤Ļ¤Ū¤ÜĢµĶż¤Ē¤¹”£µ¤¤ņ¤Ä¤±¤Ę\n"
+" ¤Æ¤Ą¤µ¤¤¤Ķ”£\n"
+"\n"
+" - ɬĶפŹ¤éĄµ³Ī¤ŹRAM„µ„¤„ŗ: »ÄĒ°¤Ź¤¬¤é¤¤¤Ž¤Ī„Ń„½„³„ó¤ĪĄ¤³¦¤Ē¤Ļ”¢BIOS¤Ė\n"
+" „·„¹„Ę„ą¾å¤ĪRAM¤ĪĪĢ¤Ė¤Ä¤¤¤Ę¤Ž¤Č¤ā¤ĖŹ¹¤ÆŹżĖ”¤¬¤¢¤ź¤Ž¤»¤ó”£¤³¤Ī·ė²Ģ”¢\n"
+" Linux¤Ļ„Ž„·„ó¾å¤ĪRAM¤ņ¤­¤Į¤ó¤Čø”½Š¤Ē¤­¤Ź¤¤¤³¤Č¤¬¤¢¤ź¤Ž¤¹”£¤³¤Ī¾ģ¹ē\n"
+" ¤Ė¤Ļ”¢Ąµ¤·¤¤ĪĢ¤ņ»ŲÄź¤·¤Ž¤¹”£\n"
+" Ćķ°Õ”§ 2 or 4 MB ¤Æ¤é¤¤¤Ī¤ŗ¤ģ¤Ļµ¤¤Ė¤·¤Ź¤Æ¤ĘĀē¾ęÉפĒ¤¹”£\n"
"\n"
" - „ź„ą”¼„Š„Ö„ė„į„Ē„£„¢¤Ī¼«Ę°„Ž„¦„ó„Č: „ź„ą”¼„Š„Ö„ė„Ʉ鄤„Ö”ŹCD-ROM¤ä\n"
-"„Õ„ķ„Ć„Ō”¼”¢ZIP¤Ź¤É”Ė¤ņ \"mount\" ¤ä\"umount\" ¤Č„愤„פ·¤Ę¼ēĘ³¤Ē„Ž„¦„ó„Č\n"
-"¤¹¤ė¤Ī¤¬ĢĢÅŻ¤Ź¤é”¢¤³¤Ī„Ŗ„ׄ·„ē„ó¤ņĮŖ¤Ó¤Ž¤¹”£\n"
-"\n"
+" „Õ„ķ„Ć„Ō”¼”¢ZIP¤Ź¤É”Ė¤ņ \"mount\" ¤ä\"umount\" „³„Ž„ó„ɤĒ¼źĘ°„Ž„¦„ó„Č\n"
+" ¤¹¤ė¤Ī¤¬ĢĢÅŻ¤Ź¤é”¢¤³¤Ī„Ŗ„ׄ·„ē„ó¤ņĮŖ¤Ó¤Ž¤¹”£\n"
"\n"
" - µÆĘ°»ž¤ĖNum Lock¤ņ„Ŗ„ó¤Ė¤¹¤ė: µÆĘ°»ž¤ĖNumber Lock¤ņ„Ŗ„ó¤Ė¤·¤æ¤±¤ģ¤Š\n"
-"¤³¤Ī„Ŗ„ׄ·„ē„ó¤ņĮŖ¤Ó¤Ž¤¹”ŹĆķ°Õ”§¤æ¤Ą¤·¤³¤ģ¤Ē¤āX„¦„£„ó„É„¦¤Ē¤ĻNum Lock¤Ļ\n"
-"¤­¤­¤Ž¤»¤ó”Ė”£"
+" ¤³¤Ī„Ŗ„ׄ·„ē„ó¤ņĮŖ¤Ó¤Ž¤¹”ŹĆķ°Õ”§X„¦„£„ó„É„¦¤Ē¤ĻNum Lock¤Ļ»Č¤Ø¤Ź¤¤¤³\n"
+" ¤Č¤¬¤¢¤ź¤Ž¤¹”Ė”£"
-#: ../help.pm_.c:387
+#: ../../help.pm_.c:428
msgid ""
"Your system is going to reboot.\n"
"\n"
@@ -1670,108 +2100,96 @@ msgstr ""
"ŗʵÆĘ°¤·¤æ¤é”¢æ·¤·¤¤ Linux Mandrake „·„¹„Ę„ą¤¬¼«Ę°ÅŖ¤Ė¤æ¤Į¤¢¤¬¤ź¤Ž¤¹”£\n"
"ŹĢ¤ĪOS¤ņ¤æ¤Į¤¢¤²¤æ¤¤¤Č¤­¤Ė¤Ļ”¢ÄÉ²Ć¤ĪĄāĢĄ¤ņĘɤó¤Ē¤Æ¤Ą¤µ¤¤”£"
-#: ../install2.pm_.c:43
+#: ../../install2.pm_.c:43
msgid "Choose your language"
msgstr "øĄøģ¤ĪĮŖĀņ"
-#: ../install2.pm_.c:44
+#: ../../install2.pm_.c:44
msgid "Select installation class"
msgstr "Ę³Ęž„Ƅ鄹¤ĪĮŖĀņ"
-#: ../install2.pm_.c:45
-msgid "Setup SCSI"
-msgstr "SCSI ¤ĪĄßÄź"
-
-#: ../install2.pm_.c:46
-msgid "Choose install or upgrade"
-msgstr "Ę³Ęž/³ČÄ„¤ĪĮŖĀņ"
+#: ../../install2.pm_.c:45
+msgid "Hard drive detection"
+msgstr "„Ē„£„¹„ƤĪø”½Š"
-#: ../install2.pm_.c:47
+#: ../../install2.pm_.c:46
msgid "Configure mouse"
msgstr "„Ž„¦„¹¤ĪĄßÄź"
-#: ../install2.pm_.c:48
+#: ../../install2.pm_.c:47
msgid "Choose your keyboard"
msgstr "„­”¼„Ü”¼„ɤĪĮŖĀņ"
-#: ../install2.pm_.c:49
+#: ../../install2.pm_.c:48 ../../install_steps_interactive.pm_.c:318
msgid "Miscellaneous"
-msgstr "»ØĀæ¤Ź¤³¤Č"
+msgstr "¤½¤ĪĀ¾¤ā¤ķ¤ā¤ķ"
-#: ../install2.pm_.c:50
+#: ../../install2.pm_.c:49
msgid "Setup filesystems"
msgstr "„Õ„”„¤„ė„·„¹„Ę„ą"
-#: ../install2.pm_.c:51
+#: ../../install2.pm_.c:50
msgid "Format partitions"
msgstr "„Õ„©”¼„Ž„Ć„Č"
-#: ../install2.pm_.c:52
+#: ../../install2.pm_.c:51
msgid "Choose packages to install"
msgstr "„Ń„Ć„±”¼„ø¤ĪĮŖĀņ"
-#: ../install2.pm_.c:53
+#: ../../install2.pm_.c:52
msgid "Install system"
msgstr "„·„¹„Ę„ą¤ĪĘ³Ęž"
-#: ../install2.pm_.c:54
+#: ../../install2.pm_.c:53
msgid "Configure networking"
msgstr "„Ķ„Ć„Č„ļ”¼„ÆĄßÄź"
-#: ../install2.pm_.c:55
+#: ../../install2.pm_.c:54
msgid "Cryptographic"
msgstr "°Å¹ę²½"
-#: ../install2.pm_.c:56
+#: ../../install2.pm_.c:55
msgid "Configure timezone"
msgstr "„愤„ą„¾”¼„óĄßÄź"
-#: ../install2.pm_.c:58
+#: ../../install2.pm_.c:56
+msgid "Configure services"
+msgstr "„µ”¼„Ó„¹¤ĪĄßÄź"
+
+#: ../../install2.pm_.c:57
msgid "Configure printer"
msgstr "„ׄź„ó„æ¤ĪĄßÄź"
-#: ../install2.pm_.c:59 ../install_steps_interactive.pm_.c:576
-#: ../install_steps_interactive.pm_.c:577
+#: ../../install2.pm_.c:58 ../../install_steps_interactive.pm_.c:652
+#: ../../install_steps_interactive.pm_.c:653
msgid "Set root password"
-msgstr "„ė”¼„Č„Ń„¹„ļ”¼„ɤĪĄßÄź"
+msgstr "„ė”¼„Č„Ń„¹„ļ”¼„É"
-#: ../install2.pm_.c:60
+#: ../../install2.pm_.c:59
msgid "Add a user"
msgstr "„ę”¼„¶¤ĪÅŠĻæ"
-#: ../install2.pm_.c:61
+#: ../../install2.pm_.c:61
msgid "Create a bootdisk"
msgstr "µÆĘ°„Ē„£„¹„ÆŗīĄ®"
-#: ../install2.pm_.c:62
+#: ../../install2.pm_.c:63
msgid "Install bootloader"
msgstr "„Ö”¼„Č„ķ”¼„ĄĄßÄź"
-#: ../install2.pm_.c:63
+#: ../../install2.pm_.c:64
msgid "Configure X"
msgstr "X ¤ĪĄßÄź"
-#: ../install2.pm_.c:64
+#: ../../install2.pm_.c:65
+msgid "Auto install floppy"
+msgstr "Ę³ĘžĄßÄź„Õ„ķ„Ć„Ō"
+
+#: ../../install2.pm_.c:66
msgid "Exit install"
msgstr "Ę³Ęžŗī¶Č¤ņ½ŖĪ»"
-#: ../install2.pm_.c:83
-msgid "beginner"
-msgstr "½é擼Ō"
-
-#: ../install2.pm_.c:83
-msgid "developer"
-msgstr "³«ČƼŌ"
-
-#: ../install2.pm_.c:83
-msgid "expert"
-msgstr "„Ø„­„¹„Ń”¼„Č"
-
-#: ../install2.pm_.c:83
-msgid "server"
-msgstr "„µ”¼„Š"
-
-#: ../install2.pm_.c:311
+#: ../../install2.pm_.c:308
msgid ""
"You must have a root partition.\n"
"For this, create a partition (or click on an existing one).\n"
@@ -1781,11 +2199,7 @@ msgstr ""
"æ·¤·¤Æ„Ń”¼„Ę„£„·„ē„ó¤ņ¤Ä¤Æ¤ė¤«”¢“ūĀø¤Ī¤ā¤Ī¤ņ„Æ„ź„Ć„Æ¤·¤ĘĮŖ¤Ó¤Ž¤¹”£\n"
"¤½¤·¤Ę ``„Ž„¦„ó„Č„Ż„¤„ó„Č'' „¢„Æ„·„ē„ó¤ņĮŖ¤Ó”¢ `/'¤Ė„»„ƄȤ·¤Ž¤¹"
-#: ../install2.pm_.c:327
-msgid "Not enough swap to fulfill installation, please add some"
-msgstr "„¤„ó„¹„Č”¼„ė¤Ė½½Ź¬¤Ź„¹„ļ„Ƅפ¬¤¢¤ź¤Ž¤»¤ó”¤„¹„ļ„Ƅפņ²Ć¤Ø¤Ę²¼¤µ¤¤"
-
-#: ../install_any.pm_.c:194 ../standalone/diskdrake_.c:61
+#: ../../install_any.pm_.c:331 ../../standalone/diskdrake_.c:61
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
@@ -1793,7 +2207,7 @@ msgstr ""
"„Ń”¼„Ę„£„·„ē„ó„Ę”¼„Ö„ė¤¬Ęɤį¤Ž¤»¤ó”¤²õ¤ģ¤Ę¤¤¤ė¤č¤¦¤Ē¤¹:(\n"
"ÉŌĄµ¤Ź„Ń”¼„Ę„£„·„ē„ó¤ņ¶õĒņ¤ĒĖä¤į¤č¤¦¤Č¤·¤Ž¤¹"
-#: ../install_any.pm_.c:210
+#: ../../install_any.pm_.c:348
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -1801,37 +2215,32 @@ msgstr ""
"DiskDrake ¤Ļ„Ń”¼„Ę„£„·„ē„ó„Ę”¼„Ö„ė¤ņĄµ¤·¤ÆĘɤį¤Ž¤»¤ó¤Ē¤·¤æ”£\n"
"¤³¤³¤«¤éĄč¤Ļ²æ¤¬µÆ¤­¤Ę¤ā¤·¤ź¤Ž¤»¤ó¤č”Ŗ"
-#: ../install_any.pm_.c:220
+#: ../../install_any.pm_.c:370
msgid "Searching root partition."
msgstr "„ė”¼„Č„Ń”¼„Ę„£„·„ē„ó¤ņø”ŗ÷"
-#: ../install_any.pm_.c:249
+#: ../../install_any.pm_.c:399
msgid "Information"
msgstr "„¤„ó„Õ„©„į”¼„·„ē„ó"
-#: ../install_any.pm_.c:250
+#: ../../install_any.pm_.c:400
#, c-format
msgid "%s: This is not a root partition, please select another one."
msgstr "%s: ¤³¤ģ¤Ļ„ė”¼„Č„Ń”¼„Ę„£„·„ē„ó¤Ē¤Ļ¤¢¤ź¤Ž¤»¤ó”¤¤Ū¤«¤ņĮŖ¤ó¤Ē²¼¤µ¤¤”£"
-#: ../install_any.pm_.c:252
+#: ../../install_any.pm_.c:402
msgid "No root partition found"
msgstr "„ė”¼„Č„Ń”¼„Ę„£„·„ē„ó¤¬ø«¤Ä¤«¤ź¤Ž¤»¤ó"
-#: ../install_any.pm_.c:289
+#: ../../install_any.pm_.c:440
msgid "Can't use broadcast with no NIS domain"
msgstr "NIS „É„į„¤„󤬤Ź¤¤¤Ī¤Ē„Ö„ķ”¼„É„­„ć„¹„Ȥ¬»Č¤Ø¤Ž¤»¤ó"
-#: ../install_any.pm_.c:473
+#: ../../install_any.pm_.c:602
msgid "Error reading file $f"
msgstr "„Õ„”„¤„ė $f Ęɤ߹ž¤ß„؄锼"
-#: ../install_any.pm_.c:479
-#, c-format
-msgid "Bad kickstart file %s (failed %s)"
-msgstr "ÉŌĄµ¤Ź„­„Ć„Æ„¹„攼„Č„Õ„”„¤„ė %s (%s ¼ŗĒŌ)"
-
-#: ../install_steps.pm_.c:72
+#: ../../install_steps.pm_.c:75
msgid ""
"An error occurred, but I don't know how to handle it nicely.\n"
"Continue at your own risk."
@@ -1839,30 +2248,39 @@ msgstr ""
"„؄锼ČÆĄø”¤¤¦¤Ž¤Æ½čĶż¤¹¤ėŹżĖ”¤ņĆĪ¤ź¤Ž¤»¤ó”£\n"
"¼«Ź¬¤ĪĄÕĒ¤¤ĒĀ³¤±¤Ę²¼¤µ¤¤”£"
-#: ../install_steps.pm_.c:136
+#: ../../install_steps.pm_.c:174
#, c-format
msgid "Duplicate mount point %s"
msgstr "„Ž„¦„ó„Č„Ż„¤„ó„Č %s ¤¬½Å¤Ź¤Ć¤Ę¤¤¤Ž¤¹"
-#: ../install_steps.pm_.c:295
-#, fuzzy, c-format
+#: ../../install_steps.pm_.c:318
+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 ""
+
+#: ../../install_steps.pm_.c:385
+#, c-format
msgid "Welcome to %s"
-msgstr "Crackers¤Ų¤č¤¦¤³¤½"
+msgstr "%s ¤Ų¤č¤¦¤³¤½"
-#: ../install_steps.pm_.c:562
+#: ../../install_steps.pm_.c:737
msgid "No floppy drive available"
msgstr "Ķ­øś¤Ź„Õ„ķ„Ć„Ō”¼„Ʉ鄤„Ö¤¬¤¢¤ź¤Ž¤»¤ó"
-#: ../install_steps_auto_install.pm_.c:18 ../install_steps_stdio.pm_.c:26
+#: ../../install_steps_auto_install.pm_.c:18 ../../install_steps_gtk.pm_.c:125
+#: ../../install_steps_stdio.pm_.c:26
#, c-format
msgid "Entering step `%s'\n"
msgstr "„¹„Ę„Ć„× `%s' ¤ņ»Ļ¤į¤Ž¤¹\n"
-#: ../install_steps_graphical.pm_.c:259 ../install_steps_gtk.pm_.c:294
+#: ../../install_steps_graphical.pm_.c:259 ../../install_steps_gtk.pm_.c:249
msgid "You must have a swap partition"
msgstr "„¹„ļ„Ƅׄє¼„Ę„£„·„ē„ó¤¬É¬ĶפĒ¤¹"
-#: ../install_steps_graphical.pm_.c:261 ../install_steps_gtk.pm_.c:296
+#: ../../install_steps_graphical.pm_.c:261 ../../install_steps_gtk.pm_.c:251
msgid ""
"You don't have a swap partition\n"
"\n"
@@ -1872,79 +2290,93 @@ msgstr ""
"\n"
"¹½¤ļ¤ŗ¤ĖĀ³¤±¤Ž¤¹¤«”©"
-#: ../install_steps_graphical.pm_.c:287 ../install_steps_gtk.pm_.c:317
+#: ../../install_steps_graphical.pm_.c:287
msgid "Choose the size you want to install"
msgstr "„¤„ó„¹„Č”¼„ė¤¹¤ė„µ„¤„ŗ¤ņĮŖ¤ó¤Ē²¼¤µ¤¤"
-#: ../install_steps_graphical.pm_.c:334 ../install_steps_gtk.pm_.c:361
+#: ../../install_steps_graphical.pm_.c:334
msgid "Total size: "
msgstr "¹ē·×„µ„¤„ŗ: "
-#: ../install_steps_graphical.pm_.c:346 ../install_steps_gtk.pm_.c:373
-#: ../standalone/rpmdrake_.c:136
+#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:447
+#: ../../standalone/rpmdrake_.c:136
#, c-format
msgid "Version: %s\n"
msgstr "„Š”¼„ø„ē„ó: %s\n"
-#: ../install_steps_graphical.pm_.c:347 ../install_steps_gtk.pm_.c:374
-#: ../standalone/rpmdrake_.c:137
+#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:448
+#: ../../standalone/rpmdrake_.c:137
#, c-format
msgid "Size: %d KB\n"
msgstr "„µ„¤„ŗ: %d KB\n"
-#: ../install_steps_graphical.pm_.c:462 ../install_steps_gtk.pm_.c:489
+#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:360
msgid "Choose the packages you want to install"
msgstr "„¤„ó„¹„Č”¼„ė¤·¤æ¤¤„Ń„Ć„±”¼„ø¤ņĮŖ¤ó¤Ē²¼¤µ¤¤"
-#: ../install_steps_graphical.pm_.c:465 ../install_steps_gtk.pm_.c:492
+#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:363
msgid "Info"
msgstr "¾šŹó"
-#: ../install_steps_graphical.pm_.c:473 ../install_steps_gtk.pm_.c:500
-#: ../install_steps_interactive.pm_.c:81 ../standalone/rpmdrake_.c:161
+#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:368
+#: ../../install_steps_interactive.pm_.c:129 ../../standalone/rpmdrake_.c:161
msgid "Install"
msgstr "„¤„ó„¹„Č”¼„ė"
-#: ../install_steps_graphical.pm_.c:492 ../install_steps_gtk.pm_.c:519
-#: ../install_steps_interactive.pm_.c:317
+#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:533
+#: ../../install_steps_interactive.pm_.c:382
msgid "Installing"
msgstr "„¤„ó„¹„Č”¼„ėĆę"
-#: ../install_steps_graphical.pm_.c:499 ../install_steps_gtk.pm_.c:526
+#: ../../install_steps_graphical.pm_.c:499 ../../install_steps_gtk.pm_.c:539
msgid "Please wait, "
msgstr "¤·¤Š¤é¤Æ¤ŖĀŌ¤Į²¼¤µ¤¤”¤"
-#: ../install_steps_graphical.pm_.c:501 ../install_steps_gtk.pm_.c:528
+#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:541
msgid "Time remaining "
msgstr "»Ä¤ź»ž“Ö "
-#: ../install_steps_graphical.pm_.c:502 ../install_steps_gtk.pm_.c:529
+#: ../../install_steps_graphical.pm_.c:502 ../../install_steps_gtk.pm_.c:542
msgid "Total time "
msgstr "¹ē·×»ž“Ö "
-#: ../install_steps_graphical.pm_.c:507 ../install_steps_gtk.pm_.c:534
-#: ../install_steps_interactive.pm_.c:317
+#: ../../install_steps_graphical.pm_.c:507 ../../install_steps_gtk.pm_.c:551
+#: ../../install_steps_interactive.pm_.c:382
msgid "Preparing installation"
msgstr "„¤„ó„¹„Č”¼„ė¤Ī½ąČ÷"
-#: ../install_steps_graphical.pm_.c:528 ../install_steps_gtk.pm_.c:549
+#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:566
#, c-format
msgid "Installing package %s"
msgstr "„Ń„Ć„±”¼„ø %s ¤Ī„¤„ó„¹„Č”¼„ė"
-#: ../install_steps_graphical.pm_.c:553 ../install_steps_gtk.pm_.c:574
+#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:607
+#: ../../install_steps_gtk.pm_.c:611
msgid "Go on anyway?"
msgstr "Ąč¤ĖæŹ¤ß¤Ž¤¹¤«”©"
-#: ../install_steps_graphical.pm_.c:553 ../install_steps_gtk.pm_.c:574
+#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:607
msgid "There was an error ordering packages:"
msgstr "„Ń„Ć„±”¼„ø¤ĪĄ°Īó¤Ē„؄锼¤¬ČÆĄø:"
-#: ../install_steps_graphical.pm_.c:577 ../install_steps_interactive.pm_.c:893
+#: ../../install_steps_graphical.pm_.c:577
+#: ../../install_steps_interactive.pm_.c:997
msgid "Use existing configuration for X11?"
msgstr "¤¹¤Ē¤Ė¤¢¤ė X11 ¤ĪĄßÄź¤ņ»Č¤¤¤Ž¤¹¤«”©"
-#: ../install_steps_gtk.pm_.c:259
+#: ../../install_steps_gtk.pm_.c:154
+msgid "Please, choose one of the following classes of installation:"
+msgstr "°Ź²¼¤Ī„¤„ó„¹„Č”¼„ė„Ƅ鄹¤ņ¤É¤ģ¤«ĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤"
+
+#: ../../install_steps_gtk.pm_.c:195
+msgid "You don't have any windows partitions!"
+msgstr "„¦„£„ó„É„¦„ŗ¤Ī„Ń”¼„Ę„£„·„ē„󤬤¢¤ź¤Ž¤»¤ó”Ŗ"
+
+#: ../../install_steps_gtk.pm_.c:197
+msgid "You don't have any enough room for Lnx4win"
+msgstr "Linux4Win¤¬Ęž¤ė¤Ą¤±¤Ī¶õ¤­¤¬¤¢¤ź¤Ž¤»¤ó”Ŗ"
+
+#: ../../install_steps_gtk.pm_.c:213
msgid ""
"WARNING!\n"
"\n"
@@ -1963,172 +2395,361 @@ msgstr ""
"¤Ŗ¤¤¤Ę¤Æ¤Ą¤µ¤¤”£\n"
"Āē¾ęÉפŹ¤é Ok ¤ņ²”¤·¤Ę²¼¤µ¤¤”£"
-#: ../install_steps_gtk.pm_.c:278
+#: ../../install_steps_gtk.pm_.c:232
msgid "Automatic resizing failed"
msgstr "¼«Ę°„ź„µ„¤„ŗ¤Ė¼ŗĒŌ"
-#: ../install_steps_gtk.pm_.c:312
+#: ../../install_steps_gtk.pm_.c:261
+msgid "Which partition do you want to use to put Linux4Win?"
+msgstr "¤É¤Ī„Ń”¼„Ę„£„·„ē„ó¤ĖLinux4Win¤ņĘž¤ģ¤Ž¤¹¤«"
+
+#: ../../install_steps_gtk.pm_.c:280
+msgid "Choose the sizes"
+msgstr "„µ„¤„ŗ¤ņĮŖĀņ"
+
+#: ../../install_steps_gtk.pm_.c:282
+msgid "Root partition size in MB: "
+msgstr "„ė”¼„Č„Ń”¼„Ę„£„·„ē„ó¤Ī„µ„¤„ŗ (MB)"
+
+#: ../../install_steps_gtk.pm_.c:284
+msgid "Swap partition size in MB: "
+msgstr "„¹„ļ„Ƅׄє¼„Ę„£„·„ē„ó¤Ī„µ„¤„ŗ (MB): "
+
+#: ../../install_steps_gtk.pm_.c:316
+#, 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:318
+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:323
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."
+"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:315
-msgid "You will be able to choose more precisely in next step"
+#: ../../install_steps_gtk.pm_.c:329
+msgid "You will be able to choose them more specifically in the next step."
msgstr "¼”¤Ī„¹„ʄƄפĒ¤Ļ¤ā¤Ć¤ČŗŁ¤«¤¤ĮŖĀņ¤¬½ŠĶ褎¤¹"
-#: ../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:331
+msgid "Percentage of packages to install"
+msgstr "„¤„ó„¹„Č”¼„ė¤¹¤ė„Ń„Ć„±”¼„øĆę¤Ī³ä¹ē"
+
+#: ../../install_steps_gtk.pm_.c:372
+msgid "Automatic dependencies"
+msgstr "°ĶĀø“Ų·ø¤Ī¼«Ę°²ņ·č"
+
+#: ../../install_steps_gtk.pm_.c:425 ../../standalone/rpmdrake_.c:101
+msgid "Expand Tree"
+msgstr "„Ä„ź”¼¤ņ¤Ī¤Š¤¹"
+
+#: ../../install_steps_gtk.pm_.c:426 ../../standalone/rpmdrake_.c:102
+msgid "Collapse Tree"
+msgstr "„Ä„ź”¼¤ņ½Ģ¤į¤ė"
+
+#: ../../install_steps_gtk.pm_.c:427
+msgid "Toggle between flat and group sorted"
+msgstr "¤½¤Ī¤Ž¤Ž¤Č„°„ė”¼„׏Ģ¤ņĄŚ¤źĀŲ¤Ø"
+
+#: ../../install_steps_gtk.pm_.c:445
msgid "Bad package"
msgstr "„Ń„Ć„±”¼„ø¤¬²õ¤ģ¤Ę¤¤¤Ž¤¹"
-#: ../install_steps_gtk.pm_.c:522
+#: ../../install_steps_gtk.pm_.c:446
+#, c-format
+msgid "Name: %s\n"
+msgstr "Ģ¾Į°: %s\n"
+
+#: ../../install_steps_gtk.pm_.c:449
+#, c-format
+msgid "Importance: %s\n"
+msgstr "½ÅĶ×: %s\n"
+
+#: ../../install_steps_gtk.pm_.c:457
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "¹ē·×„µ„¤„ŗ: %d / %d MB"
+
+#: ../../install_steps_gtk.pm_.c:467
+msgid "This is a mandatory package, it can't be unselected"
+msgstr "¤³¤ģ¤ĻÉŌ²Ä·ē¤Ź„Ń„Ć„±”¼„ø¤Ē¤¹”£ČóĮŖĀņ¤Ė¤Ļ¤Ē¤­¤Ž¤»¤ó"
+
+#: ../../install_steps_gtk.pm_.c:469
+msgid "You can't unselect this package. It is already installed"
+msgstr "¤³¤Ī„Ń„Ć„±”¼„ø¤ĻČóĮŖĀņ¤Ė¤Ē¤­¤Ž¤»¤ó”£¤¹¤Ē¤Ė„¤„ó„¹„Č”¼„ėŗѤߤĒ¤¹"
+
+#: ../../install_steps_gtk.pm_.c:473
+msgid ""
+"This package must be upgraded\n"
+"Are you sure you want to deselect it?"
+msgstr ""
+"¤³¤Ī„Ń„Ć„±”¼„ø¤Ļ„¢„Ƅׄ°„ģ”¼„ɤ¬É¬ĶפĒ¤¹”£\n"
+"ĖÜÅö¤ĖĮŖĀņ²ņ½ü¤·¤Ę¤¤¤¤¤ó¤Ē¤¹¤«”©"
+
+#: ../../install_steps_gtk.pm_.c:476
+msgid "You can't unselect this package. It must be upgraded"
+msgstr "¤³¤Ī„Ń„Ć„±”¼„ø¤ĻĮŖĀņ²ņ½ü¤Ē¤­¤Ž¤»¤ó”£„¢„Ƅׄ°„ģ”¼„ɤ¬É¬ĶפĒ¤¹"
+
+#: ../../install_steps_gtk.pm_.c:489
+#, fuzzy
+msgid ""
+"You can't select this package as there is not enough space left to install it"
+msgstr "¤³¤Ī„Ń„Ć„±”¼„ø¤ĻČóĮŖĀņ¤Ė¤Ē¤­¤Ž¤»¤ó”£¤¹¤Ē¤Ė„¤„ó„¹„Č”¼„ėŗѤߤĒ¤¹"
+
+#: ../../install_steps_gtk.pm_.c:492
+msgid "The following packages are going to be installed/removed"
+msgstr "°Ź²¼¤Ī„Ń„Ć„±”¼„ø¤¬„¤„ó„¹„Č”¼„ė/¼č¤ź½ü¤«¤ģ¤Ž¤¹"
+
+#: ../../install_steps_gtk.pm_.c:501
+msgid "You can't select/unselect this package"
+msgstr "¤³¤Ī„Ń„Ć„±”¼„ø¤ĻĮŖĀņ”¦ČóĮŖĀņ¤Ē¤­¤Ž¤»¤ó"
+
+#: ../../install_steps_gtk.pm_.c:536
msgid "Estimating"
msgstr "»ī»»¤·¤Ę¤¤¤Ž¤¹"
-#: ../install_steps_gtk.pm_.c:544
+#: ../../install_steps_gtk.pm_.c:548 ../../interactive.pm_.c:84
+#: ../../interactive.pm_.c:223 ../../interactive_newt.pm_.c:49
+#: ../../interactive_newt.pm_.c:98 ../../interactive_stdio.pm_.c:27
+#: ../../my_gtk.pm_.c:201 ../../my_gtk.pm_.c:459
+msgid "Cancel"
+msgstr "„­„ć„ó„»„ė"
+
+#: ../../install_steps_gtk.pm_.c:561
#, c-format
msgid "%d packages"
msgstr "%d „Ń„Ć„±”¼„ø"
-#: ../install_steps_gtk.pm_.c:544
+#: ../../install_steps_gtk.pm_.c:561
msgid ", %U MB"
msgstr ", %U MB"
-#: ../install_steps_interactive.pm_.c:37
+#: ../../install_steps_gtk.pm_.c:592
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Cd-Rom ¤ņøņ“¹¤·¤Ę¤Æ¤Ą¤µ¤¤”Ŗ\n"
+"\"%s\" ¤Č¤¤¤¦ Cd-Rom ¤ņ„Ʉ鄤„Ö¤Ė¤¤¤ģ¤Ę”¢ Ok ¤ņ²”¤·¤Ę¤Æ¤Ą¤µ¤¤”£\n"
+"CD¤¬¤Ź¤±¤ģ¤Š”¢Cancel ¤ņ²”¤·¤Ę¤³¤Ī Cd-Rom ¤«¤é¤Ī„¤„ó„¹„Č”¼„ė¤ņ²óČņ¤·¤Ę²¼¤µ¤¤”£"
+
+#: ../../install_steps_gtk.pm_.c:611
+msgid "There was an error installing packages:"
+msgstr "„Ń„Ć„±”¼„ø¤Ī„¤„ó„¹„Č”¼„ė¤Ē„؄锼¤¬ČÆĄø:"
+
+#: ../../install_steps_interactive.pm_.c:40
msgid "An error occurred"
msgstr "„؄锼ČÆĄø"
-#: ../install_steps_interactive.pm_.c:54
-msgid "Which language do you want?"
-msgstr "¤É¤ĪøĄøģ¤ņ»Č¤¤¤Ž¤¹¤«”©"
+#: ../../install_steps_interactive.pm_.c:57
+msgid "Please, choose a language to use."
+msgstr "¤É¤ĪøĄøģ¤ņ»Č¤¦¤«ĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤¤Ķ”£"
-#: ../install_steps_interactive.pm_.c:68 ../standalone/keyboarddrake_.c:22
+#: ../../install_steps_interactive.pm_.c:72
+#: ../../standalone/keyboarddrake_.c:22
msgid "Keyboard"
msgstr "„­”¼„Ü”¼„É"
-#: ../install_steps_interactive.pm_.c:69 ../standalone/keyboarddrake_.c:23
-msgid "What is your keyboard layout?"
+#: ../../install_steps_interactive.pm_.c:73
+msgid "Please, choose your keyboard layout."
msgstr "„­”¼„Ü”¼„É„ģ„¤„¢„¦„ȤĻ²æ¤Ē¤¹¤«”©"
-#: ../install_steps_interactive.pm_.c:79
-msgid "Install/Upgrade"
-msgstr "„¤„ó„¹„Č”¼„ė/„¢„Ƅׄ°„ģ”¼„É"
+#: ../../install_steps_interactive.pm_.c:81
+msgid "You can choose other languages that will be available after install"
+msgstr "„¤„ó„¹„Č”¼„ėøå»ČĶŃ²ÄĒ½¤Ė¤Ź¤ė¤Ū¤«¤ĪøĄøģ¤ņĮŖĀņ¤Ē¤­¤Ž¤¹"
-#: ../install_steps_interactive.pm_.c:80
-msgid "Is this an install or an upgrade?"
-msgstr "„¤„ó„¹„Č”¼„ė¤Ē¤¹¤«”¤„¢„Ƅׄ°„ģ”¼„ɤĒ¤¹¤«”©"
-
-#: ../install_steps_interactive.pm_.c:81
-msgid "Upgrade"
-msgstr "„¢„Ƅׄ°„ģ”¼„É"
-
-#: ../install_steps_interactive.pm_.c:89
+#: ../../install_steps_interactive.pm_.c:91
msgid "Root Partition"
msgstr "„ė”¼„Č„Ń”¼„Ę„£„·„ē„ó"
-#: ../install_steps_interactive.pm_.c:90
+#: ../../install_steps_interactive.pm_.c:92
msgid "What is the root partition (/) of your system?"
msgstr "„·„¹„Ę„ą¤Ī„ė”¼„Č„Ń”¼„Ę„£„·„ē„ó(/) ¤Ļ¤Ź¤ó¤Ē¤¹¤«”©"
-#: ../install_steps_interactive.pm_.c:100
-msgid "Recommended"
-msgstr "æ侩"
+#: ../../install_steps_interactive.pm_.c:100
+#: ../../install_steps_interactive.pm_.c:140
+msgid "Install Class"
+msgstr "„¤„ó„¹„Č”¼„ė„Ƅ鄹"
-#: ../install_steps_interactive.pm_.c:101
+#: ../../install_steps_interactive.pm_.c:100
+msgid "Which installation class do you want?"
+msgstr "¤É¤Ī„¤„ó„¹„Č”¼„ė„Ƅ鄹¤ņĖ¾¤ß¤Ž¤¹¤«”©"
+
+#: ../../install_steps_interactive.pm_.c:102
+msgid "Install/Upgrade"
+msgstr "„¤„ó„¹„Č”¼„ė/„¢„Ƅׄ°„ģ”¼„É"
+
+#: ../../install_steps_interactive.pm_.c:102
+msgid "Is this an install or an upgrade?"
+msgstr "„¤„ó„¹„Č”¼„ė¤Ē¤¹¤«”¤„¢„Ƅׄ°„ģ”¼„ɤĒ¤¹¤«”©"
+
+#: ../../install_steps_interactive.pm_.c:110
+msgid "Automated"
+msgstr "Į“¼«Ę°"
+
+#: ../../install_steps_interactive.pm_.c:112
+#: ../../install_steps_interactive.pm_.c:124
msgid "Customized"
msgstr "„«„¹„æ„Ž„¤„ŗ"
-#: ../install_steps_interactive.pm_.c:102
+#: ../../install_steps_interactive.pm_.c:113
+#: ../../install_steps_interactive.pm_.c:124
msgid "Expert"
msgstr "„Ø„­„¹„Ń”¼„Č"
-#: ../install_steps_interactive.pm_.c:104
-#: ../install_steps_interactive.pm_.c:118
-msgid "Install Class"
-msgstr "„¤„ó„¹„Č”¼„ė„Ƅ鄹"
+#: ../../install_steps_interactive.pm_.c:122
+msgid ""
+"Are you sure you are an expert? \n"
+"You will be allowed to make powerfull but dangerous things here."
+msgstr ""
+"¤¢¤Ź¤æ”¢ĖÜÅö¤Ė„Ū„ó„ȤĪ„Ø„­„¹„Ń”¼„ȤĒ¤·¤ē¤¦¤Ķ¤§”£\n"
+"¤³¤ģ¤ņĮŖ¤Ö¤Č”¢¶ÆĪĻ¤Ź¤Ą¤±¤Ė¤Ø¤é¤Æ“ķø±¤Ź¤Ž¤Ķ¤¬¤Ē¤­¤Į¤ć¤¤¤Ž¤¹¤č”£"
-#: ../install_steps_interactive.pm_.c:105
-msgid "What installation class do you want?"
-msgstr "¤É¤Ī„¤„ó„¹„Č”¼„ė„Ƅ鄹¤ņĮŖ¤Ó¤Ž¤¹¤«”©"
+#: ../../install_steps_interactive.pm_.c:129
+msgid "Upgrade"
+msgstr "„¢„Ƅׄ°„ģ”¼„É"
-#: ../install_steps_interactive.pm_.c:114
+#: ../../install_steps_interactive.pm_.c:135
msgid "Normal"
msgstr "„Ī”¼„Ž„ė"
-#: ../install_steps_interactive.pm_.c:115
+#: ../../install_steps_interactive.pm_.c:136
msgid "Development"
msgstr "³«ČÆĶŃ"
-#: ../install_steps_interactive.pm_.c:116
+#: ../../install_steps_interactive.pm_.c:137
msgid "Server"
msgstr "„µ”¼„Š"
-#: ../install_steps_interactive.pm_.c:119
-msgid "What usage do you want?"
-msgstr "¤É¤Ī»ČĶŃĖ”¤ņĮŖ¤Ó¤Ž¤¹¤«”©"
+#: ../../install_steps_interactive.pm_.c:141
+msgid "Which usage is your system used for ?"
+msgstr "„·„¹„Ę„ą¤Ī»Č¤¤Źż¤ņĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤”£"
-#: ../install_steps_interactive.pm_.c:132 ../standalone/mousedrake_.c:25
-msgid "What is the type of your mouse?"
+#: ../../install_steps_interactive.pm_.c:152
+msgid "Please, choose the type of your mouse."
msgstr "„Ž„¦„¹¤Ī·æ¤Ļ¤Ź¤ó¤Ē¤¹¤«”©"
-#: ../install_steps_interactive.pm_.c:140 ../standalone/mousedrake_.c:38
+#: ../../install_steps_interactive.pm_.c:160 ../../standalone/mousedrake_.c:38
msgid "Mouse Port"
msgstr "„Ž„¦„¹„Ż”¼„Č"
-#: ../install_steps_interactive.pm_.c:141 ../standalone/mousedrake_.c:39
-msgid "Which serial port is your mouse connected to?"
+#: ../../install_steps_interactive.pm_.c:161
+msgid "Please choose on which serial port your mouse is connected to."
msgstr "„Ž„¦„¹¤Ļ¤É¤Ī„·„ź„¢„ė„Ż”¼„ȤĖ¤Ä¤Ź¤¬¤Ć¤Ę¤¤¤Ž¤¹¤«”©"
-#: ../install_steps_interactive.pm_.c:157
+#: ../../install_steps_interactive.pm_.c:172
+msgid "Configuring IDE"
+msgstr "IDE ¤ĪĄßÄź"
+
+#: ../../install_steps_interactive.pm_.c:172
+msgid "IDE"
+msgstr "IDE"
+
+#: ../../install_steps_interactive.pm_.c:182
msgid "no available partitions"
msgstr "»Č¤Ø¤ė„Ń”¼„Ę„£„·„ē„󤬤¢¤ź¤Ž¤»¤ó"
-#: ../install_steps_interactive.pm_.c:159
+#: ../../install_steps_interactive.pm_.c:184
#, c-format
-msgid "(%dMb)"
-msgstr "(%dMb)"
+msgid "(%dMB)"
+msgstr "(%dMB)"
-#: ../install_steps_interactive.pm_.c:166
-msgid "Which partition do you want to use as your root partition"
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Please choose a partition to use as your root partition."
msgstr "¤É¤Ī„Ń”¼„Ę„£„·„ē„ó¤ņ„ė”¼„Č„Ń”¼„Ę„£„·„ē„ó¤Ė¤·¤Ž¤¹¤«"
-#: ../install_steps_interactive.pm_.c:173
+#: ../../install_steps_interactive.pm_.c:198
msgid "Choose the mount points"
msgstr "„Ž„¦„ó„Č„Ż„¤„ó„ȤĪĮŖĀņ"
-#: ../install_steps_interactive.pm_.c:185
+#: ../../install_steps_interactive.pm_.c:210
msgid "You need to reboot for the partition table modifications to take place"
msgstr "„Ń”¼„Ę„£„·„ē„ó„Ę”¼„Ö„ė¤ĪŹŃ¹¹¤ņČæ±Ē¤¹¤ė¤Ė¤Ļ„ź„Ö”¼„Ȥ·¤Ę¤Æ¤Ą¤µ¤¤"
-#: ../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:236
msgid "Choose the partitions you want to format"
msgstr "„Õ„©”¼„Ž„ƄȤ¹¤ė„Ń”¼„Ę„£„·„ē„ó¤ņĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤"
-#: ../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:240
msgid "Check bad blocks?"
-msgstr ""
+msgstr "ÉŌĪÉ„Ö„ķ„Ć„Æ¤ņø”ŗŗ¤·¤Ž¤¹¤«”©"
+
+#: ../../install_steps_interactive.pm_.c:248
+msgid "Formatting partitions"
+msgstr "„Ń”¼„Ę„£„·„ē„ó¤ņ„Õ„©”¼„Ž„Ć„Č"
-#: ../install_steps_interactive.pm_.c:230
+#: ../../install_steps_interactive.pm_.c:252
+#, c-format
+msgid "Creating and formatting file %s"
+msgstr "„Õ„”„¤„ė %s ¤ĪŗīĄ®¤Č„Õ„©”¼„Ž„Ć„Č"
+
+#: ../../install_steps_interactive.pm_.c:255
+msgid "Not enough swap to fulfill installation, please add some"
+msgstr "„¤„ó„¹„Č”¼„ė¤Ė½½Ź¬¤Ź„¹„ļ„Ƅפ¬¤¢¤ź¤Ž¤»¤ó”¤„¹„ļ„Ƅפņ²Ć¤Ø¤Ę²¼¤µ¤¤"
+
+#: ../../install_steps_interactive.pm_.c:261
msgid "Looking for available packages"
msgstr "¼ź»ż¤Į¤Ī„Ń„Ć„±”¼„ø¤ņ¤µ¤¬¤·¤Ę¤¤¤Ž¤¹"
-#: ../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:267
msgid "Finding packages to upgrade"
msgstr "„¢„Ƅׄ°„ģ”¼„ɤ¹¤ė„Ń„Ć„±”¼„ø¤ņ¤µ¤¬¤·¤Ę¤¤¤Ž¤¹"
-#: ../install_steps_interactive.pm_.c:266
-#, c-format
-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 ""
+#: ../../install_steps_interactive.pm_.c:284
+msgid "Your system has not enough space left for installation or upgrade"
+msgstr "„¤„ó„¹„Č”¼„ė¤ä„¢„Ƅׄ°„ģ”¼„ɤĖɬĶפŹ„Ē„£„¹„ƤĪ¶õ¤­ĶĘĪĢ¤¬ÉŌĀ­¤Ē¤¹”£"
-#: ../install_steps_interactive.pm_.c:290
+#: ../../install_steps_interactive.pm_.c:317
msgid "Package Group Selection"
msgstr "„Ń„Ć„±”¼„ø„°„ė”¼„פņĮŖĀņ"
-#: ../install_steps_interactive.pm_.c:326
+#: ../../install_steps_interactive.pm_.c:320
+msgid "Individual package selection"
+msgstr "øÄŹĢ„Ń„Ć„±”¼„ø¤ĪĮŖĀņ"
+
+#: ../../install_steps_interactive.pm_.c:360
+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 ""
+"¾åµ­¤Ī°ģĶ÷¤ĪCD¤¬¤¹¤Ł¤Ę¤½¤ķ¤Ć¤Ę¤¤¤ģ¤Š”¢Ok¤ņ„Æ„ź„Ć„Æ¤·¤Ž¤·¤ē¤¦”£\n"
+"CD¤¬°ģ¤Ä¤ā¤Ź¤±¤ģ¤Š”¢„­„ć„ó„»„ė¤ņ„Æ„ź„Ć„Æ¤·¤Ę¤Æ¤Ą¤µ¤¤”£\n"
+"¼źøµ¤Ė¤Ź¤¤CD¤¬¤¢¤ģ¤Š”¢¤½¤ģ¤ņĮŖĀņ¤«¤é¤Ļ¤ŗ¤·¤Ę¤«¤éOk¤ņ„Æ„ź„Ć„Æ¤·¤Ž¤¹”£"
+
+#: ../../install_steps_interactive.pm_.c:363
+#, c-format
+msgid "Cd-Rom labeled \"%s\""
+msgstr "\"%s\"¤Č¤¤¤¦Cd-Rom"
+
+#: ../../install_steps_interactive.pm_.c:391
msgid ""
"Installing package %s\n"
"%d%%"
@@ -2136,55 +2757,55 @@ msgstr ""
"„Ń„Ć„±”¼„ø %s ¤ņ„¤„ó„¹„Č”¼„ė\n"
"%d%%"
-#: ../install_steps_interactive.pm_.c:335
-msgid "Post install configuration"
+#: ../../install_steps_interactive.pm_.c:400
+msgid "Post-install configuration"
msgstr "„¤„ó„¹„Č”¼„ėĄßÄź¤ņ³ĪÄź"
-#: ../install_steps_interactive.pm_.c:346
+#: ../../install_steps_interactive.pm_.c:410
msgid "Keep the current IP configuration"
msgstr "ø½ŗߤĪ IP ¤ĪĄßÄź¤ņŹŻ»ż"
-#: ../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:411
msgid "Reconfigure network now"
msgstr "„Ķ„Ć„Č„ļ”¼„ƤņŗĘĄßÄź¤¹¤ė"
-#: ../install_steps_interactive.pm_.c:348
-#: ../install_steps_interactive.pm_.c:360
+#: ../../install_steps_interactive.pm_.c:412
msgid "Do not set up networking"
msgstr "„Ķ„Ć„Č„ļ”¼„ƤņĄßÄź¤·¤Ź¤¤"
-#: ../install_steps_interactive.pm_.c:350
-#: ../install_steps_interactive.pm_.c:358
+#: ../../install_steps_interactive.pm_.c:415
+#: ../../install_steps_interactive.pm_.c:420
msgid "Network Configuration"
msgstr "„Ķ„Ć„Č„ļ”¼„ƤĪĄßÄź"
-#: ../install_steps_interactive.pm_.c:351
+#: ../../install_steps_interactive.pm_.c:416
msgid "Local networking has already been configured. Do you want to:"
msgstr "„ķ”¼„«„ė„Ķ„Ć„Č„ļ”¼„ƤĻĄßÄźŗѤߤĒ¤¹”£°Ź²¼¤ņ¤·¤æ¤¤¤Ē¤¹¤«”§"
-#: ../install_steps_interactive.pm_.c:359
-msgid "Do you want to configure networking for your system?"
-msgstr "„·„¹„Ę„ą¤Ī„Ķ„Ć„Č„ļ”¼„ƤņĄßÄź¤·¤Ž¤¹¤«”©"
-
-#: ../install_steps_interactive.pm_.c:360
-msgid "Dialup with modem"
-msgstr "„ā„Ē„ą¤Ē„Ą„¤„¢„ė„¢„Ć„×"
+#: ../../install_steps_interactive.pm_.c:421
+msgid "Do you want to configure a local network for your system?"
+msgstr "„·„¹„Ę„ą¤Ī„ķ”¼„«„ė LAN „Ķ„Ć„Č„ļ”¼„ƤņĄßÄź¤·¤Ž¤¹¤«”©"
-#: ../install_steps_interactive.pm_.c:360
-msgid "Local LAN"
-msgstr "„ķ”¼„«„ė LAN"
-
-#: ../install_steps_interactive.pm_.c:369
+#: ../../install_steps_interactive.pm_.c:427
msgid "no network card found"
msgstr "„Ķ„Ć„Č„ļ”¼„Æ„«”¼„ɤ¬ø«ÉÕ¤«¤ź¤Ž¤»¤ó"
-#: ../install_steps_interactive.pm_.c:399
-#: ../install_steps_interactive.pm_.c:400
+#: ../../install_steps_interactive.pm_.c:449
+msgid "Modem Configuration"
+msgstr "„ā„Ē„ą¤ĪĄßÄź"
+
+#: ../../install_steps_interactive.pm_.c:450
+msgid ""
+"Do you want to configure a dialup connection with modem for your system?"
+msgstr "„·„¹„Ę„ą¤Ī„ā„Ē„ą¤Ė¤č¤ė„Ą„¤„¢„ė„¢„ƄׄĶ„Ć„Č„ļ”¼„ƤņĄßÄź¤·¤Ž¤¹¤«”©"
+
+#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid "Configuring network device %s"
msgstr "„Ķ„Ć„Č„ļ”¼„Æ„Ē„Š„¤„¹ %s ¤ĪĄßÄź"
-#: ../install_steps_interactive.pm_.c:401
+#: ../../install_steps_interactive.pm_.c:464
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -2194,31 +2815,31 @@ msgstr ""
"³Ę”¹¤Ī¹ąĢܤĖ¤Ļ„ɄƄȤĒ¶čĄŚ¤é¤ģ¤æ½½æŹæō(Ī攤1.2.3.4)¤¬IP "
"„¢„É„ģ„¹¤Č¤·¤ĘĘžĪĻ¤µ¤ģ¤Ž¤¹”£"
-#: ../install_steps_interactive.pm_.c:404
+#: ../../install_steps_interactive.pm_.c:467
msgid "Automatic IP"
msgstr "IP ¤Ī¼«Ę°ĄßÄź"
-#: ../install_steps_interactive.pm_.c:404
+#: ../../install_steps_interactive.pm_.c:467
msgid "IP address:"
msgstr "IP „¢„É„ģ„¹:"
-#: ../install_steps_interactive.pm_.c:404
+#: ../../install_steps_interactive.pm_.c:467
msgid "Netmask:"
msgstr "„Ķ„Ć„Č„Ž„¹„Æ:"
-#: ../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:468
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../install_steps_interactive.pm_.c:411 ../printerdrake.pm_.c:149
+#: ../../install_steps_interactive.pm_.c:474 ../../printerdrake.pm_.c:89
msgid "IP address should be in format 1.2.3.4"
msgstr "IP „¢„É„ģ„¹¤Ļ 1.2.3.4 ¤Ī¤č¤¦¤ĖĘžĪĻ¤·¤Ę²¼¤µ¤¤"
-#: ../install_steps_interactive.pm_.c:429
+#: ../../install_steps_interactive.pm_.c:492
msgid "Configuring network"
msgstr "„Ķ„Ć„Č„ļ”¼„ƤĪĄßÄź"
-#: ../install_steps_interactive.pm_.c:430
+#: ../../install_steps_interactive.pm_.c:493
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -2229,91 +2850,79 @@ msgstr ""
"„Ū„¹„ČĢ¾¤Ļ ``mybox.mylab.myco.com'' ¤Ī¤č¤¦¤Ė¤·¤Ę²¼¤µ¤¤”£\n"
"¤ā¤·„²”¼„Č„¦„§„¤¤¬¤¢¤ģ¤Š”¤¤½¤Ī IP „¢„É„ģ„¹¤āĘžĪĻ¤·¤Ę²¼¤µ¤¤”£"
-#: ../install_steps_interactive.pm_.c:434
+#: ../../install_steps_interactive.pm_.c:497
msgid "DNS server:"
msgstr "DNS „µ”¼„Š:"
-#: ../install_steps_interactive.pm_.c:434
+#: ../../install_steps_interactive.pm_.c:497
msgid "Gateway device:"
msgstr "„²”¼„Č„¦„§„¤„Ē„Š„¤„¹:"
-#: ../install_steps_interactive.pm_.c:434
+#: ../../install_steps_interactive.pm_.c:497
msgid "Gateway:"
msgstr "„²”¼„Č„¦„§„¤:"
-#: ../install_steps_interactive.pm_.c:434
+#: ../../install_steps_interactive.pm_.c:497
msgid "Host name:"
msgstr "„Ū„¹„ČĢ¾:"
-#: ../install_steps_interactive.pm_.c:447
+#: ../../install_steps_interactive.pm_.c:510
msgid "Try to find a modem?"
msgstr "„ā„Ē„ą¤ņø”ŗ÷¤·¤Ž¤¹¤«”©"
-#: ../install_steps_interactive.pm_.c:457
-msgid "Which serial port is your modem connected to?"
-msgstr "„Ž„¦„¹¤Ļ¤É¤Ī„·„ź„¢„ė„Ż”¼„ȤĖ¤Ä¤Ź¤¬¤Ć¤Ę¤¤¤Ž¤¹¤«”©"
+#: ../../install_steps_interactive.pm_.c:521
+msgid "Please choose which serial port your modem is connected to."
+msgstr "„ā„Ē„ą¤Ļ¤É¤Ī„·„ź„¢„ė„Ż”¼„ȤĖ¤Ä¤Ź¤¬¤Ć¤Ę¤¤¤Ž¤¹¤«”©"
-#: ../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:527
msgid "Dialup options"
msgstr "„Ą„¤„¢„ė„¢„ƄׄŖ„ׄ·„ē„ó"
-#: ../install_steps_interactive.pm_.c:463
+#: ../../install_steps_interactive.pm_.c:528
msgid "Connection name"
msgstr "ĄÜĀ³Ģ¾"
-#: ../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:529
msgid "Phone number"
msgstr "ÅÅĻĆČÖ¹ę"
-#: ../install_steps_interactive.pm_.c:465
+#: ../../install_steps_interactive.pm_.c:530
msgid "Login ID"
msgstr "„ķ„°„¤„ó ID"
-#: ../install_steps_interactive.pm_.c:466
-#: ../install_steps_interactive.pm_.c:578
-#: ../install_steps_interactive.pm_.c:624
-#: ../install_steps_interactive.pm_.c:724 ../standalone/adduserdrake_.c:40
-msgid "Password"
-msgstr "„Ń„¹„ļ”¼„É"
-
-#: ../install_steps_interactive.pm_.c:467
+#: ../../install_steps_interactive.pm_.c:532
msgid "Authentication"
msgstr "Ē§¾Ś"
-#: ../install_steps_interactive.pm_.c:467
+#: ../../install_steps_interactive.pm_.c:532
msgid "CHAP"
msgstr "CHAP"
-#: ../install_steps_interactive.pm_.c:467
+#: ../../install_steps_interactive.pm_.c:532
msgid "PAP"
msgstr "PAP"
-#: ../install_steps_interactive.pm_.c:467
+#: ../../install_steps_interactive.pm_.c:532
msgid "Script-based"
msgstr "„¹„Æ„ź„ׄȤņ»Č¤¦Ē§¾Ś"
-#: ../install_steps_interactive.pm_.c:467
+#: ../../install_steps_interactive.pm_.c:532
msgid "Terminal-based"
msgstr "„攼„ß„Ź„ė¤«¤é¤ĪĒ§¾Ś"
-#: ../install_steps_interactive.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:533
msgid "Domain name"
msgstr "„É„į„¤„óĢ¾"
-#: ../install_steps_interactive.pm_.c:469
+#: ../../install_steps_interactive.pm_.c:535
msgid "First DNS Server"
msgstr "„Õ„””¼„¹„Č DNS „µ”¼„Š"
-#: ../install_steps_interactive.pm_.c:470
+#: ../../install_steps_interactive.pm_.c:536
msgid "Second DNS Server"
msgstr "„»„«„ó„É DNS „µ”¼„Š"
-#: ../install_steps_interactive.pm_.c:483
-msgid "Bringing up the network"
-msgstr "„Ķ„Ć„Č„ļ”¼„Ƥņ¤æ¤Į¤¢¤²¤ė"
-
-#: ../install_steps_interactive.pm_.c:492
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:549
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
"\n"
@@ -2330,7 +2939,7 @@ msgid ""
"In addition customer and/or end user shall particularly be aware to not "
"infringe\n"
"the laws of his/their jurisdiction. Should customer and/or end user do not\n"
-"respect the provision of these applicable laws, he/they will incur serious\n"
+"respect the provision of these applicable laws, he/they will incure serious\n"
"sanctions.\n"
"\n"
"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
@@ -2377,124 +2986,89 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../install_steps_interactive.pm_.c:523
+#: ../../install_steps_interactive.pm_.c:580
msgid "Choose a mirror from which to get the packages"
msgstr "¤É¤Ī„µ„¤„Ȥ«¤é„Ń„Ć„±”¼„ø¤ņ»ż¤Ć¤Ę¤Æ¤ė¤«¤ņĮŖĀņ"
-#: ../install_steps_interactive.pm_.c:528
+#: ../../install_steps_interactive.pm_.c:588
msgid "Contacting the mirror to get the list of available packages"
msgstr "„µ„¤„ȤĖĄÜĀ³¤·¤Ę„Ń„Ć„±”¼„ø°ģĶ÷¤ņ¼čĘĄ¤·¤Ę¤¤¤Ž¤¹"
-#: ../install_steps_interactive.pm_.c:532
-msgid "Which packages do you want to install"
-msgstr "¤É¤Ī„Ń„Ć„±”¼„ø¤ņ„¤„ó„¹„Č”¼„ė¤·¤Ž¤¹¤«"
-
-#: ../install_steps_interactive.pm_.c:534
-msgid "Downloading cryptographic packages"
-msgstr "°Å¹ę“ŲĻ¢¤Ī„Ń„Ć„±”¼„ø¤ņ„Ą„¦„ó„ķ”¼„ÉĆę"
+#: ../../install_steps_interactive.pm_.c:592
+msgid "Please choose the packages you want to install."
+msgstr "„¤„ó„¹„Č”¼„ė¤·¤æ¤¤„Ń„Ć„±”¼„ø¤ņĮŖ¤ó¤Ē²¼¤µ¤¤"
-#: ../install_steps_interactive.pm_.c:544
+#: ../../install_steps_interactive.pm_.c:606
msgid "Which is your timezone?"
msgstr "¤¢¤Ź¤æ¤Ī»ž“ÖĀÓ¤Ļ¤É¤ģ¤Ē¤¹¤«”©"
-#: ../install_steps_interactive.pm_.c:545
+#: ../../install_steps_interactive.pm_.c:607
msgid "Is your hardware clock set to GMT?"
msgstr "„Ļ”¼„É„¦„§„¢„Æ„ķ„Ć„Æ¤Ļ GMT ¤Ė„»„ƄȤ·¤Ę¤¢¤ź¤Ž¤¹¤«”©"
-#: ../install_steps_interactive.pm_.c:555
-msgid "Printer"
-msgstr "„ׄź„ó„æ"
-
-#: ../install_steps_interactive.pm_.c:556
-msgid "Would you like to configure a printer?"
-msgstr "„ׄź„ó„æ¤ĪĄßÄź¤ņ¤·¤Ž¤¹¤«”©"
-
-#: ../install_steps_interactive.pm_.c:576
+#: ../../install_steps_interactive.pm_.c:652
msgid "No password"
msgstr "„Ń„¹„ļ”¼„ɤŹ¤·"
-#: ../install_steps_interactive.pm_.c:576
-#: ../install_steps_interactive.pm_.c:798 ../interactive.pm_.c:74
-#: ../interactive.pm_.c:84 ../interactive.pm_.c:164
-#: ../interactive_newt.pm_.c:50 ../interactive_newt.pm_.c:97
-#: ../interactive_stdio.pm_.c:27 ../my_gtk.pm_.c:192 ../my_gtk.pm_.c:425
-#: ../my_gtk.pm_.c:525
-msgid "Ok"
-msgstr "OK"
-
-#: ../install_steps_interactive.pm_.c:579
-#: ../install_steps_interactive.pm_.c:625
-#: ../install_steps_interactive.pm_.c:725 ../standalone/adduserdrake_.c:41
-msgid "Password (again)"
-msgstr "„Ń„¹„ļ”¼„É (¤ā¤¦°ģÅŁ)"
-
-#: ../install_steps_interactive.pm_.c:581
+#: ../../install_steps_interactive.pm_.c:657
msgid "Use shadow file"
msgstr "„·„ć„É„¦„Õ„”„¤„ė¤ņ»Č¤¦"
-#: ../install_steps_interactive.pm_.c:581
+#: ../../install_steps_interactive.pm_.c:657
msgid "shadow"
msgstr "„·„ć„É„¦"
-#: ../install_steps_interactive.pm_.c:582
+#: ../../install_steps_interactive.pm_.c:658
msgid "MD5"
msgstr "MD5"
-#: ../install_steps_interactive.pm_.c:582
+#: ../../install_steps_interactive.pm_.c:658
msgid "Use MD5 passwords"
msgstr "MD5 „Ń„¹„ļ”¼„ɤņ»Č¤¦"
-#: ../install_steps_interactive.pm_.c:584
+#: ../../install_steps_interactive.pm_.c:660
msgid "Use NIS"
msgstr "NIS ¤ņ»Č¤¦"
-#: ../install_steps_interactive.pm_.c:584
+#: ../../install_steps_interactive.pm_.c:660
msgid "yellow pages"
msgstr "„¤„Ø„ķ”¼„Ś”¼„ø"
-#: ../install_steps_interactive.pm_.c:588
-#: ../install_steps_interactive.pm_.c:636
-#: ../install_steps_interactive.pm_.c:736 ../standalone/adduserdrake_.c:52
-msgid "Please try again"
-msgstr "¤ā¤¦°ģÅŁ»ī¤·¤Ę²¼¤µ¤¤"
-
-#: ../install_steps_interactive.pm_.c:588
-#: ../install_steps_interactive.pm_.c:636
-#: ../install_steps_interactive.pm_.c:736 ../standalone/adduserdrake_.c:52
-msgid "The passwords do not match"
-msgstr "„Ń„¹„ļ”¼„ɤ¬°ģĆפ·¤Ž¤»¤ó"
-
-#: ../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:666
#, c-format
msgid "This password is too simple (must be at least %d characters long)"
msgstr "¤³¤Ī„Ń„¹„ļ”¼„ɤĻ“ŹĆ±¤¹¤®¤Ž¤¹”ŹŗĒÄć¤Ē¤ā %d Źø»ś»Č¤Ć¤Ę¤Æ¤Ą¤µ¤¤”Ė"
-#: ../install_steps_interactive.pm_.c:597
+#: ../../install_steps_interactive.pm_.c:673
msgid "Authentification NIS"
msgstr "Ē§¾ŚNIS"
-#: ../install_steps_interactive.pm_.c:598
+#: ../../install_steps_interactive.pm_.c:674
msgid "NIS Domain"
msgstr "NIS „É„į„¤„ó"
-#: ../install_steps_interactive.pm_.c:598
+#: ../../install_steps_interactive.pm_.c:674
msgid "NIS Server"
msgstr "NIS „µ”¼„Š"
-#: ../install_steps_interactive.pm_.c:618 ../standalone/adduserdrake_.c:34
+#: ../../install_steps_interactive.pm_.c:699
+#: ../../standalone/adduserdrake_.c:36
msgid "Accept user"
msgstr "¼õ¤±ÉÕ¤±¤ė„ę”¼„¶"
-#: ../install_steps_interactive.pm_.c:618 ../standalone/adduserdrake_.c:34
+#: ../../install_steps_interactive.pm_.c:699
+#: ../../standalone/adduserdrake_.c:36
msgid "Add user"
-msgstr "„ę”¼„¶¤ņ²Ć¤Ø¤ė"
+msgstr "„ę”¼„¶¤ņÄɲĆ"
-#: ../install_steps_interactive.pm_.c:619 ../standalone/adduserdrake_.c:35
+#: ../../install_steps_interactive.pm_.c:700
+#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid "(already added %s)"
msgstr "(¤¹¤Ē¤Ė %s ¤Ļ²Ć¤ļ¤Ć¤Ę¤¤¤Ž¤¹)"
-#: ../install_steps_interactive.pm_.c:619 ../standalone/adduserdrake_.c:35
+#: ../../install_steps_interactive.pm_.c:700
+#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid ""
"Enter a user\n"
@@ -2503,54 +3077,66 @@ msgstr ""
"„ę”¼„¶Ģ¾¤ņĘžĪĻ¤·¤Ę²¼¤µ¤¤\n"
"%s"
-#: ../install_steps_interactive.pm_.c:621 ../standalone/adduserdrake_.c:37
+#: ../../install_steps_interactive.pm_.c:702
+#: ../../standalone/adduserdrake_.c:39
msgid "Real name"
msgstr "¼ĀŗŻ¤Ī»įĢ¾"
-#: ../install_steps_interactive.pm_.c:622 ../standalone/adduserdrake_.c:38
+#: ../../install_steps_interactive.pm_.c:703 ../../printerdrake.pm_.c:84
+#: ../../printerdrake.pm_.c:109 ../../standalone/adduserdrake_.c:40
msgid "User name"
msgstr "„ę”¼„¶Ģ¾"
-#: ../install_steps_interactive.pm_.c:627 ../standalone/adduserdrake_.c:43
+#: ../../install_steps_interactive.pm_.c:708
+#: ../../standalone/adduserdrake_.c:45
msgid "Shell"
msgstr "„·„§„ė"
-#: ../install_steps_interactive.pm_.c:637 ../standalone/adduserdrake_.c:53
+#: ../../install_steps_interactive.pm_.c:710
+#: ../../standalone/adduserdrake_.c:47
+msgid "Icon"
+msgstr "„¢„¤„³„ó"
+
+#: ../../install_steps_interactive.pm_.c:720
+#: ../../standalone/adduserdrake_.c:57
msgid "This password is too simple"
msgstr "„Ń„¹„ļ”¼„ɤ¬“ŹĆ±¤¹¤®¤Ž¤¹"
-#: ../install_steps_interactive.pm_.c:638 ../standalone/adduserdrake_.c:54
+#: ../../install_steps_interactive.pm_.c:721
+#: ../../standalone/adduserdrake_.c:58
msgid "Please give a user name"
msgstr "„ę”¼„¶Ģ¾¤ņĶæ¤Ø¤Ę²¼¤µ¤¤"
-#: ../install_steps_interactive.pm_.c:639 ../standalone/adduserdrake_.c:55
+#: ../../install_steps_interactive.pm_.c:722
+#: ../../standalone/adduserdrake_.c:59
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "„ę”¼„¶Ģ¾¤Ė¤Ļ±Ń¾®Źø»ś”¤æō»ś”¤`-' `_' ¤·¤«»Č¤Ø¤Ž¤»¤ó”£"
-#: ../install_steps_interactive.pm_.c:640 ../standalone/adduserdrake_.c:56
+#: ../../install_steps_interactive.pm_.c:723
+#: ../../standalone/adduserdrake_.c:60
msgid "This user name is already added"
msgstr "¤³¤Ī„ę”¼„¶Ģ¾¤Ļ¤¹¤Ē¤Ė²Ć¤ļ¤Ć¤Ę¤¤¤Ž¤¹"
-#: ../install_steps_interactive.pm_.c:659
-msgid "First drive"
-msgstr "ŗĒ½é¤Ī„Ʉ鄤„Ö"
+#: ../../install_steps_interactive.pm_.c:747
+msgid "First floppy drive"
+msgstr "ŗĒ½é¤Ī„Õ„ķ„Ć„Ō”¼„Ʉ鄤„Ö"
-#: ../install_steps_interactive.pm_.c:660
-msgid "Second drive"
-msgstr "„»„«„ó„É „Ʉ鄤„Ö"
+#: ../../install_steps_interactive.pm_.c:748
+msgid "Second floppy drive"
+msgstr "ĘóČÖĢܤĪ„Õ„ķ„Ć„Ō”¼„Ʉ鄤„Ö"
-#: ../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:749
msgid "Skip"
msgstr "„¹„­„Ć„×"
-#: ../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:755
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
"install\n"
-"LILO on your system, or another operating system removes LILO, or LILO "
-"doesn't\n"
+"LILO (or grub) on your system, or another operating system removes LILO, or "
+"LILO doesn't\n"
"work with your hardware configuration. A custom bootdisk can also be used "
"with\n"
"the Mandrake rescue image, making it much easier to recover from severe "
@@ -2558,268 +3144,202 @@ msgid ""
"failures. Would you like to create a bootdisk for your system?"
msgstr ""
"„«„¹„æ„ą„Ö”¼„Č„Ē„£„¹„Ƥ¬¤¢¤ė¤Č”¢ÄĢ¾ļ¤Ī„Ö”¼„Č„ķ”¼„Ą¤ņ»Č¤ļ¤ŗ¤Ė Linux ¤ņ\n"
-"µÆĘ°¤Ē¤­¤Ž¤¹”£LILO ¤ņ„¤„ó„¹„Č”¼„ė¤·¤æ¤Æ¤Ź¤¤¾ģ¹ē¤ä”¢Ā¾¤Ī OS ¤Ė¤č¤ź\n"
-" LILO ¤¬ŗļ½ü¤µ¤ģ¤æ¾ģ¹ē”¢¤Ž¤æ¤Ļ„Ļ”¼„É„¦„§„¢ĄßÄź¤Ī¤æ¤į LILO ¤¬¤¦¤Ž¤ÆŗīĘ°\n"
+"µÆĘ°¤Ē¤­¤Ž¤¹”£LILO (¤Ž¤æ¤ĻGRUB)¤ņ„¤„ó„¹„Č”¼„ė¤·¤æ¤Æ¤Ź¤¤¾ģ¹ē¤ä”¢Ā¾¤Ī OS ¤¬\n"
+" LILO ¤ņŗļ½ü¤¹¤ė¾ģ¹ē”¢¤Ž¤æ¤Ļ„Ļ”¼„É„¦„§„¢ĄßÄź¤Ī¤æ¤į LILO ¤¬¤¦¤Ž¤ÆŗīĘ°\n"
"¤·¤Ź¤¤¾ģ¹ē¤Ė»ČĶѤĒ¤­¤Ž¤¹”£\n"
"„«„¹„æ„ą„Ö”¼„Č„Ē„£„¹„ƤĻ”¢Mandrake ¤Ī„·„¹„Ę„ąÉüµģĶѤĪ„ģ„¹„­„唼„¤„į”¼„ø\n"
"¤Č¤·¤Ę¤ā»ČĶѤĒ¤­¤Ž¤¹”£¤³¤ģ¤¬¤¢¤ģ¤Š„·„¹„Ę„ą¤¬“ķµ”¤Ė¤Ŗ¤Į¤¤¤Ć¤æ¤Č¤­¤Ė\n"
-"Éüµģ¤¹¤ė¤Ī¤¬³Ś¤Ė¤Ź¤ź¤Ž¤¹”£\n"
-"„Ö”¼„Č„Ē„£„¹„Ƥņŗī¤ź¤Ž¤¹¤«”©"
+"Éüµģ¤¹¤ė¤Ī¤¬³Ś¤Ė¤Ź¤ź¤Ž¤¹”£„Ö”¼„Č„Ē„£„¹„Ƥņŗī¤ź¤Ž¤¹¤«”©"
-#: ../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:764
msgid "Sorry, no floppy drive available"
msgstr "Ķ­øś¤Ź„Õ„ķ„Ć„Ō”¼„Ʉ鄤„Ö¤¬¤¢¤ź¤Ž¤»¤ó”¤¤“¤į¤ó¤Ź¤µ¤¤"
-#: ../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:767
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "„Ö”¼„Č„Ē„£„¹„Ƥņŗī¤ź¤æ¤¤„Õ„ķ„Ć„Ō„£„Ʉ鄤„Ö¤ņĮŖĀņ"
-#: ../install_steps_interactive.pm_.c:683
+#: ../../install_steps_interactive.pm_.c:772
#, c-format
msgid "Insert a floppy in drive %s"
msgstr "„Õ„ķ„Ć„Ō”¼¤ņ„Ʉ鄤„Ö %s ¤ĖĮŽĘž"
-#: ../install_steps_interactive.pm_.c:684
-#: ../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:773
msgid "Creating bootdisk"
msgstr "„Ö”¼„Č„Ē„£„¹„ƤĪŗīĄ®"
-#: ../install_steps_interactive.pm_.c:691
-msgid "Preparing bootloader"
-msgstr "„Ö”¼„Č„ķ”¼„Ą¤Ī½ąČ÷"
-
-#: ../install_steps_interactive.pm_.c:703
-msgid "First sector of boot partition"
-msgstr "„Ö”¼„Č„Ń”¼„Ę„£„·„ē„ó¤ĪŗĒ½é¤Ī„»„Æ„æ"
-
-#: ../install_steps_interactive.pm_.c:703
-msgid "First sector of drive (MBR)"
-msgstr "„Ʉ鄤„Ö¤ĪŗĒ½é¤Ī„»„Æ„æ (MBR)"
-
-#: ../install_steps_interactive.pm_.c:708
-msgid "LILO Installation"
-msgstr "LILO ¤Ī„¤„ó„¹„Č”¼„ė"
-
-#: ../install_steps_interactive.pm_.c:709
-msgid "Where do you want to install the bootloader?"
-msgstr "„Ö”¼„Č„ķ”¼„Ą¤ņ¤É¤³¤Ė„¤„ó„¹„Č”¼„ė¤·¤Ž¤¹¤«”©"
-
-#: ../install_steps_interactive.pm_.c:715
-msgid "Do you want to use LILO?"
-msgstr "LILO ¤ņ»Č¤¤¤Ž¤¹¤«”©"
-
-#: ../install_steps_interactive.pm_.c:718
-msgid "Boot device"
-msgstr "„Ö”¼„Č„Ē„Š„¤„¹"
-
-#: ../install_steps_interactive.pm_.c:719
-msgid "Linear (needed for some SCSI drives)"
-msgstr "„ź„Ė„¢ (SCSI „Ʉ鄤„Ö¤Ī°ģÉō¤ĒɬĶ×)"
-
-#: ../install_steps_interactive.pm_.c:719
-msgid "linear"
-msgstr "„ź„Ė„¢"
-
-#: ../install_steps_interactive.pm_.c:720
-msgid "Compact"
-msgstr "„³„ó„Ń„Æ„Č"
-
-#: ../install_steps_interactive.pm_.c:720
-msgid "compact"
-msgstr "„³„ó„Ń„Æ„Č"
-
-#: ../install_steps_interactive.pm_.c:721
-msgid "Delay before booting default image"
-msgstr "„Ē„Õ„©„ė„Č„¤„į”¼„øµÆĘ°¤ĪĀŌ¤Į»ž“Ö"
-
-#: ../install_steps_interactive.pm_.c:722
-msgid "Video mode"
-msgstr "„Ó„Ē„Ŗ„ā”¼„É"
-
-#: ../install_steps_interactive.pm_.c:726
-msgid "Restrict command line options"
-msgstr "„³„Ž„ó„Ʉ鄤„ó„Ŗ„ׄ·„ē„ó¤ĪĄ©øĀ"
+#: ../../install_steps_interactive.pm_.c:785 ../../standalone/drakboot_.c:55
+msgid "Installation of LILO failed. The following error occured:"
+msgstr "LILO ¤Ī„¤„ó„¹„Č”¼„ė¤Ė¼ŗĒŌ¤·¤Ž¤·¤æ”£°Ź²¼¤Ī„؄锼¤¬ČÆĄø:"
-#: ../install_steps_interactive.pm_.c:726
-msgid "restrict"
-msgstr "Ą©øĀ"
+#: ../../install_steps_interactive.pm_.c:806
+msgid "Do you want to use SILO?"
+msgstr "SILO ¤ņ»Č¤¤¤Ž¤¹¤«”©"
-#: ../install_steps_interactive.pm_.c:732
-msgid "LILO main options"
-msgstr "LILO „į„¤„ó„Ŗ„ׄ·„ē„ó"
+#: ../../install_steps_interactive.pm_.c:817
+msgid "SILO main options"
+msgstr "SILO „į„¤„ó„Ŗ„ׄ·„ē„ó"
-#: ../install_steps_interactive.pm_.c:735
+#: ../../install_steps_interactive.pm_.c:830
msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-"``„³„Ž„ó„Ʉ鄤„ó„Ŗ„ׄ·„ē„ó¤ĪĄ©øĀ''„Ŗ„ׄ·„ē„ó¤Ļ„Ń„¹„ļ”¼„ɤ¬¤Ź¤¤¤Č\n"
-"Ģņ¤Ė¤æ¤Į¤Ž¤»¤ó”£"
-
-#: ../install_steps_interactive.pm_.c:746
-msgid ""
-"Here are the following entries in LILO.\n"
+"Here are the following entries in SILO.\n"
"You can add some more or change the existing ones."
msgstr ""
-"LILO ¤Ė¤Ļ°Ź²¼¤Ī„Ø„ó„Č„ź¤¬¤¢¤ź¤Ž¤¹”£\n"
+"SILO ¤Ė¤Ļ°Ź²¼¤Ī„Ø„ó„Č„ź¤¬¤¢¤ź¤Ž¤¹”£\n"
"¤Ū¤«¤Ī„Ø„ó„Č„ź¤ņ²Ć¤Ø¤ė¤«ŹŃ¹¹¤¹¤ė¤³¤Č¤¬¤Ē¤­¤Ž¤¹”£"
-#: ../install_steps_interactive.pm_.c:748 ../standalone/rpmdrake_.c:302
-msgid "Add"
-msgstr "²Ć¤Ø¤ė"
-
-#: ../install_steps_interactive.pm_.c:757
-msgid "Linux"
-msgstr "Linux"
-
-#: ../install_steps_interactive.pm_.c:757
-msgid "Other OS (windows...)"
-msgstr "Ā¾¤Ī OS („¦„£„ó„É„¦„ŗ¤Ź¤É...)"
-
-#: ../install_steps_interactive.pm_.c:757
-msgid "Which type of entry do you want to add"
-msgstr "¤É¤Ī„愤„פņÄÉ²Ć¤·¤Ž¤¹¤«"
-
-#: ../install_steps_interactive.pm_.c:777
-msgid "Image"
-msgstr "„¤„į”¼„ø"
-
-#: ../install_steps_interactive.pm_.c:778
-#: ../install_steps_interactive.pm_.c:786
-msgid "Root"
-msgstr "„ė”¼„Č"
-
-#: ../install_steps_interactive.pm_.c:779
-msgid "Append"
-msgstr "ÄɲĆ"
-
-#: ../install_steps_interactive.pm_.c:780
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../install_steps_interactive.pm_.c:781
-msgid "Read-write"
-msgstr "Ęɤ߽ń¤­"
-
-#: ../install_steps_interactive.pm_.c:787
-msgid "Table"
-msgstr "„Ę”¼„Ö„ė"
-
-#: ../install_steps_interactive.pm_.c:788
-msgid "Unsafe"
-msgstr "°ĀĮ“¤Ē¤Ź¤¤"
-
-#: ../install_steps_interactive.pm_.c:793
-msgid "Label"
-msgstr "„é„Ł„ė"
-
-#: ../install_steps_interactive.pm_.c:795
-msgid "Default"
-msgstr "„Ē„Õ„©„ė„Č"
+#: ../../install_steps_interactive.pm_.c:858
+msgid "Partition"
+msgstr "„Ń”¼„Ę„£„·„ē„ó"
-#: ../install_steps_interactive.pm_.c:798
-msgid "Remove entry"
-msgstr "„Ø„ó„Č„ź¤ņ¾Ć¤¹"
-
-#: ../install_steps_interactive.pm_.c:801
-msgid "Empty label not allowed"
-msgstr "¶õĒņ¤Ī„é„Ł„ė¤Ļµö¤µ¤ģ¤Ę¤¤¤Ž¤»¤ó"
-
-#: ../install_steps_interactive.pm_.c:802
+#: ../../install_steps_interactive.pm_.c:878
msgid "This label is already in use"
msgstr "¤³¤Ī„é„Ł„ė¤Ļ¤¹¤Ē¤Ė»Č¤ļ¤ģ¤Ę¤¤¤Ž¤¹"
-#: ../install_steps_interactive.pm_.c:803
-#, c-format
-msgid "A entry %s already exists"
-msgstr "„Ø„ó„Č„ź %s ¤Ļ¤¹¤Ē¤ĖĀøŗߤ·¤Ž¤¹"
+#: ../../install_steps_interactive.pm_.c:891
+msgid "Installation of SILO failed. The following error occured:"
+msgstr "SILO ¤Ī„¤„ó„¹„Č”¼„ė¤Ė¼ŗĒŌ¤·¤Ž¤·¤æ”£°Ź²¼¤Ī„؄锼¤¬ČÆĄø:"
-#: ../install_steps_interactive.pm_.c:817
-msgid "Installation of LILO failed. The following error occured:"
-msgstr "LILO ¤Ī„¤„ó„¹„Č”¼„ė¤Ė¼ŗĒŌ¤·¤Ž¤·¤æ”£°Ź²¼¤Ī„؄锼¤¬ČÆĄø:"
+#: ../../install_steps_interactive.pm_.c:901
+msgid "Preparing bootloader"
+msgstr "„Ö”¼„Č„ķ”¼„Ą¤Ī½ąČ÷"
-#: ../install_steps_interactive.pm_.c:831
+#: ../../install_steps_interactive.pm_.c:909
+msgid "Do you want to use aboot?"
+msgstr "aboot ¤ņ»Č¤¤¤Ž¤¹¤«”©"
+
+#: ../../install_steps_interactive.pm_.c:912
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"aboot „¤„ó„¹„Č”¼„ė»ž¤Ė„؄锼ČÆĄø”£\n"
+"ĢµĶż¤Ė„¤„ó„¹„Č”¼„ė¤·¤Ę¤ß¤Ž¤¹¤«”©””¤æ¤Ą¤·ŗĒ½é¤Ī„Ń”¼„Ę„£„·„ē„ó¤¬ĒĖ²õ¤µ¤ģ¤Ž¤¹”£"
+
+#: ../../install_steps_interactive.pm_.c:929
msgid "Proxies configuration"
msgstr "Proxy ¤ĪĄßÄź"
-#: ../install_steps_interactive.pm_.c:832
+#: ../../install_steps_interactive.pm_.c:930
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:931
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:937
msgid "Proxy should be http://..."
msgstr "Proxy ¤Ļ http://... ¤Ē¤¹"
-#: ../install_steps_interactive.pm_.c:840
+#: ../../install_steps_interactive.pm_.c:938
msgid "Proxy should be ftp://..."
msgstr "Proxy ¤Ļ ftp://... ¤Ē¤¹"
-#: ../install_steps_interactive.pm_.c:850 ../standalone/draksec_.c:20
+#: ../../install_steps_interactive.pm_.c:948 ../../standalone/draksec_.c:20
msgid "Welcome To Crackers"
msgstr "Crackers¤Ų¤č¤¦¤³¤½"
-#: ../install_steps_interactive.pm_.c:851 ../standalone/draksec_.c:21
+#: ../../install_steps_interactive.pm_.c:949 ../../standalone/draksec_.c:21
msgid "Poor"
msgstr "¤­¤ļ¤į¤ĘÄ椤"
-#: ../install_steps_interactive.pm_.c:852 ../standalone/draksec_.c:22
+#: ../../install_steps_interactive.pm_.c:950 ../../standalone/draksec_.c:22
msgid "Low"
msgstr "Ä椤"
-#: ../install_steps_interactive.pm_.c:853 ../standalone/draksec_.c:23
+#: ../../install_steps_interactive.pm_.c:951 ../../standalone/draksec_.c:23
msgid "Medium"
msgstr "¤Ū¤É¤Ū¤É"
-#: ../install_steps_interactive.pm_.c:854 ../standalone/draksec_.c:24
+#: ../../install_steps_interactive.pm_.c:952 ../../standalone/draksec_.c:24
msgid "High"
msgstr "¹ā¤¤"
-#: ../install_steps_interactive.pm_.c:855 ../standalone/draksec_.c:25
+#: ../../install_steps_interactive.pm_.c:953 ../../standalone/draksec_.c:25
msgid "Paranoid"
msgstr "æĄ·Š¼Į¤Ź¤Ū¤É¹āæå½ą"
-#: ../install_steps_interactive.pm_.c:868
+#: ../../install_steps_interactive.pm_.c:966
msgid "Miscellaneous questions"
msgstr "¤½¤ĪĀ¾¤Ī¼ĮĢä"
-#: ../install_steps_interactive.pm_.c:869
+#: ../../install_steps_interactive.pm_.c:967
msgid "(may cause data corruption)"
msgstr "”Ź„Ē”¼„椬²õ¤ģ¤ė¤Ŗ¤½¤ģ¤¬¤¢¤ź¤Ž¤¹”Ė"
-#: ../install_steps_interactive.pm_.c:869
+#: ../../install_steps_interactive.pm_.c:967
msgid "Use hard drive optimisations?"
msgstr "„Ļ”¼„É„Ē„£„¹„ƤņŗĒŬ²½¤·¤Ž¤¹¤«”©"
-#: ../install_steps_interactive.pm_.c:870 ../standalone/draksec_.c:46
+#: ../../install_steps_interactive.pm_.c:968 ../../standalone/draksec_.c:46
msgid "Choose security level"
msgstr "„»„­„å„ź„Ę„£¤Īæå½ą¤ņĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤"
-#: ../install_steps_interactive.pm_.c:871
+# added a \n to the translation to avoid that the dialog window
+# in which it appears to be tooooo laaaaarge
+#: ../../install_steps_interactive.pm_.c:969
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
-msgstr "ɬĶפŹ¤éĄµ³Ī¤ŹRAM„µ„¤„ŗ¤ņĘž¤ģ¤Ę¤Æ¤Ą¤µ¤¤”Ź%d MB¤¬ø«¤Ä¤«¤ź¤Ž¤·¤æ”Ė"
+msgstr ""
+"ɬĶפŹ¤éĄµ³Ī¤ŹRAM„µ„¤„ŗ¤ņĘž¤ģ¤Ę¤Æ¤Ą¤µ¤¤\n"
+"”Ź%d MB¤¬ø«¤Ä¤«¤ź¤Ž¤·¤æ”Ė"
-#: ../install_steps_interactive.pm_.c:872
+#: ../../install_steps_interactive.pm_.c:970
msgid "Removable media automounting"
msgstr "„ź„ą”¼„Š„Ö„ė„į„Ē„£„¢¤ņ¼«Ę°„Ž„¦„ó„ČĆę"
-#: ../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:972
+msgid "Clean /tmp at each boot"
+msgstr "³Ę„Ö”¼„Č»ž¤Ė /tmp °Ź²¼¤ņ¾Ć¤¹"
+
+#: ../../install_steps_interactive.pm_.c:975
+msgid "Enable multi profiles"
+msgstr "„Ž„ė„Į„ׄķ„Õ„”„¤„ė¤ņĶ­øś¤Ė"
+
+#: ../../install_steps_interactive.pm_.c:977
msgid "Enable num lock at startup"
msgstr "µÆĘ°»ž¤Ėnum lock¤ņ„Ŗ„ó¤Ė¤¹¤ė"
-#: ../install_steps_interactive.pm_.c:877
-msgid "Give the ram size in Mb"
-msgstr "Ram„µ„¤„ŗ¤ņMb¤ĒĘžĪĻ"
+#: ../../install_steps_interactive.pm_.c:980
+msgid "Give the ram size in MB"
+msgstr "Ram„µ„¤„ŗ¤ņMB¤ĒĘžĪĻ"
+
+#: ../../install_steps_interactive.pm_.c:982
+msgid "Can't use supermount in high security level"
+msgstr "„¹”¼„Ń”¼„Ž„¦„ó„ȤĻ¹ā¤¤„»„­„å„ź„Ę„£„ģ„Ł„ė¤Ē¤Ļ»Č¤Ø¤Ž¤»¤ó"
+
+#: ../../install_steps_interactive.pm_.c:1002
+msgid ""
+"DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
+"By default, the 3.3 server is used because it works on more graphic cards.\n"
+"\n"
+"Do you want to try XFree 4.0?"
+msgstr ""
+"DrakX ¤Ļ”¢XFree 3.3¤ČXFree 4.0Ī¾Źż¤ĪĄßÄź„Õ„”„¤„ė¤ņ¤Ä¤Æ¤ź¤Ž¤¹”£¤Ē¤ā\n"
+"„Ē„Õ„©„ė„ȤĒ¤Ļ3.3„µ”¼„Š¤Ī¤Ū¤¦¤ņ»Č¤¤¤Ž¤¹”£ĀŠ±ž„Ó„Ē„Ŗ„«”¼„ɤ¬Ā椤¤«¤é¤Ē¤¹”£\n"
+"\n"
+"XFree 4.0 ¤ņ»ī¤·¤Ę¤ß¤Ž¤¹¤«?"
-#: ../install_steps_interactive.pm_.c:905
-#: ../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1167
msgid "Try to find PCI devices?"
msgstr "PCI„Ē„Š„¤„¹¤ņ¤µ¤¬¤·¤Ę¤ß¤Ž¤¹¤«”©"
-#: ../install_steps_interactive.pm_.c:920
+#: ../../install_steps_interactive.pm_.c:1034
+msgid "Do you want to generate an auto install floppy for linux replication?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1036
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "¶õ¤Ī„Õ„ķ„Ć„Ō”¼¤ņ„Ʉ鄤„Ö %s ¤ĖĮŽĘž¤·¤Ę²¼¤µ¤¤"
+
+#: ../../install_steps_interactive.pm_.c:1044
+msgid "Creating auto install floppy"
+msgstr "„¤„ó„¹„Č”¼„ė„Õ„ķ„Ć„Ō”¼¤Ī¼«Ę°ŗīĄ®"
+
+#: ../../install_steps_interactive.pm_.c:1068
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -2829,7 +3349,7 @@ msgstr ""
"\n"
"ĖÜÅö¤Ė½ŖĪ»¤·¤Ž¤¹¤«”©"
-#: ../install_steps_interactive.pm_.c:927
+#: ../../install_steps_interactive.pm_.c:1075
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -2850,26 +3370,26 @@ msgstr ""
"„¤„ó„¹„Č”¼„ėøå¤ĪĄßÄź¤Ė¤Ä¤¤¤Ę¤Ī¾šŹó¤Ļ„ę”¼„¶„¬„¤„ɤĪ”Ö„¤„ó„¹„Č”¼„ė¤·¤æøå”פĪ\n"
"¾Ļ¤¢ņø¤Ę²¼¤µ¤¤”£"
-#: ../install_steps_interactive.pm_.c:936
+#: ../../install_steps_interactive.pm_.c:1084
msgid "Shutting down"
msgstr "„·„ć„Ć„Č„Ą„¦„óĆę"
-#: ../install_steps_interactive.pm_.c:950
+#: ../../install_steps_interactive.pm_.c:1096
#, c-format
msgid "Installing driver for %s card %s"
msgstr "%s „«”¼„É %s ¤Ī„Ʉ鄤„Š„¤„ó„¹„Č”¼„ėĆę"
-#: ../install_steps_interactive.pm_.c:951
+#: ../../install_steps_interactive.pm_.c:1097
#, c-format
msgid "(module %s)"
msgstr "(„ā„ø„唼„ė %s)"
-#: ../install_steps_interactive.pm_.c:961
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
msgid "Which %s driver should I try?"
msgstr "¤É¤Ī %s „Ʉ鄤„Š¤ņ»ī¤·¤Ž¤·¤ē¤¦¤«”©"
-#: ../install_steps_interactive.pm_.c:969
+#: ../../install_steps_interactive.pm_.c:1115
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -2886,20 +3406,20 @@ msgstr ""
"¤µ¤»¤Ę¤ß¤Ž¤¹¤«”©””„ׄķ”¼„ÖĆę¤Ė„³„ó„Ō„唼„椬Ää»ß¤¹¤ė¤«¤āĆĪ¤ģ¤Ž¤»¤ó¤¬”¤\n"
"„Ž„·„󤬤³¤ļ¤ģ¤æ¤ź¤¹¤ė¤³¤Č¤Ļ¤¢¤ź¤Ž¤»¤ó”£"
-#: ../install_steps_interactive.pm_.c:974
+#: ../../install_steps_interactive.pm_.c:1120
msgid "Autoprobe"
msgstr "„Ŗ”¼„Ȅׄķ”¼„Ö"
-#: ../install_steps_interactive.pm_.c:974
+#: ../../install_steps_interactive.pm_.c:1120
msgid "Specify options"
msgstr "„Ŗ„ׄ·„ē„ó»ŲÄź"
-#: ../install_steps_interactive.pm_.c:978
+#: ../../install_steps_interactive.pm_.c:1124
#, c-format
msgid "You may now provide its options to module %s."
msgstr "„ā„ø„唼„ė %s ¤Ī„Ŗ„ׄ·„ē„ó¤ņ»ŲÄź¤·¤Ę¤Æ¤Ą¤µ¤¤”£"
-#: ../install_steps_interactive.pm_.c:984
+#: ../../install_steps_interactive.pm_.c:1130
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -2910,11 +3430,11 @@ msgstr ""
"„Ŗ„ׄ·„ē„ó¤Ī„Õ„©”¼„Ž„ƄȤĻ ``Ģ¾Į°=ĆĶ Ģ¾Į°2=ĆĶ2 ...'' ¤Ē¤¹”£\n"
"Īć: ``io=0x300 irq=7''"
-#: ../install_steps_interactive.pm_.c:987
+#: ../../install_steps_interactive.pm_.c:1133
msgid "Module options:"
msgstr "„ā„ø„唼„ė¤Ī„Ŗ„ׄ·„ē„ó"
-#: ../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:1143
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -2923,305 +3443,305 @@ msgstr ""
"„ā„ø„唼„ė %s ¤Ī„ķ”¼„ɤ¬¤Ē¤­¤Ž¤»¤ó¤Ē¤·¤æ”£\n"
"„Ń„é„į”¼„æ¤ņŹŃ¤Ø¤Ę¤ä¤ź¤Ź¤Ŗ¤·¤Ę¤ß¤Ž¤¹¤«”©"
-#: ../install_steps_interactive.pm_.c:1010
+#: ../../install_steps_interactive.pm_.c:1156
msgid "Try to find PCMCIA cards?"
msgstr "PCMCIA„«”¼„ɤņ¤µ¤¬¤·¤Ę¤ß¤Ž¤·¤ē¤¦¤«”©"
-#: ../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1157
msgid "Configuring PCMCIA cards..."
msgstr "PCMCIA„«”¼„ɤĪĄßÄźĆę..."
-#: ../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1157
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../install_steps_interactive.pm_.c:1018
-msgid ""
-"Linux does not yet fully support ultra dma 66 HPT.\n"
-"As a work-around i can make a custom floppy giving access the hard drive on "
-"ide2 and ide3"
-msgstr ""
-"Linux ¤Ļ¤Ž¤Ą ultra dma 66 HPT¤ņ“°Į“¤Ė¤Ļ„µ„Ż”¼„Ȥ·¤Ę¤¤¤Ž¤»¤ó”£\n"
-"¼”Į±¤Īŗö¤Ē¤¹¤¬”¢„«„¹„æ„ą„Õ„ķ„Ć„Ō”¼¤ņŗī¤Ć¤Ę”¢ide2¤Čide3¤Ī„Ļ”¼„É„Ē„£„¹„Ƥņ\n"
-"„¢„Æ„»„¹¤Ē¤­¤ė¤č¤¦¤Ė¤·¤Ž¤·¤ē¤¦¤«”©"
-
-#: ../install_steps_interactive.pm_.c:1039
-msgid ""
-"Enter a floppy to create an HTP enabled boot\n"
-"(all data on floppy will be lost)"
-msgstr ""
-"HTP ¤Ī»Č¤Ø¤ė„Ö”¼„Č„Ē„£„¹„ÆĶѤĪ„Õ„ķ„Ć„Ō”¼¤ņ„Ʉ鄤„Ö¤ĖĮŽĘž¤·¤Ę¤Æ¤Ą¤µ¤¤\n"
-"„Õ„ķ„Ć„Ō”¼¾å¤ĪĮ“¤Ę¤Ī„Ē”¼„æ¤Ļ¼ŗ¤ļ¤ģ¤Ž¤¹"
-
-#: ../install_steps_interactive.pm_.c:1056
-msgid "It is necessary to restart installation booting on the floppy"
-msgstr "„Õ„ķ„Ć„Ō”¼¤ĒµÆĘ°¤·¤Ę„¤„ó„¹„Č”¼„ė¤ņ¤ä¤ź¤Ź¤Ŗ¤·¤Ę¤Æ¤Ą¤µ¤¤"
-
-#: ../install_steps_interactive.pm_.c:1057
-msgid "It is necessary to restart installation with the new parameters"
-msgstr "„Ń„é„į”¼„æ¤ņŹŃ¤Ø¤Ę„¤„ó„¹„Č”¼„ė¤ņ¤ä¤ź¤Ź¤Ŗ¤·¤Ę¤Æ¤Ą¤µ¤¤”£"
-
-#: ../install_steps_interactive.pm_.c:1061
-#, c-format
-msgid ""
-"Failed to create an HTP boot floppy.\n"
-"You may have to restart installation and give ``%s'' at the prompt"
-msgstr ""
-"HTP „Ö”¼„Č„Õ„ķ„Ć„Ō”¼¤¬¤Ä¤Æ¤ģ¤Ž¤»¤ó¤Ē¤·¤æ”£\n"
-"„¤„ó„¹„Č”¼„ė¤ņ¤ä¤ź¤Ź¤Ŗ¤·¤Ę”¢„ׄķ„ó„ׄȤĒ``%s''¤ČĘžĪĻ¤·¤Ę¤ß¤Ę¤Æ¤Ą¤µ¤¤”£"
-
-#: ../install_steps_interactive.pm_.c:1081
+#: ../../install_steps_interactive.pm_.c:1176
#, c-format
msgid "Found %s %s interfaces"
msgstr "%s %s „¤„ó„攼„Õ„§”¼„¹¤¬ø«¤Ä¤«¤ź¤Ž¤·¤æ"
-#: ../install_steps_interactive.pm_.c:1082
+#: ../../install_steps_interactive.pm_.c:1177
msgid "Do you have another one?"
msgstr "ŹĢ¤Ī¤ā¤Ī¤Ļ¤¢¤ź¤Ž¤¹¤«”©"
-#: ../install_steps_interactive.pm_.c:1083
+#: ../../install_steps_interactive.pm_.c:1178
#, c-format
-msgid "Do you have any %s interface?"
+msgid "Do you have any %s interfaces?"
msgstr "%s „¤„ó„攼„Õ„§”¼„¹¤Ļ¤¢¤ź¤Ž¤¹¤«”©"
-#: ../install_steps_interactive.pm_.c:1085 ../interactive.pm_.c:79
-#: ../my_gtk.pm_.c:424 ../printerdrake.pm_.c:176
+#: ../../install_steps_interactive.pm_.c:1180 ../../interactive.pm_.c:79
+#: ../../my_gtk.pm_.c:458 ../../printerdrake.pm_.c:124
msgid "No"
msgstr "¤¤¤¤¤Ø"
-#: ../install_steps_interactive.pm_.c:1085 ../interactive.pm_.c:79
-#: ../my_gtk.pm_.c:424
+#: ../../install_steps_interactive.pm_.c:1180 ../../interactive.pm_.c:79
+#: ../../my_gtk.pm_.c:458
msgid "Yes"
msgstr "¤Ļ¤¤"
-#: ../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1181
msgid "See hardware info"
msgstr "„Ļ”¼„É„¦„§„¢¤Ī¾šŹó¤ņø«¤Ę²¼¤µ¤¤"
-#: ../install_steps_newt.pm_.c:19
+#: ../../install_steps_interactive.pm_.c:1197
+msgid "Bringing up the network"
+msgstr "„Ķ„Ć„Č„ļ”¼„Ƥņ¤æ¤Į¤¢¤²¤ė"
+
+#: ../../install_steps_interactive.pm_.c:1202
+msgid "Bringing down the network"
+msgstr "„Ķ„Ć„Č„ļ”¼„ƤņÄä»ß¤¹¤ė"
+
+#: ../../install_steps_newt.pm_.c:21
#, c-format
msgid "Linux-Mandrake Installation %s"
msgstr "Linux-Mandrake „¤„ó„¹„Č”¼„ė %s"
-#: ../install_steps_newt.pm_.c:30
+#: ../../install_steps_newt.pm_.c:32
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr " <Tab>/<Alt-Tab> Ķ×ĮĒ“Ö¤Ī°ÜĘ° | <Space> ĮŖĀņ | <F12> ¼”¤Ī„¹„Æ„ź”¼„ó "
-#: ../interactive.pm_.c:84 ../interactive.pm_.c:163
-#: ../interactive_newt.pm_.c:50 ../interactive_newt.pm_.c:97
-#: ../interactive_stdio.pm_.c:27 ../my_gtk.pm_.c:193 ../my_gtk.pm_.c:425
-msgid "Cancel"
-msgstr "„­„ć„ó„»„ė"
+#: ../../install_steps_newt.pm_.c:43
+#, c-format
+msgid ""
+"You can now partition your %s hard drive\n"
+"When you are done, don't forget to save using `w'"
+msgstr ""
+"¤µ¤¢¤³¤ģ¤Ē %s „Ļ”¼„ɄɄ鄤„Ö¤ņ„Ń”¼„Ę„£„·„ē„ó¤Ē¤­¤Ž¤¹”£\n"
+"½Ŗ¤ļ¤Ć¤æ¤é”¢É¬¤ŗ `w' ¤ņ»Č¤Ć¤ĘŹŻĀø¤·¤Ž¤·¤ē¤¦”£"
-#: ../interactive.pm_.c:181
+#: ../../interactive.pm_.c:244
msgid "Please wait"
msgstr "¤ŖĀŌ¤Į²¼¤µ¤¤"
-#: ../interactive_stdio.pm_.c:35
+#: ../../interactive_stdio.pm_.c:35
#, c-format
msgid "Ambiguity (%s), be more precise\n"
msgstr "ÉŌĢĄ (%s)”¤¤ā¤Ć¤ČĄµ³Ī¤Ė\n"
-#: ../interactive_stdio.pm_.c:36 ../interactive_stdio.pm_.c:51
-#: ../interactive_stdio.pm_.c:70
+#: ../../interactive_stdio.pm_.c:36 ../../interactive_stdio.pm_.c:51
+#: ../../interactive_stdio.pm_.c:70
msgid "Bad choice, try again\n"
msgstr "ÉŌĄµ¤ŹĮŖĀņ”¤¤ā¤¦°ģÅŁ»ī¤·¤Ę²¼¤µ¤¤\n"
-#: ../interactive_stdio.pm_.c:39
+#: ../../interactive_stdio.pm_.c:39
#, c-format
msgid " ? (default %s) "
msgstr "? („Ē„Õ„©„ė„ȤĻ %s) "
-#: ../interactive_stdio.pm_.c:52
+#: ../../interactive_stdio.pm_.c:52
#, c-format
msgid "Your choice? (default %s) "
msgstr "¤É¤ģ¤Ė¤·¤Ž¤¹¤«”©”Ź„Ē„Õ„©„ė„ȤĻ %s”Ė"
-#: ../interactive_stdio.pm_.c:71
+#: ../../interactive_stdio.pm_.c:71
#, c-format
msgid "Your choice? (default %s enter `none' for none) "
msgstr "¤É¤ģ¤Ė¤·¤Ž¤¹¤«”©”Ź„Ē„Õ„©„ė„ȤĻ %s”¢ĮŖ¤Š¤Ź¤¤¤Ź¤é”Ö¤Ź¤·”×”Ė"
-#: ../keyboard.pm_.c:88
-msgid "Armenian"
-msgstr "„¢„ė„į„Ė„¢"
+#: ../../keyboard.pm_.c:89 ../../keyboard.pm_.c:116
+msgid "Czech"
+msgstr "„Į„§„³"
+
+#: ../../keyboard.pm_.c:90 ../../keyboard.pm_.c:103 ../../keyboard.pm_.c:117
+msgid "German"
+msgstr "„É„¤„Ä"
-#: ../keyboard.pm_.c:89
+#: ../../keyboard.pm_.c:91 ../../keyboard.pm_.c:120
+msgid "Dvorak"
+msgstr "Dvorak"
+
+#: ../../keyboard.pm_.c:92 ../../keyboard.pm_.c:122
+msgid "Spanish"
+msgstr "„¹„Ś„¤„ó"
+
+#: ../../keyboard.pm_.c:93 ../../keyboard.pm_.c:123
+msgid "Finnish"
+msgstr "„Õ„£„ó„é„ó„É"
+
+#: ../../keyboard.pm_.c:94 ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:124
+msgid "French"
+msgstr "„Õ„é„ó„¹"
+
+#: ../../keyboard.pm_.c:95 ../../keyboard.pm_.c:143
+msgid "Norwegian"
+msgstr "„Ī„ė„¦„§”¼"
+
+#: ../../keyboard.pm_.c:96
+msgid "Polish"
+msgstr "„Ż”¼„é„ó„É"
+
+#: ../../keyboard.pm_.c:97 ../../keyboard.pm_.c:148
+msgid "Russian"
+msgstr "„ķ„·„¢"
+
+#: ../../keyboard.pm_.c:98 ../../keyboard.pm_.c:157
+msgid "UK keyboard"
+msgstr "„¤„®„ź„¹¼°„­”¼„Ü”¼„É"
+
+#: ../../keyboard.pm_.c:99 ../../keyboard.pm_.c:102 ../../keyboard.pm_.c:158
+msgid "US keyboard"
+msgstr "„¢„į„ź„«¼°„­”¼„Ü”¼„É"
+
+#: ../../keyboard.pm_.c:106
+msgid "Armenian (old)"
+msgstr "„¢„ė„į„Ė„¢”ŹøŤ¤”Ė"
+
+#: ../../keyboard.pm_.c:107
+msgid "Armenian (typewriter)"
+msgstr "„¢„ė„į„Ė„¢”Ź„愤„ׄ鄤„攼”Ė"
+
+#: ../../keyboard.pm_.c:108
+msgid "Armenian (phonetic)"
+msgstr "„¢„ė„į„Ė„¢”ŹČƲ»µ­¹ę”Ė"
+
+#: ../../keyboard.pm_.c:111
msgid "Belgian"
msgstr "„Ł„ė„®”¼"
-#: ../keyboard.pm_.c:90
+#: ../../keyboard.pm_.c:112
msgid "Bulgarian"
msgstr "„Ö„ė„¬„ź„¢"
-#: ../keyboard.pm_.c:91
-msgid "Brazilian"
+#: ../../keyboard.pm_.c:113
+msgid "Brazilian (ABNT-2)"
msgstr "„Ö„é„ø„ė"
-#: ../keyboard.pm_.c:92
-msgid "Swiss (French layout)"
-msgstr "„¹„¤„¹”Ź„Õ„é„ó„¹øģĒŪĪó”Ė"
-
-#: ../keyboard.pm_.c:93
+#: ../../keyboard.pm_.c:114
msgid "Swiss (German layout)"
-msgstr "„¹„¤„¹”Ź„É„¤„ÄøģĒŪĪó”Ė"
+msgstr "„¹„¤„¹”Ź„É„¤„ļ°ĒŪĪó”Ė"
-#: ../keyboard.pm_.c:94
-msgid "Czech"
-msgstr "„Į„§„³"
+#: ../../keyboard.pm_.c:115
+msgid "Swiss (French layout)"
+msgstr "„¹„¤„¹”Ź„Õ„é„ó„¹¼°ĒŪĪó”Ė"
-#: ../keyboard.pm_.c:95
-msgid "German"
-msgstr "„É„¤„Ä"
+#: ../../keyboard.pm_.c:118
+msgid "German (no dead keys)"
+msgstr "„É„¤„Ä”Ź„Ē„Ć„É„­”¼¤Ź¤·”Ė"
-#: ../keyboard.pm_.c:96
+#: ../../keyboard.pm_.c:119
msgid "Danish"
msgstr "„Ē„ó„Ž”¼„Æ"
-#: ../keyboard.pm_.c:97
-msgid "Dvorak"
-msgstr "Dvorak"
-
-#: ../keyboard.pm_.c:98
+#: ../../keyboard.pm_.c:121
msgid "Estonian"
msgstr "„Ø„¹„Č„Ė„¢"
-#: ../keyboard.pm_.c:99
-msgid "Spanish"
-msgstr "„¹„Ś„¤„ó"
-
-#: ../keyboard.pm_.c:100
-msgid "Finnish"
-msgstr "„Õ„£„ó„é„ó„É"
-
-#: ../keyboard.pm_.c:101
-msgid "French"
-msgstr "„Õ„é„ó„¹"
-
-#: ../keyboard.pm_.c:102
+#: ../../keyboard.pm_.c:125
msgid "Georgian (\"Russian\" layout)"
-msgstr "„°„ė„ø„¢”Ź\"„ķ„·„¢øģ\"ĒŪĪó”Ė"
+msgstr "„°„ė„ø„¢”Ź\"„ķ„·„¢¼°\"ĒŪĪó”Ė"
-#: ../keyboard.pm_.c:103
+#: ../../keyboard.pm_.c:126
msgid "Georgian (\"Latin\" layout)"
-msgstr "„°„ė„ø„¢”Ź\"„é„Ę„óøģ\"ĒŪĪó”Ė"
+msgstr "„°„ė„ø„¢”Ź\"„é„Ę„ó\"ĒŪĪó”Ė"
-#: ../keyboard.pm_.c:104
+#: ../../keyboard.pm_.c:127
msgid "Greek"
msgstr "„®„ź„·„ć"
-#: ../keyboard.pm_.c:105
+#: ../../keyboard.pm_.c:128
msgid "Hungarian"
msgstr "„Ļ„󄬄ź”¼"
-#: ../keyboard.pm_.c:106
+#: ../../keyboard.pm_.c:129
+msgid "Croatian"
+msgstr "„Æ„ķ„¢„Į„¢"
+
+#: ../../keyboard.pm_.c:130
msgid "Israeli"
msgstr "„¤„¹„é„Ø„ė"
-#: ../keyboard.pm_.c:107
+#: ../../keyboard.pm_.c:131
msgid "Israeli (Phonetic)"
msgstr "„¤„¹„é„Ø„ė”ŹČƲ»µ­¹ę”Ė"
-#: ../keyboard.pm_.c:108
+#: ../../keyboard.pm_.c:134
msgid "Icelandic"
msgstr "„¢„¤„¹„é„ó„É"
-#: ../keyboard.pm_.c:109
+#: ../../keyboard.pm_.c:135
msgid "Italian"
msgstr "„¤„æ„ź„¢"
-#: ../keyboard.pm_.c:110
+#: ../../keyboard.pm_.c:136
msgid "Latin American"
msgstr "„é„Ę„ó„¢„į„ź„«"
-#: ../keyboard.pm_.c:111
+#: ../../keyboard.pm_.c:137
msgid "Dutch"
msgstr "„Ŗ„é„ó„Ą"
-#: ../keyboard.pm_.c:112
-msgid "Lithuanian AZERTY"
+#: ../../keyboard.pm_.c:138
+#, fuzzy
+msgid "Lithuanian AZERTY (old)"
+msgstr "„ź„Č„¢„Ė„¢ AZERTY"
+
+#: ../../keyboard.pm_.c:140
+#, fuzzy
+msgid "Lithuanian AZERTY (new)"
msgstr "„ź„Č„¢„Ė„¢ AZERTY"
-#: ../keyboard.pm_.c:113
+#: ../../keyboard.pm_.c:141
msgid "Lithuanian \"number row\" QWERTY"
msgstr "„ź„Č„¢„Ė„¢ \"æō»śĪó\" QWERTY"
-#: ../keyboard.pm_.c:114
+#: ../../keyboard.pm_.c:142
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "„ź„Č„¢„Ė„¢ \"ČƲ»\" QWERTY"
-#: ../keyboard.pm_.c:115
-msgid "Norwegian"
-msgstr "„Ī„ė„¦„§”¼"
-
-#: ../keyboard.pm_.c:116
-#, fuzzy
+#: ../../keyboard.pm_.c:144
msgid "Polish (qwerty layout)"
-msgstr "„¹„¤„¹”Ź„É„¤„ÄøģĒŪĪó”Ė"
+msgstr "„Ż”¼„é„ó„É”Źqwerty ĒŪĪó”Ė"
-#: ../keyboard.pm_.c:117
-#, fuzzy
+#: ../../keyboard.pm_.c:145
msgid "Polish (qwertz layout)"
-msgstr "„¹„¤„¹”Ź„É„¤„ÄøģĒŪĪó”Ė"
+msgstr "„Ż”¼„é„ó„É”ŹqwertzĒŪĪó”Ė"
-#: ../keyboard.pm_.c:118
+#: ../../keyboard.pm_.c:146
msgid "Portuguese"
msgstr "„Ż„ė„Č„¬„ė"
-#: ../keyboard.pm_.c:119
+#: ../../keyboard.pm_.c:147
msgid "Canadian (Quebec)"
msgstr "„«„Ź„Ą”Ź„±„Ł„Ć„Æ”Ė"
-#: ../keyboard.pm_.c:120
-msgid "Russian"
-msgstr "„ķ„·„¢"
-
-#: ../keyboard.pm_.c:121
+#: ../../keyboard.pm_.c:149
msgid "Russian (Yawerty)"
-msgstr "„ķ„·„¢”ŹYawerty)"
+msgstr "„ķ„·„¢”Ź §Į§£§¦§²§“§Ŗ ”Ė"
-#: ../keyboard.pm_.c:122
+#: ../../keyboard.pm_.c:150
msgid "Swedish"
msgstr "„¹„¦„§”¼„Ē„ó"
-#: ../keyboard.pm_.c:123
+#: ../../keyboard.pm_.c:151
msgid "Slovenian"
msgstr "„¹„ķ„Ł„Ė„¢"
-#: ../keyboard.pm_.c:124
+#: ../../keyboard.pm_.c:152
msgid "Slovakian"
msgstr "„¹„ķ„Š„­„¢"
-#: ../keyboard.pm_.c:125
+#: ../../keyboard.pm_.c:153
msgid "Thai keyboard"
msgstr "„愤””„­”¼„Ü”¼„É"
-#: ../keyboard.pm_.c:126
+#: ../../keyboard.pm_.c:154
msgid "Turkish (traditional \"F\" model)"
-msgstr "„Č„ė„³”ŹÅĮÅżÅŖ¤Ź \"F\" „ā„Ē„ė”Ė"
+msgstr "„Č„ė„³”ŹÅĮÅżÅŖ \"F\" „ā„Ē„ė”Ė"
-#: ../keyboard.pm_.c:127
+#: ../../keyboard.pm_.c:155
msgid "Turkish (modern \"Q\" model)"
-msgstr "„Č„ė„³”Źø½Āå¤Ī \"Q\" „ā„Ē„ė”Ė"
+msgstr "„Č„ė„³”Źø½Āå \"Q\" „ā„Ē„ė”Ė"
-#: ../keyboard.pm_.c:128
+#: ../../keyboard.pm_.c:156
msgid "Ukrainian"
msgstr "„¦„Ƅ鄤„Ź"
-#: ../keyboard.pm_.c:129
-msgid "UK keyboard"
-msgstr "„¤„®„ź„¹¼°„­”¼„Ü”¼„É"
-
-#: ../keyboard.pm_.c:130
-msgid "US keyboard"
-msgstr "„¢„į„ź„«¼°„­”¼„Ü”¼„É"
-
-#: ../keyboard.pm_.c:131
+#: ../../keyboard.pm_.c:159
msgid "US keyboard (international)"
msgstr "„¢„į„ź„«¼°„­”¼„Ü”¼„É”Ź¹ńŗŻ¼°”Ė"
-#: ../keyboard.pm_.c:132
+#: ../../keyboard.pm_.c:160
msgid "Yugoslavian (latin layout)"
msgstr "„ę”¼„“„¹„é„Ó„¢”Ź„é„Ę„óĒŪĪó”Ė"
@@ -3231,7 +3751,7 @@ msgstr "„ę”¼„“„¹„é„Ó„¢”Ź„é„Ę„óĒŪĪó”Ė"
# transliteration be used; or maybe the english text be used; as it is best
# When possible cp437 accentuated letters can be used too.
#
-#: ../lilo.pm_.c:145
+#: ../../lilo.pm_.c:176
#, c-format
msgid ""
"Welcome to LILO the operating system chooser!\n"
@@ -3249,131 +3769,206 @@ msgstr ""
"Ichiran kara erande <ENTER> wo oshimasu. %d byou de Default ni narimasu.\n"
"\n"
-#: ../mouse.pm_.c:20
-msgid "No Mouse"
-msgstr "„Ž„¦„¹¤Ź¤·"
+# 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
+# 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
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../lilo.pm_.c:431
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "OSĮŖĀņ„½„Õ„ČGRUB¤Ų¤č¤¦¤³¤½”Ŗ"
-#: ../mouse.pm_.c:21
-msgid "Microsoft Rev 2.1A or higher (serial)"
-msgstr "Microsoft Rev 2.1A °Ź¾å(serial)"
+#: ../../lilo.pm_.c:432
+#, 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."
-#: ../mouse.pm_.c:22
-msgid "Logitech CC Series (serial)"
-msgstr "Logitech CC „·„ź”¼„ŗ („·„ź„¢„ė)"
+#: ../../lilo.pm_.c:433
+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"
-#: ../mouse.pm_.c:23
-msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-msgstr "Logitech MouseMan+/FirstMouse+ („·„ź„¢„ė)"
+#: ../../lilo.pm_.c:434
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "no henshuu niha 'e', command line nara 'c' wo oshi masu."
-#: ../mouse.pm_.c:24
-msgid "ASCII MieMouse (serial)"
-msgstr "ASCII MieMouse („·„ź„¢„ė)"
+#: ../../lilo.pm_.c:435
+#, c-format
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "Sentaku shita OS ga %d byou de jidoutekini kidou shimasu."
-#: ../mouse.pm_.c:25
-msgid "Genius NetMouse (serial)"
-msgstr "Genius NetMouse („·„ź„¢„ė)"
+#: ../../lilo.pm_.c:439
+msgid "not enough room in /boot"
+msgstr ""
-#: ../mouse.pm_.c:26
-msgid "Microsoft IntelliMouse (serial)"
-msgstr "„Ž„¤„Æ„ķ„½„Õ„Č”¦„¤„ó„Ę„ź„Ž„¦„¹”Ź„·„ź„¢„ė”Ė"
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../lilo.pm_.c:518
+msgid "Desktop"
+msgstr "„Ē„¹„Æ„Č„Ć„×"
-#: ../mouse.pm_.c:27
-msgid "MM Series (serial)"
-msgstr "MM Series („·„ź„¢„ė)"
+#: ../../lilo.pm_.c:518
+msgid "Start Menu"
+msgstr "„¹„攼„Č„į„Ė„唼"
-#: ../mouse.pm_.c:28
-msgid "MM HitTablet (serial)"
-msgstr "MM HitTablet („·„ź„¢„ė)"
+#: ../../mouse.pm_.c:21
+msgid "Sun - Mouse"
+msgstr "Sun - „Ž„¦„¹"
-#: ../mouse.pm_.c:29
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse („·„ź„¢„ė, øŤ¤ C7 „愤„×)"
+#: ../../mouse.pm_.c:23
+msgid "Apple ADB Mouse"
+msgstr "Apple ADB „Ž„¦„¹"
-#: ../mouse.pm_.c:30
-msgid "Logitech MouseMan/FirstMouse (serial)"
-msgstr "Logitech MouseMan/FirstMouse („·„ź„¢„ė)"
+#: ../../mouse.pm_.c:24
+msgid "Apple ADB Mouse (2 Buttons)"
+msgstr "Apple ADB „Ž„¦„¹”Ź2„Ü„æ„ó”Ė"
-#: ../mouse.pm_.c:31
-msgid "Generic Mouse (serial)"
-msgstr "ČĘĶŃ„Ž„¦„¹ („·„ź„¢„ė)"
+#: ../../mouse.pm_.c:25
+msgid "Apple ADB Mouse (3+ Buttons)"
+msgstr "Apple ADB „Ž„¦„¹”Ź3„Ü„æ„ó°Ź¾å”Ė"
-#: ../mouse.pm_.c:32
-msgid "Microsoft compatible (serial)"
-msgstr "„Ž„¤„Æ„ķ„½„Õ„Čøß“¹”Ź„·„ź„¢„ė”Ė"
+#: ../../mouse.pm_.c:26
+msgid "Apple USB Mouse"
+msgstr "Apple USB„Ž„¦„¹"
-#: ../mouse.pm_.c:33
-msgid "Generic 3 Button Mouse (serial)"
-msgstr "ČĘĶѤĪ3„Ü„æ„ó„Ž„¦„¹ („·„ź„¢„ė)"
+#: ../../mouse.pm_.c:27
+msgid "Apple USB Mouse (2 Buttons)"
+msgstr "Apple USB„Ž„¦„¹”Ź2„Ü„æ„ó”Ė"
-#: ../mouse.pm_.c:34
-msgid "Mouse Systems (serial)"
-msgstr "Mouse Systems („·„ź„¢„ė)"
+#: ../../mouse.pm_.c:28
+msgid "Apple USB Mouse (3+ Buttons)"
+msgstr "Apple USB„Ž„¦„¹”Ź3„Ü„æ„ó°Ź¾å”Ė"
-#: ../mouse.pm_.c:35
+#: ../../mouse.pm_.c:30
msgid "Generic Mouse (PS/2)"
msgstr "ČĘĶŃ„Ž„¦„¹ (PS/2)"
-#: ../mouse.pm_.c:36
+#: ../../mouse.pm_.c:31
msgid "Logitech MouseMan/FirstMouse (ps/2)"
msgstr "Logitech MouseMan/FirstMouse (ps/2)"
-#: ../mouse.pm_.c:37
+#: ../../mouse.pm_.c:32
msgid "Generic 3 Button Mouse (PS/2)"
msgstr "ČĘĶѤĪ3„Ü„æ„ó„Ž„¦„¹ (PS/2)"
-#: ../mouse.pm_.c:38
+#: ../../mouse.pm_.c:33
msgid "ALPS GlidePoint (PS/2)"
msgstr "ALPS GlidePoint (PS/2)"
-#: ../mouse.pm_.c:39
+#: ../../mouse.pm_.c:34
msgid "Logitech MouseMan+/FirstMouse+ (PS/2)"
msgstr "Logitech MouseMan+/FirstMouse+ (PS/2)"
-#: ../mouse.pm_.c:40
+#: ../../mouse.pm_.c:35
msgid "Kensington Thinking Mouse (PS/2)"
msgstr "Kensington Thinking Mouse (PS/2)"
-#: ../mouse.pm_.c:41
+#: ../../mouse.pm_.c:36
msgid "ASCII MieMouse (PS/2)"
msgstr "ASCII MieMouse (PS/2)"
-#: ../mouse.pm_.c:42
+#: ../../mouse.pm_.c:37
msgid "Genius NetMouse (PS/2)"
msgstr "Genius NetMouse (PS/2)"
-#: ../mouse.pm_.c:43
+#: ../../mouse.pm_.c:38
msgid "Genius NetMouse Pro (PS/2)"
msgstr "Genius NetMouse Pro (PS/2)"
-#: ../mouse.pm_.c:44
+#: ../../mouse.pm_.c:39
msgid "Genius NetScroll (PS/2)"
msgstr "Genius NetScroll (PS/2)"
-#: ../mouse.pm_.c:45
+#: ../../mouse.pm_.c:40
msgid "Microsoft IntelliMouse (PS/2)"
msgstr "„Ž„¤„Æ„ķ„½„Õ„Č”¦„¤„ó„Ę„ź„Ž„¦„¹”ŹPS/2”Ė"
-#: ../mouse.pm_.c:46
+#: ../../mouse.pm_.c:41
msgid "ATI Bus Mouse"
msgstr "ATI „Š„¹„Ž„¦„¹"
-#: ../mouse.pm_.c:47
+#: ../../mouse.pm_.c:42
msgid "Microsoft Bus Mouse"
msgstr "„Ž„¤„Æ„ķ„½„Õ„Č”¦„Š„¹„Ž„¦„¹"
-#: ../mouse.pm_.c:48
+#: ../../mouse.pm_.c:43
msgid "Logitech Bus Mouse"
msgstr "„ķ„ø„Ę„Ć„Æ”¦„Š„¹„Ž„¦„¹"
-#: ../mouse.pm_.c:49
+#: ../../mouse.pm_.c:44
msgid "USB Mouse"
msgstr "USB„Ž„¦„¹"
-#: ../mouse.pm_.c:50
+#: ../../mouse.pm_.c:45
msgid "USB Mouse (3 buttons or more)"
msgstr "USB„Ž„¦„¹”Ź3„Ü„æ„ó°Ź¾å”Ė"
-#: ../partition_table.pm_.c:486
+#: ../../mouse.pm_.c:47
+msgid "No Mouse"
+msgstr "„Ž„¦„¹¤Ź¤·"
+
+#: ../../mouse.pm_.c:48
+msgid "Microsoft Rev 2.1A or higher (serial)"
+msgstr "Microsoft Rev 2.1A °Ź¾å(serial)"
+
+#: ../../mouse.pm_.c:49
+msgid "Logitech CC Series (serial)"
+msgstr "Logitech CC „·„ź”¼„ŗ („·„ź„¢„ė)"
+
+#: ../../mouse.pm_.c:50
+msgid "Logitech MouseMan+/FirstMouse+ (serial)"
+msgstr "Logitech MouseMan+/FirstMouse+ („·„ź„¢„ė)"
+
+#: ../../mouse.pm_.c:51
+msgid "ASCII MieMouse (serial)"
+msgstr "ASCII MieMouse („·„ź„¢„ė)"
+
+#: ../../mouse.pm_.c:52
+msgid "Genius NetMouse (serial)"
+msgstr "Genius NetMouse („·„ź„¢„ė)"
+
+#: ../../mouse.pm_.c:53
+msgid "Microsoft IntelliMouse (serial)"
+msgstr "„Ž„¤„Æ„ķ„½„Õ„Č”¦„¤„ó„Ę„ź„Ž„¦„¹”Ź„·„ź„¢„ė”Ė"
+
+#: ../../mouse.pm_.c:54
+msgid "MM Series (serial)"
+msgstr "MM Series („·„ź„¢„ė)"
+
+#: ../../mouse.pm_.c:55
+msgid "MM HitTablet (serial)"
+msgstr "MM HitTablet („·„ź„¢„ė)"
+
+#: ../../mouse.pm_.c:56
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech Mouse („·„ź„¢„ė, øŤ¤ C7 „愤„×)"
+
+#: ../../mouse.pm_.c:57
+msgid "Logitech MouseMan/FirstMouse (serial)"
+msgstr "Logitech MouseMan/FirstMouse („·„ź„¢„ė)"
+
+#: ../../mouse.pm_.c:58
+msgid "Generic Mouse (serial)"
+msgstr "ČĘĶŃ„Ž„¦„¹ („·„ź„¢„ė)"
+
+#: ../../mouse.pm_.c:59
+msgid "Microsoft compatible (serial)"
+msgstr "„Ž„¤„Æ„ķ„½„Õ„Čøß“¹”Ź„·„ź„¢„ė”Ė"
+
+#: ../../mouse.pm_.c:60
+msgid "Generic 3 Button Mouse (serial)"
+msgstr "ČĘĶѤĪ3„Ü„æ„ó„Ž„¦„¹ („·„ź„¢„ė)"
+
+#: ../../mouse.pm_.c:61
+msgid "Mouse Systems (serial)"
+msgstr "Mouse Systems („·„ź„¢„ė)"
+
+#: ../../my_gtk.pm_.c:459
+msgid "Is this correct?"
+msgstr "Ąµ¤·¤Æɽ¼Ø½ŠĶ褎¤·¤æ¤«”©"
+
+#: ../../partition_table.pm_.c:533
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 "
@@ -3383,113 +3978,124 @@ msgstr ""
"¤É¤¦¤·¤Ę¤ā»Č¤¤¤æ¤±¤ģ¤Š”¢„ׄ鄤„Ž„ź„Ń”¼„Ę„£„·„ē„ó¤ņ°ÜĘ°¤·¤Ę”¢Ģ¤»ŲÄź¤Ī·ź¤ņ\n"
"³ČÄ„„Ń”¼„Ę„£„·„ē„ó¤ĪĪŁ¤Ė¤ā¤Ć¤Ę¤­¤Ž¤·¤ē¤¦”£"
-#: ../partition_table.pm_.c:572
+#: ../../partition_table.pm_.c:621
#, c-format
msgid "Error reading file %s"
msgstr "„Õ„”„¤„ė %s ¤ĪĘɤߤȤź„؄锼¤Ē¤¹"
-#: ../partition_table.pm_.c:579
+#: ../../partition_table.pm_.c:628
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "%s „Õ„”„¤„ė¤«¤é¤ĪÉüøµ¤¬¼ŗĒŌ¤·¤Ž¤·¤æ”§ %s"
-#: ../partition_table.pm_.c:581
+#: ../../partition_table.pm_.c:630
msgid "Bad backup file"
msgstr "„Š„Ć„Æ„¢„Ć„×„Õ„”„¤„ė¤¬²õ¤ģ¤Ę¤¤¤Ž¤¹"
-#: ../partition_table.pm_.c:602
+#: ../../partition_table.pm_.c:651
#, c-format
msgid "Error writing to file %s"
msgstr "„Õ„”„¤„ė %s ¤Ų¤Ī½ń¤­¹ž¤ß„؄锼"
-#: ../placeholder.pm_.c:5
+#: ../../pkgs.pm_.c:20
+msgid "mandatory"
+msgstr "¶ÆĄ©"
+
+#: ../../pkgs.pm_.c:21
+msgid "must have"
+msgstr "»ż¤Ć¤Ę¤¤¤ė¤Ł¤­"
+
+#: ../../pkgs.pm_.c:22
+msgid "important"
+msgstr "½ÅĶ×"
+
+#: ../../pkgs.pm_.c:24
+msgid "very nice"
+msgstr "¤Č¤Ę¤āĮ±¤¤"
+
+#: ../../pkgs.pm_.c:25
+msgid "nice"
+msgstr "Į±¤¤"
+
+#: ../../pkgs.pm_.c:26 ../../pkgs.pm_.c:27
+msgid "interesting"
+msgstr "ĢĢĒņ¤¤"
+
+#: ../../pkgs.pm_.c:28 ../../pkgs.pm_.c:29 ../../pkgs.pm_.c:30
+#: ../../pkgs.pm_.c:31
+msgid "maybe"
+msgstr "¤æ¤Ö¤ó"
+
+#: ../../pkgs.pm_.c:33
+msgid "i18n (important)"
+msgstr "i18n (½ÅĶ×)"
+
+#: ../../pkgs.pm_.c:34
+msgid "i18n (very nice)"
+msgstr "i18n (¤Č¤Ę¤āĮ±¤¤)"
+
+#: ../../pkgs.pm_.c:35
+msgid "i18n (nice)"
+msgstr "i18n (Į±¤¤)"
+
+#: ../../placeholder.pm_.c:5
msgid "Show less"
msgstr "³µĪ¬¤Ēɽ¼Ø"
-#: ../placeholder.pm_.c:6
+#: ../../placeholder.pm_.c:6
msgid "Show more"
msgstr "¾ÜŗŁ¤ņɽ¼Ø"
-#: ../printer.pm_.c:244
+#: ../../printer.pm_.c:244
msgid "Local printer"
msgstr "„ķ”¼„«„ė„ׄź„ó„æ"
-#: ../printer.pm_.c:245
+#: ../../printer.pm_.c:245
msgid "Remote lpd"
msgstr "„ź„ā”¼„Č lpd"
-#: ../printer.pm_.c:246
+#: ../../printer.pm_.c:246
msgid "SMB/Windows 95/98/NT"
msgstr "SMB/„¦„£„ó„É„¦„ŗ 95/98/NT"
-#: ../printer.pm_.c:247
+#: ../../printer.pm_.c:247
msgid "NetWare"
msgstr "NetWare"
-#: ../printerdrake.pm_.c:75
-msgid "Local Printer Options"
-msgstr "„ķ”¼„«„ė„ׄź„ó„æ¤Ī„Ŗ„ׄ·„ē„ó"
-
-#: ../printerdrake.pm_.c:76
-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?"
-msgstr ""
-"¤¢¤é¤ę¤ė„ׄź„ó„Č„­„唼(„ׄź„ó„Č„ø„ē„Ö¤¬“ÉĶż¤µ¤ģ¤ė)¤ĻĢ¾Į°\n"
-"(¤æ¤¤¤Ę¤¤¤Ļ lp)¤Ŗ¤č¤Ó¤½¤ģ¤Ė“ŲĻ¢¤·¤Ę¤¤¤ė„¹„×”¼„ė„Ē„£„ģ„Æ„Č„ź¤ņɬĶפȤ·¤Ž¤¹”£\n"
-"¤³¤Ī„­„唼¤Ē»Č¤¦Ģ¾Į°¤Č„Ē„£„ģ„Æ„Č„ź¤Ļ²æ¤Ė¤·¤Ž¤¹¤«”©"
-
-#: ../printerdrake.pm_.c:79
-msgid "Name of queue:"
-msgstr "„­„唼¤ĪĢ¾Į°”§"
-
-#: ../printerdrake.pm_.c:79
-msgid "Spool directory:"
-msgstr "„¹„×”¼„ė¤Ī„Ē„£„ģ„Æ„Č„ź”§"
-
-#: ../printerdrake.pm_.c:90
-msgid "Select Printer Connection"
-msgstr "„ׄź„ó„æ¤ĪĄÜĀ³¤ņĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤"
-
-#: ../printerdrake.pm_.c:91
-msgid "How is the printer connected?"
-msgstr "„ׄź„ó„æ¤Ļ¤É¤¦¤Ä¤Ź¤¬¤Ć¤Ę¤¤¤Ž¤¹¤«”©"
-
-#: ../printerdrake.pm_.c:99
+#: ../../printerdrake.pm_.c:19
msgid "Detecting devices..."
msgstr "„Ē„Š„¤„¹¤Īø”½ŠĆę¤Ē¤¹”Ä”Ä"
-#: ../printerdrake.pm_.c:99
+#: ../../printerdrake.pm_.c:19
msgid "Test ports"
msgstr "„Ż”¼„ȤĪ„Ę„¹„Č"
-#: ../printerdrake.pm_.c:112
+#: ../../printerdrake.pm_.c:35
#, c-format
msgid "A printer, model \"%s\", has been detected on "
msgstr "\"%s\"„ׄź„ó„椬”¢¼”¤Ī¤Č¤³¤ķ¤Ēø«¤Ä¤«¤ź¤Ž¤·¤æ"
-#: ../printerdrake.pm_.c:119
+#: ../../printerdrake.pm_.c:44
msgid "Local Printer Device"
msgstr "„ķ”¼„«„ė„ׄź„ó„æ„Ē„Š„¤„¹"
-#: ../printerdrake.pm_.c:120
+#: ../../printerdrake.pm_.c:45
msgid ""
-"What device is your printer connected to \n"
+"What device is your printer connected to \n"
"(note that /dev/lp0 is equivalent to LPT1:)?\n"
msgstr ""
"„ׄź„ó„椬¤Ä¤Ź¤¬¤Ć¤Ę¤¤¤ė„Ē„Š„¤„¹¤Ļ²æ¤Ē¤¹¤«\n"
-"(Ćķ: /dev/lp0 ¤Ļ LPT1: ¤Ė¤Ź¤ź¤Ž¤¹)”©\n"
+"(Ćķ°Õ /dev/lp0 ¤Ļ LPT1: ¤Ė¤Ź¤ź¤Ž¤¹)”©\n"
-#: ../printerdrake.pm_.c:121
-msgid "Printer Device:"
+#: ../../printerdrake.pm_.c:47
+msgid "Printer Device"
msgstr "„ׄź„ó„æ„Ē„Š„¤„¹"
-#: ../printerdrake.pm_.c:125
+#: ../../printerdrake.pm_.c:62
msgid "Remote lpd Printer Options"
msgstr "„ź„ā”¼„Člpd„ׄź„ó„æ„Ŗ„ׄ·„ē„ó"
-#: ../printerdrake.pm_.c:126
+#: ../../printerdrake.pm_.c:63
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
@@ -3498,19 +4104,19 @@ msgstr ""
"„ź„ā”¼„ȤĪ lpd ¤Ī „ׄź„ó„Č„­„唼¤ņ»Č¤¦¤Ė¤Ļ”¤„ׄź„ó„愵”¼„Š¤Ī„Ū„¹„Č„Ķ”¼„ą¤Č\n"
"„ø„ē„Ö¤¬ĆÖ¤«¤ģ¤ė„µ”¼„Š¾å¤Ī„­„唼¤ĪĢ¾Į°¤¬É¬ĶפĖ¤Ź¤ź¤Ž¤¹”£."
-#: ../printerdrake.pm_.c:129
-msgid "Remote hostname:"
-msgstr "„ź„ā”¼„Č„Ū„¹„ČĢ¾”§"
+#: ../../printerdrake.pm_.c:66
+msgid "Remote hostname"
+msgstr "„ź„ā”¼„Č„Ū„¹„ČĢ¾"
-#: ../printerdrake.pm_.c:129
+#: ../../printerdrake.pm_.c:67
msgid "Remote queue"
msgstr "„ź„ā”¼„Č„­„唼"
-#: ../printerdrake.pm_.c:134
+#: ../../printerdrake.pm_.c:75
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB („¦„£„ó„É„¦„ŗ 9x/NT) „ׄź„ó„æ¤Ī„Ŗ„ׄ·„ē„ó"
-#: ../printerdrake.pm_.c:135
+#: ../../printerdrake.pm_.c:76
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (Note! It may be different from its\n"
@@ -3522,35 +4128,27 @@ msgstr ""
"ĀæŹ¬„ׄź„ó„Č„µ”¼„Š¤Ī IP „¢„É„ģ„¹”¤„¢„Æ„»„¹¤·¤æ¤¤„ׄź„ó„æ¤Ī¶¦Ķ­Ģ¾”¤\n"
"ŬĄŚ¤Ź„ę”¼„¶Ģ¾”¤„Ń„¹„ļ”¼„ɤŖ¤č¤Ó„ļ”¼„Æ„°„ė”¼„פĪ¾šŹó¤¬É¬ĶפĖ¤Ź¤ź¤Ž¤¹”£"
-#: ../printerdrake.pm_.c:140
-msgid "SMB server IP:"
-msgstr "SMB„µ”¼„Š¤ĪIP:"
-
-#: ../printerdrake.pm_.c:140
-msgid "SMB server host:"
-msgstr "SMB„µ”¼„Š„Ū„¹„Č:"
-
-#: ../printerdrake.pm_.c:141 ../printerdrake.pm_.c:163
-msgid "Password:"
-msgstr "„Ń„¹„ļ”¼„É:"
+#: ../../printerdrake.pm_.c:81
+msgid "SMB server host"
+msgstr "SMB„µ”¼„Š„Ū„¹„Č"
-#: ../printerdrake.pm_.c:141
-msgid "Share name:"
-msgstr "„·„§„¢Ģ¾”§"
+#: ../../printerdrake.pm_.c:82
+msgid "SMB server IP"
+msgstr "SMB„µ”¼„Š¤ĪIP"
-#: ../printerdrake.pm_.c:141 ../printerdrake.pm_.c:163
-msgid "User name:"
-msgstr "„ę”¼„¶Ģ¾:"
+#: ../../printerdrake.pm_.c:83
+msgid "Share name"
+msgstr "„·„§„¢Ģ¾"
-#: ../printerdrake.pm_.c:142
-msgid "Workgroup:"
-msgstr "„ļ”¼„Æ„°„ė”¼„×:"
+#: ../../printerdrake.pm_.c:86
+msgid "Workgroup"
+msgstr "„ļ”¼„Æ„°„ė”¼„×"
-#: ../printerdrake.pm_.c:157
+#: ../../printerdrake.pm_.c:102
msgid "NetWare Printer Options"
msgstr "Netware „ׄź„ó„æ¤Ī„Ŗ„ׄ·„ē„ó"
-#: ../printerdrake.pm_.c:158
+#: ../../printerdrake.pm_.c:103
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (Note! it may be different from its\n"
@@ -3562,67 +4160,95 @@ msgstr ""
"„¢„Æ„»„¹¤·¤æ¤¤„ׄź„ó„æ¤Ī„ׄź„ó„Č„­„唼Ģ¾”¤Å¬ĄŚ¤Ź„ę”¼„¶Ģ¾¤Ŗ¤č¤Ó„Ń„¹„ļ”¼„ɤ¬\n"
"ɬĶפĖ¤Ź¤ź¤Ž¤¹”£"
-#: ../printerdrake.pm_.c:162
-msgid "Print Queue Name:"
-msgstr "°õŗž„­„唼¤ĪĢ¾Į°”§"
+#: ../../printerdrake.pm_.c:107
+msgid "Printer Server"
+msgstr "„ׄź„ó„愵”¼„Š"
-#: ../printerdrake.pm_.c:162
-msgid "Printer Server:"
-msgstr "„ׄź„ó„愵”¼„Š”§"
+#: ../../printerdrake.pm_.c:108
+msgid "Print Queue Name"
+msgstr "°õŗž„­„唼¤ĪĢ¾Į°"
-#: ../printerdrake.pm_.c:173
+#: ../../printerdrake.pm_.c:121
msgid "Yes, print ASCII test page"
-msgstr "ASCII„Ę„¹„Č„Ś”¼„ø¤ņ°õŗž¤·¤Ę¤ß¤ė”§"
+msgstr "ASCII„Ę„¹„Č„Ś”¼„ø¤ņ°õŗž¤·¤Ę¤ß¤ė"
-#: ../printerdrake.pm_.c:174
+#: ../../printerdrake.pm_.c:122
msgid "Yes, print PostScript test page"
-msgstr "PostScript„Ę„¹„Č„Ś”¼„ø¤ņ°õŗž¤·¤Ę¤ß¤ė”§"
+msgstr "PostScript„Ę„¹„Č„Ś”¼„ø¤ņ°õŗž¤·¤Ę¤ß¤ė"
-#: ../printerdrake.pm_.c:175
+#: ../../printerdrake.pm_.c:123
msgid "Yes, print both test pages"
-msgstr "„Ę„¹„Č„Ś”¼„ø¤ņĪ¾Źż¤Č¤ā°õŗž¤·¤Ę¤ß¤ė”§"
+msgstr "„Ę„¹„Č„Ś”¼„ø¤ņĪ¾Źż¤Č¤ā°õŗž¤·¤Ę¤ß¤ė"
-#: ../printerdrake.pm_.c:183
+#: ../../printerdrake.pm_.c:130
msgid "Configure Printer"
msgstr "„ׄź„ó„æ¤ĪĄßÄź"
-#: ../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:131
msgid "What type of printer do you have?"
msgstr "¤É¤ó¤Ź„ׄź„ó„æ¤ņ»Č¤Ć¤Ę¤¤¤Ž¤¹¤«”©"
-#: ../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:163
msgid "Printer options"
msgstr "„ׄź„ó„æ„Ŗ„ׄ·„ē„ó"
-#: ../printerdrake.pm_.c:205
+#: ../../printerdrake.pm_.c:164
msgid "Paper Size"
msgstr "Ķѻꄵ„¤„ŗ"
-#: ../printerdrake.pm_.c:206
+#: ../../printerdrake.pm_.c:165
msgid "Eject page after job?"
msgstr "„ø„ē„Ö¤Īøå¤Ē„Ś”¼„øĒÓ½Š¤·¤Ž¤¹¤«”©"
-#: ../printerdrake.pm_.c:209
-msgid "Fix stair-stepping text?"
-msgstr "Źø»ś¤Ī„ø„ć„®”¼¤ņ¤Ź¤Ŗ¤·¤Ž¤¹¤«”©"
-
-#: ../printerdrake.pm_.c:212
+#: ../../printerdrake.pm_.c:170
msgid "Uniprint driver options"
msgstr "Uniprint„Ʉ鄤„Š„Ŗ„ׄ·„ē„ó"
-#: ../printerdrake.pm_.c:213
+#: ../../printerdrake.pm_.c:171
msgid "Color depth options"
msgstr "æ§æ¼ÅŁ„Ŗ„ׄ·„ē„ó"
-#: ../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:173
+msgid "Print text as PostScript?"
+msgstr "„Ę„­„¹„ȤņPostScript¤Ē°õŗž¤·¤Ž¤¹¤«”©"
+
+#: ../../printerdrake.pm_.c:174
+msgid "Reverse page order"
+msgstr "ŗĒøå¤Ī„Ś”¼„ø¤«¤é°õŗž"
+
+#: ../../printerdrake.pm_.c:176
+msgid "Fix stair-stepping text?"
+msgstr "Źø»ś¤Ī„ø„ć„®”¼¤ņ¤Ź¤Ŗ¤·¤Ž¤¹¤«”©"
+
+#: ../../printerdrake.pm_.c:179
+msgid "Number of pages per output pages"
+msgstr "½ŠĪĻ„Ś”¼„ø¤¢¤æ¤ź¤Ī„Ś”¼„øæō"
+
+#: ../../printerdrake.pm_.c:180
+msgid "Right/Left margins in points (1/72 of inch)"
+msgstr "ŗø±¦¤ĪĶ¾Ēņ¤ņ„Ż„¤„ó„Čæō”Ź1/72„¤„ó„Į”Ė¤Ē»ŲÄź"
+
+#: ../../printerdrake.pm_.c:181
+msgid "Top/Bottom margins in points (1/72 of inch)"
+msgstr "¾å²¼¤ĪĶ¾Ēņ¤ņ„Ż„¤„ó„Čæō”Ź1/72„¤„ó„Į”Ė¤Ē»ŲÄź"
+
+#: ../../printerdrake.pm_.c:184
+msgid "Extra GhostScript options"
+msgstr "¤½¤ĪĀ¾ GhostScript„Ŗ„ׄ·„ē„ó"
+
+#: ../../printerdrake.pm_.c:187
+msgid "Extra Text options"
+msgstr "¤½¤ĪĀ¾„Ę„­„¹„Č„Ŗ„ׄ·„ē„ó"
+
+#: ../../printerdrake.pm_.c:198
msgid "Do you want to test printing?"
msgstr "°õŗž¤ņ»ī¤·¤Ž¤¹¤«”©"
-#: ../printerdrake.pm_.c:234
+#: ../../printerdrake.pm_.c:210
msgid "Printing test page(s)..."
msgstr "„Ę„¹„Č„Ś”¼„ø°õŗžĆę”Ä”Ä"
-#: ../printerdrake.pm_.c:252
+#: ../../printerdrake.pm_.c:218
#, c-format
msgid ""
"Test page(s) have been sent to the printer daemon.\n"
@@ -3639,7 +4265,7 @@ msgstr ""
"\n"
"¤Į¤ć¤ó¤Č½ŠĪĻ¤µ¤ģ¤Ž¤·¤æ¤«”©"
-#: ../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:222
msgid ""
"Test page(s) have been sent to the printer daemon.\n"
"This may take a little time before printer start.\n"
@@ -3649,21 +4275,329 @@ msgstr ""
"„ׄź„ó„æ¤¬Ę°¤­½Š¤¹¤Ž¤Ē”¢¤Į¤ē¤Ć¤Č»ž“Ö¤¬¤«¤«¤ź¤Ž¤¹”£\n"
"¤Į¤ć¤ó¤Č½ŠĪĻ¤µ¤ģ¤Ž¤·¤æ¤«”©"
-#: ../raid.pm_.c:36
+#: ../../printerdrake.pm_.c:238
+msgid "Printer"
+msgstr "„ׄź„ó„æ"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Would you like to configure a printer?"
+msgstr "„ׄź„ó„æ¤ĪĄßÄź¤ņ¤·¤Ž¤¹¤«”©"
+
+#: ../../printerdrake.pm_.c:243
+msgid ""
+"Here are the following print queues.\n"
+"You can add some more or change the existing ones."
+msgstr ""
+"°Ź²¼¤Ī°õŗž„­„唼¤¬¤¢¤ź¤Ž¤¹”£\n"
+"°õŗž„­„唼¤ņÄÉ²Ć”¦ŹŃ¹¹¤Ē¤­¤Ž¤¹”£"
+
+#: ../../printerdrake.pm_.c:266 ../../printerdrake.pm_.c:272
+msgid "Select Printer Connection"
+msgstr "„ׄź„ó„æ¤ĪĄÜĀ³¤ņĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤"
+
+#: ../../printerdrake.pm_.c:267
+msgid "How is the printer connected?"
+msgstr "„ׄź„ó„æ¤Ļ¤É¤¦¤Ä¤Ź¤¬¤Ć¤Ę¤¤¤Ž¤¹¤«”©"
+
+#: ../../printerdrake.pm_.c:272
+msgid "Remove queue"
+msgstr "„­„唼¤Īŗļ½ü"
+
+#: ../../printerdrake.pm_.c:273
+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"
+"¤Ž¤æ„ׄź„ó„æ¤Ļ¤É¤¦ĄÜĀ³¤µ¤ģ¤Ę¤¤¤Ž¤¹¤«”©"
+
+#: ../../printerdrake.pm_.c:276
+msgid "Name of queue"
+msgstr "„­„唼¤ĪĢ¾Į°”§"
+
+#: ../../printerdrake.pm_.c:277
+msgid "Spool directory"
+msgstr "„¹„×”¼„ė¤Ī„Ē„£„ģ„Æ„Č„ź”§"
+
+#: ../../printerdrake.pm_.c:278
+msgid "Printer Connection"
+msgstr "„ׄź„ó„æ¤ĪĄÜĀ³Źż¼°"
+
+#: ../../raid.pm_.c:36
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "„Õ„©”¼„Ž„Ć„ČŗѤߤĪ RAID md%d ¤Ė¤Ļ„Ń”¼„Ę„£„·„ē„ó¤ņÄÉ²Ć¤Ē¤­¤Ž¤»¤ó"
-#: ../raid.pm_.c:106
+#: ../../raid.pm_.c:106
msgid "Can't write file $file"
msgstr "$file „Õ„”„¤„ė¤¬½ń¤­¹ž¤į¤Ž¤»¤ó"
-#: ../raid.pm_.c:146
+#: ../../raid.pm_.c:131
+msgid "mkraid failed"
+msgstr "mkraid ¤Ė¼ŗĒŌ"
+
+#: ../../raid.pm_.c:131
+msgid "mkraid failed (maybe raidtools are missing?)"
+msgstr "mkraid ¤Ė¼ŗĒŌ (raidtools ¤¬Ęž¤Ć¤Ę¤Ź¤¤¤Ī¤«¤ā?)"
+
+#: ../../raid.pm_.c:147
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "RAID „ģ„Ł„ė %d ¤Ī¤æ¤į¤Ė¤Ļ„Ń”¼„Ę„£„·„ē„ó¤¬ÉŌĀ­¤Ē¤¹\n"
-#: ../standalone/draksec_.c:28
+#: ../../services.pm_.c:14
+msgid "Anacron a periodic command scheduler."
+msgstr "Anacron ¤Ļ¼ž“üÅŖ¤Ź„³„Ž„ó„É„¹„±„ø„唼„é¤Ē¤¹”£"
+
+#: ../../services.pm_.c:15
+msgid ""
+"apmd is used for monitoring batery status and logging it via syslog.\n"
+"It can also be used for shutting down the machine when the battery is low."
+msgstr ""
+"apmd ¤Ļ„Š„Ć„Ę„ź”¼¤Ī¾õĀÖ¤ņÄ“¤Ł¤Ę¤½¤ģ¤ņsyslog·ŠĶ³¤Ēµ­Ļ椷¤Ž¤¹”£\n"
+"ÅÅĆÓ¤¬¤Ź¤Æ¤Ź¤Ć¤æ¤Č¤­¤Ė„Ž„·„ó¤ņ„·„ć„Ć„Č„Ą„¦„󤹤ė¤Ī¤Ė¤ā»Č¤Ø¤Ž¤¹”£"
+
+#: ../../services.pm_.c:17
+msgid ""
+"Runs commands scheduled by the at command at the time specified when\n"
+"at was run, and runs batch commands when the load average is low enough."
+msgstr ""
+"at„³„Ž„ó„ɤĒ„¹„±„ø„唼„ė¤µ¤ģ¤æ„³„Ž„ó„ɤņ”¢at¼Ā¹Ō»ž¤Ė»ŲÄź¤·¤æ»ž“Ö¤Ė\n"
+"¼Ā¹Ō¤·¤Ę”¢Źæ¶ŃÉé²Ł¤¬Ä椤¤Č¤­¤Ė„Š„Ć„Į„³„Ž„ó„ɤņ¼Ā¹Ō¤·¤Ž¤¹”£"
+
+#: ../../services.pm_.c:19
+msgid ""
+"cron is a standard UNIX program that runs user-specified programs\n"
+"at periodic scheduled times. vixie cron adds a number of features to the "
+"basic\n"
+"UNIX cron, including better security and more powerful configuration options."
+msgstr ""
+"cron¤ĻUNIXÉø½ą¤Ī„ׄķ„°„é„ą¤Ē”¢„ę”¼„¶»ŲÄź¤Ī„ׄķ„°„é„ą¤ņÄź“üÅŖ¤Ė\n"
+"¼Ā¹Ō¤·¤Ž¤¹”£vixie cron¤ĻÉø½ą¤ĪUNIX cron¤Ė¹āÅŁ¤Ź„»„­„å„ź„Ę„£¤ä\n"
+"¶ÆĪĻ¤ŹĄßÄź„Ŗ„ׄ·„ē„󤏤ɤĪµ”Ē½¤ņÄÉ²Ć¤·¤Ę¤¤¤Ž¤¹”£"
+
+#: ../../services.pm_.c:22
+msgid ""
+"GPM adds mouse support to text-based Linux applications such the\n"
+"Midnight Commander. It also allows mouse-based console cut-and-paste "
+"operations,\n"
+"and includes support for pop-up menus on the console."
+msgstr ""
+"GPM ¤ĻMidnight Commander¤Ź¤É„Ę„­„¹„Č„Ł”¼„¹¤ĪLinux„½„Õ„Č¤Ē„Ž„¦„¹¤¬\n"
+"»Č¤Ø¤ė¤č¤¦¤Ė¤·¤Ž¤¹”£„Ž„¦„¹¤Ė¤č¤ė„³„ó„½”¼„ė¤Ē¤Ī„«„Ć„Č”¦„Ś”¼„¹„Č\n"
+"¤ä”¢„Ż„Ƅׄ¢„Ƅׄį„Ė„唼¤ā»Č¤Ø¤Ž¤¹”£"
+
+#: ../../services.pm_.c:25
+msgid ""
+"Apache is a World Wide Web server. It is used to serve HTML files\n"
+"and CGI."
+msgstr "Apache¤ĻWorld Wide Web„µ”¼„Š¤Ē¤¹”£HTML „Õ„”„¤„ė¤äCGI¤Īøų³«¤Ė»Č¤¤¤Ž¤¹”£"
+
+#: ../../services.pm_.c:27
+msgid ""
+"The internet superserver daemon (commonly called inetd) starts a\n"
+"variety of other internet services as needed. It is responsible for "
+"starting\n"
+"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
+"disables\n"
+"all of the services it is responsible for."
+msgstr ""
+"„¤„ó„攼„Ķ„Ć„Č”¦„¹”¼„Ń”¼„µ”¼„Š”¦„Ē”¼„ā„ó (ÄĢ¾Īinetd) ¤Ļ”¢É¬ĶפĖ\n"
+"±ž¤ø¤Ę¤½¤ĪĀ¾³Ę¼ļ„¤„ó„攼„Ķ„Ć„Č„µ”¼„Ó„¹¤ņ³«»Ļ¤·¤Ž¤¹”£telnet”¢ftp”¢\n"
+"rsh”¢rlogin¤Ź¤É¤Ī„µ”¼„Ó„¹³«»Ļ¤ņĆ“Åö¤·¤Ž¤¹”£inetd¤ņĢµøś¤Ė¤¹¤ė¤Č”¢\n"
+"¤³¤¦¤·¤æ³Ę¼ļ„µ”¼„Ó„¹¤¹¤Ł¤Ę¤¬Ģµøś¤Ė¤Ź¤ź¤Ž¤¹”£"
+
+#: ../../services.pm_.c:31
+msgid ""
+"This package loads the selected keyboard map as set in\n"
+"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
+"You should leave this enabled for most machines."
+msgstr ""
+"¤³¤Ī„Ń„Ć„±”¼„ø¤Ļ”¢/etc/sysconfig/keyboard¤«¤éĄßÄź¤·¤æ„­”¼„Ü”¼„É„Ž„Ƅפņ\n"
+"„ķ”¼„ɤ·¤Ž¤¹”£¤³¤ģ¤Ļkbdconfig„ę”¼„Ę„£„ź„Ę„£¤ņ»Č¤Ć¤ĘĄßÄź¤·¤Ž¤¹”£ÄĢ¾ļ¤Ļ\n"
+"Ķ­øś¤Ė¤·¤Ę¤Ŗ¤­¤Ž¤·¤ē¤¦”£"
+
+#: ../../services.pm_.c:34
+msgid ""
+"lpd is the print daemon required for lpr to work properly. It is\n"
+"basically a server that arbitrates print jobs to printer(s)."
+msgstr ""
+"lpd ¤Ļ„ׄź„ó„æ„Ē”¼„ā„ó¤Ē”¢lpr¤¬¤­¤\b€£ĀČĘ°¤Æ¤Ī¤ĖɬĶפĒ¤¹”£“šĖÜÅŖ¤Ė\n"
+"¤Ļ„ׄź„ó„æ¤Ė°õŗž„ø„ē„Ö¤ņ涤źŹ¬¤±¤ė„µ”¼„Š¤Ē¤¹”£"
+
+#: ../../services.pm_.c:36
+msgid ""
+"named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
+"host names to IP addresses."
+msgstr ""
+"named (BIND) ¤Ļ”¢IP„¢„É„ģ„¹¤Č„Ū„¹„ČĢ¾¤ņ·ė¤Ó¤Ä¤±¤ė¤æ¤į¤Ī„É„į„¤„óĢ¾\n"
+"„µ”¼„Š”ŹDomain Name Server, DNS) ¤Ē¤¹”£"
+
+#: ../../services.pm_.c:38
+msgid ""
+"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
+"Manager/Windows), and NCP (NetWare) mount points."
+msgstr ""
+"„Ķ„Ć„Č„ļ”¼„Æ„Õ„”„¤„ė„·„¹„Ę„ą (NFS), SMB (LanManager/Windows),\n"
+"NCP (NetWare) „Ž„¦„ó„Č„Ż„¤„ó„Ȥņ¤¹¤Ł¤Ę„Ž„¦„ó„Č”¦„¢„ó„Ž„¦„ó„Ȥ·¤Ž¤¹”£"
+
+#: ../../services.pm_.c:40
+msgid ""
+"Activates/Deactivates all network interfaces configured to start\n"
+"at boot time."
+msgstr ""
+"µÆĘ°»ž¤ĖĶ­øś¤Ė¤¹¤ėĄßÄź¤Ī„Ķ„Ć„Č„ļ”¼„Æ„¤„ó„攼„Õ„§”¼„¹¤ņ¤¹¤Ł¤Ę”¢\n"
+"Ķ­øś”¦Ģµøś¤Ė¤·¤Ž¤¹”£"
+
+#: ../../services.pm_.c:42
+msgid ""
+"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
+"This service provides NFS server functionality, which is configured via the\n"
+"/etc/exports file."
+msgstr ""
+"NFS ¤ĻTCP/IP„Ķ„Ć„Č„ļ”¼„ƾå¤Ē„Õ„”„¤„ė¶¦Ķ­¤ņ¤¹¤ė¤Ī¤Ė¤č¤Æ»Č¤¦„ׄķ„Č„³„ė\n"
+"¤Ē¤¹”£¤³¤Ī„µ”¼„Ó„¹¤Ļ NFS „µ”¼„Šµ”Ē½¤ņÄ󶔤·¤Ž¤¹”£ĄßÄź¤Ė¤Ļ/etc/exports \n"
+"„Õ„”„¤„ė¤ņ»Č¤¤¤Ž¤¹”£"
+
+#: ../../services.pm_.c:45
+msgid ""
+"NFS is a popular protocol for file sharing across TCP/IP\n"
+"networks. This service provides NFS file locking functionality."
+msgstr ""
+"NFS ¤ĻTCP/IP„Ķ„Ć„Č„ļ”¼„ƾå¤Ē„Õ„”„¤„ė¶¦Ķ­¤ņ¤¹¤ė¤Ī¤Ė¤č¤Æ»Č¤¦„ׄķ„Č„³„ė\n"
+"¤Ē¤¹”£¤³¤Ī„µ”¼„Ó„¹¤Ļ NFS „Õ„”„¤„ė„ķ„Ć„Æµ”Ē½¤ņÄ󶔤·¤Ž¤¹”£"
+
+#: ../../services.pm_.c:47
+msgid ""
+"PCMCIA support is usually to support things like ethernet and\n"
+"modems in laptops. It won't get started unless configured so it is safe to "
+"have\n"
+"it installed on machines that don't need it."
+msgstr ""
+"PCMCIA „µ„Ż”¼„ȤĻ”¢„é„ƄׄȄƄׄ³„ó„Ō„唼„æ¤ĒEthernet¤ä„ā„Ē„ą\n"
+"¤Ź¤É¤ĪPC„«”¼„ɤņ»Č¤Ø¤ė¤č¤¦¤Ė¤¹¤ė¤æ¤į¤Ī¤ā¤Ī¤Ē¤¹”£ĄßÄź¤¹¤ė¤Ž¤Ē\n"
+"¤ĻµÆĘ°¤·¤Ź¤¤¤Ī¤Ē”¢É¬ĶפŹ¤¤„Ž„·„ó¤ĖĘž¤ģ¤Ę¤¢¤Ć¤Ę¤ā°ĀĮ“¤Ē¤¹”£"
+
+#: ../../services.pm_.c:50
+msgid ""
+"The portmapper manages RPC connections, which are used by\n"
+"protocols such as NFS and NIS. The portmap server must be running on "
+"machines\n"
+"which act as servers for protocols which make use of the RPC mechanism."
+msgstr ""
+"portmapper ¤Ļ RPC ĄÜĀ³¤ņ“ÉĶż¤·¤Ž¤¹”£¤³¤ģ¤ĻNFS¤äNIS¤Ź¤É¤Ī„ׄķ„Č„³„ė¤Ē\n"
+"»ČĶѤµ¤ģ¤Ž¤¹”£RPCµ”¹½¤ņ»Č¤¦„ׄķ„Č„³„ė¤Ī„µ”¼„Š¤Č¤Ź¤ė„Ž„·„ó¤Ē¤Ļ”¢¤³¤Ī\n"
+"portmap „µ”¼„Š¤¬Ę°¤¤¤Ę¤¤¤ėɬĶפ¬¤¢¤ź¤Ž¤¹”£"
+
+#: ../../services.pm_.c:53
+msgid ""
+"Postfix is a Mail Transport Agent, which is the program that\n"
+"moves mail from one machine to another."
+msgstr ""
+"Postfix ¤Ļ„į”¼„ėžĮ÷„Ø”¼„ø„§„ó„ȤĒ¤¹ (MTA) ¤Ē¤¹”£¤³¤ģ¤Ļ”¢„Ž„·„ó“Ö¤Ē\n"
+"„į”¼„ė¤ņ¤ä¤ź¤Č¤ź¤¹¤ė„ׄķ„°„é„ą¤Ē¤¹”£"
+
+#: ../../services.pm_.c:55
+msgid ""
+"Saves and restores system entropy pool for higher quality random\n"
+"number generation."
+msgstr ""
+"ĶšæōČÆĄø¤Ī¼Į¤ņ¾å¤²¤ė¤æ¤į¤Ė”¢„·„¹„Ę„ą¤Ī„Ø„ó„Č„ķ„Ō”¼„×”¼„ė¤ņŹŻĀø”¦\n"
+"Éü³č¤µ¤»¤Ž¤¹”£"
+
+#: ../../services.pm_.c:57
+msgid ""
+"The routed daemon allows for automatic IP router table updated via\n"
+"the RIP protocol. While RIP is widely used on small networks, more complex\n"
+"routing protocols are needed for complex networks."
+msgstr ""
+"routed „Ē”¼„ā„ó¤Ļ”¢RIP„ׄķ„Č„³„ė¤ņ»Č¤Ć¤ĘIP„Ę”¼„Ö„ė¤Ī¼«Ę°¹¹æ·¤ņ\n"
+"²ÄĒ½¤Ė¤·¤Ž¤¹”£RIP ¤Ļ¾®µ¬ĢĻ„Ķ„Ć„Č„ļ”¼„ƤĒ¤ĻŹŲĶų¤Ē¤č¤Æ»Č¤ļ¤ģ¤Ž¤¹¤¬”¢\n"
+"„Ķ„Ć„Č„ļ”¼„Ƥ¬Ź£»Ø¤Ė¤Ź¤Ć¤Ę¤Æ¤ė¤Č”¢¤³¤ģ¤Ē¤ĻÉŌ½½Ź¬¤Ē¤¹”£"
+
+#: ../../services.pm_.c:60
+msgid ""
+"The rstat protocol allows users on a network to retrieve\n"
+"performance metrics for any machine on that network."
+msgstr ""
+"rstat„ׄķ„Č„³„ė¤ņ»Č¤¦¤Č”¢„Ķ„Ć„Č„ļ”¼„ƾå¤Ī„ę”¼„¶¤¬”¢¤½¤Ī„Ķ„Ć„Č„ļ”¼„Æ\n"
+"¤ĖĄÜĀ³¤·¤æ„Ž„·„ó¤Ī¤¹¤Ł¤Ę¤Ė¤Ä¤¤¤Ę”¢Ą­Ē½»ŲÉø¤ņĘĄ¤é¤ģ¤ė¤č¤¦¤Ė¤Ź¤ź¤Ž¤¹”£"
+
+#: ../../services.pm_.c:62
+msgid ""
+"The rusers protocol allows users on a network to identify who is\n"
+"logged in on other responding machines."
+msgstr ""
+"rusers„ׄķ„Č„³„ė¤Ē¤Ļ”¢„Ķ„Ć„Č„ļ”¼„ƾå¤Ī„ę”¼„¶¤¬”¢±žÅś¤¹¤ė¤Ū¤«¤Ī„Ž„·„ó\n"
+"¤Ė„ķ„°„¤„󤷤ʤ¤¤ėæĶ¤æ¤Į¤ņø«¤ė¤³¤Č¤¬¤Ē¤­¤Ž¤¹”£"
+
+#: ../../services.pm_.c:64
+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 ""
+"rwho „Ē”¼„ā„ó¤¬Įö¤Ć¤Ę¤¤¤ė„Ž„·„ó¤Ē¤Ļ”¢¤½¤Ī„Ž„·„ó¤Ė„ķ„°„¤„óĆę¤Ī\n"
+"„ę”¼„¶°ģĶ÷¤ņrwho„ׄķ„Č„³„ė·ŠĶ³¤Ēø«¤é¤ģ¤Ž¤¹ (finger¤Ė»÷¤Ę¤¤¤Ž¤¹)”£"
+
+#: ../../services.pm_.c:66
+msgid ""
+"Syslog is the facility by which many daemons use to log messages\n"
+"to various system log files. It is a good idea to always run syslog."
+msgstr ""
+"Syslog ¤Ļ”¢³Ę¼ļ¤Ī„Ē”¼„ā„󤬤¤¤ķ¤ó¤Ź„ķ„°„Õ„”„¤„ė¤Ė„į„Ć„»”¼„ø¤ņµ­Ļæ\n"
+"¤¹¤ė¤Č¤­¤Ė»Č¤¤¤Ž¤¹”£¤ŗ¤Ć¤ČµÆĘ°¤·¤Ę¤Ŗ¤Æ¤Ū¤¦¤¬¤¤¤¤¤Ē¤·¤ē¤¦”£"
+
+#: ../../services.pm_.c:68
+msgid "This startup script try to load your modules for your usb mouse."
+msgstr "¤³¤ĪµÆĘ°„¹„Æ„ź„ׄȤĻUSB„Ž„¦„¹ĶѤĪ„ā„ø„唼„ė¤ņ„ķ”¼„ɤ·¤Ž¤¹”£"
+
+#: ../../services.pm_.c:69
+msgid "Starts and stops the X Font Server at boot time and shutdown."
+msgstr "µÆĘ°»ž/„·„ć„Ć„Č„Ą„¦„󻞤Ė”¢X„Õ„©„ó„Č„µ”¼„Š¤ņ³«»Ļ/Ää»ß¤·¤Ž¤¹”£"
+
+#: ../../services.pm_.c:92
+msgid "Choose which services should be automatically started at boot time"
+msgstr "µÆĘ°»ž¤Ė¼«Ę°ÅŖ¤Ė¤æ¤Į¤¢¤²¤ė„µ”¼„Ó„¹¤ņĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤"
+
+#: ../../silo.pm_.c:116
+#, c-format
+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 ""
+"SILO 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"
+
+#: ../../standalone/drakboot_.c:23
+msgid "Configure LILO/GRUB"
+msgstr "LILO/GRUB ¤ĪĄßÄź"
+
+#: ../../standalone/drakboot_.c:24
+msgid "Create a boot floppy"
+msgstr "µÆĘ°„Ē„£„¹„ÆŗīĄ®"
+
+#: ../../standalone/drakboot_.c:25
+msgid "Format floppy"
+msgstr "„Õ„ķ„Ć„Ō”¼¤ņ„Õ„©”¼„Ž„Ć„Č"
+
+#: ../../standalone/drakboot_.c:36
+msgid "Choice"
+msgstr "ĮŖĀņ"
+
+#: ../../standalone/draksec_.c:28
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"
@@ -3673,7 +4607,7 @@ msgstr ""
"¤Ą¤ģ¤Ė¤Ē¤ā„¢„Æ„»„¹¤Ē¤­¤Ę¤·¤Ž¤¤¤Ž¤¹”£Ā¾¤Ī„Ž„·„ó¤ĖĄÜĀ³¤·¤æ¤ź”¢„¤„ó„攼„Ķ„Ć„Č\n"
"¤Ė¤Ä¤Ź¤¬¤Ć¤æ¤ź¤·¤æ„Ž„·„ó¤Ē¤Ļ»Č¤ļ¤Ź¤¤¤Ē¤Æ¤Ą¤µ¤¤”£„Ń„¹„ļ”¼„ÉĄ©øĀ¤ā¤¢¤ź¤Ž¤»¤ó”£"
-#: ../standalone/draksec_.c:31
+#: ../../standalone/draksec_.c:31
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -3681,7 +4615,7 @@ msgstr ""
"„Ń„¹„ļ”¼„ɤ¬Ķ­øś¤Ė¤Ź¤ź¤Ž¤·¤æ¤¬”¢„Ķ„Ć„Č„ļ”¼„ƤĖ¤Ä¤Ź¤°¤Ī¤Ļ¤Ž¤Ą\n"
"¤Ŗ¾©¤į¤Ē¤­¤Ž¤»¤ó”£"
-#: ../standalone/draksec_.c:32
+#: ../../standalone/draksec_.c:32
msgid ""
"Few improvements for this security level, the main one is that there are\n"
"more security warnings and checks."
@@ -3689,7 +4623,7 @@ msgstr ""
"¤³¤Ī„»„­„å„ź„Ę„£„ģ„Ł„ė¤Ļ¤Į¤ē¤Ć¤Č¤č¤Æ¤Ź¤Ć¤Ę¤¤¤Ę”¢·Ł¹š¤ä„Į„§„Ć„Æ¤¬\n"
"Įż¤Ø¤Ę¤¤¤Ž¤¹”£"
-#: ../standalone/draksec_.c:34
+#: ../../standalone/draksec_.c:34
msgid ""
"This is the standard security recommended for a computer that will be used\n"
"to connect to the Internet as a client. There are now security checks. "
@@ -3697,7 +4631,7 @@ msgstr ""
"¤³¤ģ¤ĻÉø½ą¤Ī„»„­„å„ź„Ę„£¤Ē”¢„Ƅ鄤„¢„ó„ȤȤ·¤Ę„¤„ó„攼„Ķ„Ć„ČĄÜĀ³¤¹¤ė\n"
"„Ž„·„ó¤Ē¤Īæ侩„ģ„Ł„ė¤Ē¤¹”£„»„­„å„ź„Ę„£„Į„§„Ć„Æ¤¬¹Ō¤ļ¤ģ¤Ž¤¹”£"
-#: ../standalone/draksec_.c:36
+#: ../../standalone/draksec_.c:36
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -3708,7 +4642,7 @@ msgstr ""
"Āææō¤Ī„Ƅ鄤„¢„ó„Ȥ«¤éĄÜĀ³¤ņ¼õ¤±¤ė„µ”¼„Š¤Č¤·¤Ę¤ā»Č¤Ø¤ė¤Ą¤±¤Ī„»„­„å„ź„Ę„£\n"
"æå½ą¤Ė¤Ź¤Ć¤Ę¤¤¤Ž¤¹”£"
-#: ../standalone/draksec_.c:39
+#: ../../standalone/draksec_.c:39
msgid ""
"We take level 4 features, but now the system is entirely closed.\n"
"Security features are at their maximum."
@@ -3716,177 +4650,177 @@ msgstr ""
"„ģ„Ł„ė4 ¤Ī„»„­„å„ź„Ę„£µ”Ē½¤Ė¤·¤Ž¤·¤æ¤¬”¢¤³¤ģ¤Ē„·„¹„Ę„ą¤Ļ“°Į“¤Ė¤Č¤ø¤æ¾õĀÖ\n"
"¤Ė¤Ź¤Ć¤Ę¤¤¤Ž¤¹”£„»„­„å„ź„Ę„£¤ĻŗĒĀē¤Ē¤¹”£"
-#: ../standalone/draksec_.c:49
+#: ../../standalone/draksec_.c:49
msgid "Setting security level"
msgstr "„»„­„å„ź„Ę„£„ģ„Ł„ė¤ĪĄßÄźĆę"
-#: ../standalone/drakxconf_.c:21
+#: ../../standalone/drakxconf_.c:21
msgid "Choose the tool you want to use"
msgstr "»ČĶѤ¹¤ė„Ä”¼„ė¤ņĮŖ¤ó¤Ē²¼¤µ¤¤"
-#: ../standalone/drakxservices_.c:21
-msgid "Choose which services should be automatically started at boot time"
-msgstr "µÆĘ°»ž¤Ė¼«Ę°ÅŖ¤Ė¤æ¤Į¤¢¤²¤ė„µ”¼„Ó„¹¤ņĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤"
+#: ../../standalone/keyboarddrake_.c:23
+msgid "What is your keyboard layout?"
+msgstr "„­”¼„Ü”¼„É„ģ„¤„¢„¦„ȤĻ²æ¤Ē¤¹¤«”©"
-#: ../standalone/mousedrake_.c:30
+#: ../../standalone/mousedrake_.c:25
+msgid "What is the type of your mouse?"
+msgstr "„Ž„¦„¹¤Ī·æ¤Ļ¤Ź¤ó¤Ē¤¹¤«”©"
+
+#: ../../standalone/mousedrake_.c:30
msgid "no serial_usb found\n"
msgstr "serial_usb¤¬ø«¤Ä¤«¤ź¤Ž¤»¤ó\n"
-#: ../standalone/mousedrake_.c:35
+#: ../../standalone/mousedrake_.c:35
msgid "Emulate third button?"
msgstr "ææĆę„Ü„æ„ó¤ņ„Ø„ß„å„ģ”¼„Ȥ·¤Ž¤¹¤«”©"
-#: ../standalone/rpmdrake_.c:25
+#: ../../standalone/mousedrake_.c:39
+msgid "Which serial port is your mouse connected to?"
+msgstr "„Ž„¦„¹¤Ļ¤É¤Ī„·„ź„¢„ė„Ż”¼„ȤĖ¤Ä¤Ź¤¬¤Ć¤Ę¤¤¤Ž¤¹¤«”©"
+
+#: ../../standalone/rpmdrake_.c:25
msgid "reading configuration"
msgstr "ĄßÄź¤ņĘɤߤȤƤʤ¤¤Ž¤¹"
-#: ../standalone/rpmdrake_.c:45 ../standalone/rpmdrake_.c:50
-#: ../standalone/rpmdrake_.c:253
+#: ../../standalone/rpmdrake_.c:45 ../../standalone/rpmdrake_.c:50
+#: ../../standalone/rpmdrake_.c:253
msgid "File"
msgstr "„Õ„”„¤„ė"
-#: ../standalone/rpmdrake_.c:48 ../standalone/rpmdrake_.c:229
-#: ../standalone/rpmdrake_.c:253 ../standalone/rpmdrake_.c:269
+#: ../../standalone/rpmdrake_.c:48 ../../standalone/rpmdrake_.c:229
+#: ../../standalone/rpmdrake_.c:253 ../../standalone/rpmdrake_.c:269
msgid "Search"
msgstr "ø”ŗ÷"
-#: ../standalone/rpmdrake_.c:49 ../standalone/rpmdrake_.c:56
+#: ../../standalone/rpmdrake_.c:49 ../../standalone/rpmdrake_.c:56
msgid "Package"
msgstr "„Ń„Ć„±”¼„ø"
-#: ../standalone/rpmdrake_.c:51
+#: ../../standalone/rpmdrake_.c:51
msgid "Text"
msgstr "„Ę„­„¹„Č"
-#: ../standalone/rpmdrake_.c:53
+#: ../../standalone/rpmdrake_.c:53
msgid "Tree"
msgstr "„Ä„ź”¼"
-#: ../standalone/rpmdrake_.c:54
+#: ../../standalone/rpmdrake_.c:54
msgid "Sort by"
msgstr "°Ź²¼¤Ī„­”¼¤Ē„½”¼„Č”§"
-#: ../standalone/rpmdrake_.c:55
+#: ../../standalone/rpmdrake_.c:55
msgid "Category"
msgstr "¼ļĪą"
-#: ../standalone/rpmdrake_.c:58
+#: ../../standalone/rpmdrake_.c:58
msgid "See"
msgstr "°Ź²¼¤ņ»²¾Č”§"
-#: ../standalone/rpmdrake_.c:59 ../standalone/rpmdrake_.c:163
+#: ../../standalone/rpmdrake_.c:59 ../../standalone/rpmdrake_.c:163
msgid "Installed packages"
msgstr "„¤„ó„¹„Č”¼„ėŗѤߤĪ„Ń„Ć„±”¼„ø"
-#: ../standalone/rpmdrake_.c:60
+#: ../../standalone/rpmdrake_.c:60
msgid "Available packages"
msgstr "„¤„ó„¹„Č”¼„ė¤·¤Ę¤¤¤Ź¤¤„Ń„Ć„±”¼„ø"
-#: ../standalone/rpmdrake_.c:62
+#: ../../standalone/rpmdrake_.c:62
msgid "Show only leaves"
msgstr "¾ÜŗŁÉōŹ¬¤Ą¤±É½¼Ø"
-#: ../standalone/rpmdrake_.c:67
+#: ../../standalone/rpmdrake_.c:67
msgid "Expand all"
msgstr "„Ä„ź”¼¤ņ“°Į“¤Ė¤Ī¤Š¤·¤­¤ė"
-#: ../standalone/rpmdrake_.c:68
+#: ../../standalone/rpmdrake_.c:68
msgid "Collapse all"
msgstr "„Ä„ź”¼¤ņ“°Į“¤Ė½Ģ¤į¤ė"
-#: ../standalone/rpmdrake_.c:70
+#: ../../standalone/rpmdrake_.c:70
msgid "Configuration"
msgstr "ĄßÄź"
-#: ../standalone/rpmdrake_.c:71
+#: ../../standalone/rpmdrake_.c:71
msgid "Add location of packages"
msgstr "„Ń„Ć„±”¼„ø¤Ī°ĢĆÖ¤ņÄɲĆɽ¼Ø"
-#: ../standalone/rpmdrake_.c:75
+#: ../../standalone/rpmdrake_.c:75
msgid "Update location"
msgstr "„¢„ƄׄĒ”¼„Ȥ¹¤ė°ĢĆÖ"
-#: ../standalone/rpmdrake_.c:79 ../standalone/rpmdrake_.c:328
+#: ../../standalone/rpmdrake_.c:79 ../../standalone/rpmdrake_.c:328
msgid "Remove"
msgstr "ŗļ½ü"
-#: ../standalone/rpmdrake_.c:100
+#: ../../standalone/rpmdrake_.c:100
msgid "Configuration: Add Location"
msgstr "ĄßÄź”§°ĢĆÖ¤ņÄɲĆ"
-#: ../standalone/rpmdrake_.c:101
-msgid "Expand Tree"
-msgstr "„Ä„ź”¼¤ņ¤Ī¤Š¤¹"
-
-#: ../standalone/rpmdrake_.c:102
-msgid "Collapse Tree"
-msgstr "„Ä„ź”¼¤ņ½Ģ¤į¤ė"
-
-#: ../standalone/rpmdrake_.c:103
+#: ../../standalone/rpmdrake_.c:103
msgid "Find Package"
msgstr "„Ń„Ć„±”¼„ø¤Īø”ŗ÷"
-#: ../standalone/rpmdrake_.c:104
+#: ../../standalone/rpmdrake_.c:104
msgid "Find Package containing file"
msgstr "°Ź²¼¤Ī„Õ„”„¤„ė¤ņ“Ž¤ą„Ń„Ć„±”¼„ø¤Īø”ŗ÷”§"
-#: ../standalone/rpmdrake_.c:105
+#: ../../standalone/rpmdrake_.c:105
msgid "Toggle between Installed and Available"
msgstr "„¤„ó„¹„Č”¼„ėŗѤߤČĢ¤„¤„ó„¹„Č”¼„ė¤ņĄŚ¤źĀŲ¤Ø"
-#: ../standalone/rpmdrake_.c:139
+#: ../../standalone/rpmdrake_.c:139
msgid "Files:\n"
msgstr "„Õ„”„¤„ė:\n"
-#: ../standalone/rpmdrake_.c:161 ../standalone/rpmdrake_.c:209
+#: ../../standalone/rpmdrake_.c:161 ../../standalone/rpmdrake_.c:209
msgid "Uninstall"
msgstr "„¢„ó„¤„ó„¹„Č”¼„ė"
-#: ../standalone/rpmdrake_.c:163
+#: ../../standalone/rpmdrake_.c:163
msgid "Choose package to install"
msgstr "„¤„ó„¹„Č”¼„ė¤·¤æ¤¤„Ń„Ć„±”¼„ø¤ĪĮŖĀņ"
-#: ../standalone/rpmdrake_.c:190
+#: ../../standalone/rpmdrake_.c:190
msgid "Checking dependencies"
msgstr "„Ń„Ć„±”¼„ø¤Ī°ĶĀø“Ų·ø¤ņÄ“¤Ł¤Ę¤¤¤Ž¤¹"
-#: ../standalone/rpmdrake_.c:190 ../standalone/rpmdrake_.c:409
+#: ../../standalone/rpmdrake_.c:190 ../../standalone/rpmdrake_.c:409
msgid "Wait"
msgstr "¾Æ”¹¤ŖĀŌ¤Į¤ņ"
-#: ../standalone/rpmdrake_.c:209
+#: ../../standalone/rpmdrake_.c:209
msgid "The following packages are going to be uninstalled"
msgstr "°Ź²¼¤Ī„Ń„Ć„±”¼„ø¤Ļ„¢„ó„¤„ó„¹„Č”¼„ė¤Ē¤­¤Ž¤»¤ó"
-#: ../standalone/rpmdrake_.c:210
+#: ../../standalone/rpmdrake_.c:210
msgid "Uninstalling the RPMs"
msgstr "„Ń„Ć„±”¼„ø¤ņ¤Ī„¢„ó„¤„ó„¹„Č”¼„ė¤·¤Ę¤¤¤Ž¤¹"
-#: ../standalone/rpmdrake_.c:229 ../standalone/rpmdrake_.c:269
+#: ../../standalone/rpmdrake_.c:229 ../../standalone/rpmdrake_.c:269
msgid "Regexp"
msgstr "Ąµµ¬É½ø½"
-#: ../standalone/rpmdrake_.c:229
+#: ../../standalone/rpmdrake_.c:229
msgid "Which package are looking for"
msgstr "¤É¤Ī„Ń„Ć„±”¼„ø¤ņ¤µ¤¬¤·¤Ę¤¤¤Ž¤¹¤«"
-#: ../standalone/rpmdrake_.c:238 ../standalone/rpmdrake_.c:262
-#: ../standalone/rpmdrake_.c:278
+#: ../../standalone/rpmdrake_.c:238 ../../standalone/rpmdrake_.c:262
+#: ../../standalone/rpmdrake_.c:278
#, c-format
msgid "%s not found"
msgstr "%s ¤¬ø«¤Ä¤«¤ź¤Ž¤»¤ó"
-#: ../standalone/rpmdrake_.c:238 ../standalone/rpmdrake_.c:262
-#: ../standalone/rpmdrake_.c:278
+#: ../../standalone/rpmdrake_.c:238 ../../standalone/rpmdrake_.c:262
+#: ../../standalone/rpmdrake_.c:278
msgid "No match"
msgstr "°ģĆפ¹¤ė¤ā¤Ī¤¬¤¢¤ź¤Ž¤»¤ó"
-#: ../standalone/rpmdrake_.c:238 ../standalone/rpmdrake_.c:262
-#: ../standalone/rpmdrake_.c:278
+#: ../../standalone/rpmdrake_.c:238 ../../standalone/rpmdrake_.c:262
+#: ../../standalone/rpmdrake_.c:278
msgid "No more match"
msgstr "¤³¤ģ°Ź¾å¤Ļ¤ß¤Ä¤«¤ź¤Ž¤»¤ó"
-#: ../standalone/rpmdrake_.c:246
+#: ../../standalone/rpmdrake_.c:246
msgid ""
"rpmdrake is currently in ``low memory'' mode.\n"
"I'm going to relaunch rpmdrake to allow searching files"
@@ -3894,31 +4828,31 @@ msgstr ""
"rpmdrake ¤Ļø½ŗß”¢„į„ā„źÉŌĀ­¤Ė¤Ź¤Ć¤Ę¤¤¤Ž¤¹”£\n"
"°ģ²órpmdrake¤ņ¤æ¤Į¤¢¤²¤Ź¤Ŗ¤·¤Ę”¢„Õ„”„¤„ė¤Īø”ŗ÷¤ņĀ³¤±¤Ž¤¹¤Ķ"
-#: ../standalone/rpmdrake_.c:253
-msgid "Which file are you looking for"
+#: ../../standalone/rpmdrake_.c:253
+msgid "Which file are you looking for?"
msgstr "¤É¤Ī„Õ„”„¤„ė¤ņ¤µ¤¬¤·¤Ę¤¤¤Ž¤¹¤«"
-#: ../standalone/rpmdrake_.c:269
-msgid "What are looking for"
+#: ../../standalone/rpmdrake_.c:269
+msgid "What are looking for?"
msgstr "¤Ź¤Ė¤ņ¤µ¤¬¤·¤Ę¤¤¤Ž¤¹¤«"
-#: ../standalone/rpmdrake_.c:289
+#: ../../standalone/rpmdrake_.c:289
msgid "Give a name (eg: `extra', `commercial')"
msgstr "Ģ¾Į°¤ņĘžĪĻ¤·¤Ę¤Æ¤Ą¤µ¤¤”ŹĪ攧”Ö„Ø„­„¹„Č„é”×”Ö¾¦ĶŃ”×”Ė"
-#: ../standalone/rpmdrake_.c:291
+#: ../../standalone/rpmdrake_.c:291
msgid "Directory"
msgstr "„Ē„£„ģ„Æ„Č„ź"
-#: ../standalone/rpmdrake_.c:294
+#: ../../standalone/rpmdrake_.c:294
msgid "No cdrom available (nothing in /mnt/cdrom)"
msgstr "CDROM¤¬ø«¤Ä¤«¤ź¤Ž¤»¤ó”Ź/mnt/cdrom¤Ė¤Ź¤Ė¤ā¤¢¤ź¤Ž¤»¤ó”Ė"
-#: ../standalone/rpmdrake_.c:298
+#: ../../standalone/rpmdrake_.c:298
msgid "URL of the directory containing the RPMs"
msgstr "RPM„Ń„Ć„±”¼„ø¤Ī¤¢¤ė„Ē„£„ģ„Æ„Č„ź¤ĪURL"
-#: ../standalone/rpmdrake_.c:299
+#: ../../standalone/rpmdrake_.c:299
msgid ""
"For FTP and HTTP, you need to give the location for hdlist\n"
"It must be relative to the URL above"
@@ -3926,38 +4860,272 @@ msgstr ""
"FTP ¤Č HTTP¤Ė¤Ä¤¤¤Ę¤Ļ”¢hdlist¤Ī°ĢĆÖ¤ņ»ŲÄź¤·¤Ź¤Æ¤Ę¤Ļ¤Ź¤ź¤Ž¤»¤ó”£\n"
"¾å¤ĪURL¤Č¤ĪĮźĀŠ°ĢĆÖ¤Ē»ŲÄź¤·¤Ž¤¹"
-#: ../standalone/rpmdrake_.c:302
+#: ../../standalone/rpmdrake_.c:302
msgid "Please submit the following information"
msgstr "°Ź²¼¤Ī¾šŹó¤ņĘžĪĻ¤·¤Ę¤Æ¤Ą¤µ¤¤"
-#: ../standalone/rpmdrake_.c:304
+#: ../../standalone/rpmdrake_.c:304
#, c-format
msgid "%s is already in use"
msgstr "%s ¤Ļ¤¹¤Ē¤Ė»Č¤ļ¤ģ¤Ę¤¤¤Ž¤¹"
-#: ../standalone/rpmdrake_.c:315 ../standalone/rpmdrake_.c:321
-#: ../standalone/rpmdrake_.c:329
+#: ../../standalone/rpmdrake_.c:315 ../../standalone/rpmdrake_.c:321
+#: ../../standalone/rpmdrake_.c:329
msgid "Updating the RPMs base"
msgstr "RPM¤Ī„Ł”¼„¹¤ņ¹¹æ·Ćę"
-#: ../standalone/rpmdrake_.c:328
+#: ../../standalone/rpmdrake_.c:328
#, c-format
msgid "Going to remove entry %s"
msgstr "„Ø„ó„Č„ź %s ¤ņ¾Ć¤·¤Ž¤¹"
-#: ../standalone/rpmdrake_.c:360
+#: ../../standalone/rpmdrake_.c:360
msgid "Finding leaves"
msgstr "„Ä„ź”¼¤Ī¾ÜŗŁ¤ņø”ŗ÷Ćę"
-#: ../standalone/rpmdrake_.c:360
+#: ../../standalone/rpmdrake_.c:360
msgid "Finding leaves takes some time"
msgstr "„Ä„ź”¼¤Ī¾ÜŗŁ¤ņø«¤Ä¤±¤ė¤Ī¤Ļ»ž“Ö¤¬¤«¤«¤ź¤Ž¤¹"
-#~ msgid "Polish"
-#~ msgstr "„Ż”¼„é„ó„É"
+#~ msgid "useless"
+#~ msgstr "ĢµĶŃ"
+
+#~ msgid "garbage"
+#~ 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 "Recommended"
+#~ msgstr "æ侩"
+
+#~ 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\"."
+#~ msgstr ""
+#~ "¤³¤ó¤ŹŹżæĖ¤ņĢÜ°Ā¤ĖĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤:\n"
+#~ "\n"
+#~ " - æ侩: Linux¤Ī„¤„ó„¹„Č”¼„ė¤¬½é¤į¤Ę¤Ź¤é¤³¤ģ”£\n"
+#~ "\n"
+#~ "\n"
+#~ " - „«„¹„æ„ąĮŖĀņ: Linux¤Ė¾Ü¤·¤±¤ģ¤Š”¢„·„¹„Ę„ą¤Ī»Č¤¤Źż¤Ė±ž¤ø¤Ę”Ö„Ī”¼„Ž„ė”×\n"
+#~ "”Ö³«ČÆĶŃ”×”Ö„µ”¼„Š”פĪĆ꤫¤éĮŖ¤Ó¤Ž¤·¤ē¤¦”£¤Õ¤Ä¤¦¤Ī„·„¹„Ę„ą¤Ė¤·¤æ¤±¤ģ¤Š”¢\n"
+#~ "\"„Ī”¼„Ž„ė\"¤¬¤¤¤¤¤Ē¤·¤ē¤¦”£¼ē¤Ė„½„Õ„Č³«ČƤņ¤¹¤ė¤Ä¤ā¤ź¤Ź¤é”¢\"³«ČÆĶŃ\"¤ņ\n"
+#~ "ĮŖ¤Ó¤Ž¤¹”£¤¢¤ė¤¤¤Ļ”¢ČĘĶŃ„µ”¼„Š”Ź„į”¼„ėĶŃ”¢°õŗžĶѤŹ¤É¤Ź¤É”Ė¤Č¤·¤Ę»Č¤¦¤Ź¤é\n"
+#~ "\"„µ”¼„Š\"¤¬¤Ŗ¤¹¤¹¤į¤Ē¤¹”£\n"
+#~ "\n"
+#~ "\n"
+#~ " - „Ø„­„¹„Ń”¼„Č”§Expert: GNU/Linux „Š„ź„Š„ź¤Ē”¢ŗŁ¤«¤¤„«„¹„æ„Ž„¤„ŗ¤ņ¤·¤æ\n"
+#~ "¤±¤ģ¤Š”¢¤³¤Ī„¤„ó„¹„Č”¼„ė¤ņĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤”£¤³¤Ī¤Č¤­”¢„·„¹„Ę„ą¤Ī»ČÅÓ¤Ļ\n"
+#~ "\"„«„¹„æ„Ž„¤„ŗ\"¤Ė¤Ź¤ź¤Ž¤¹”£"
+
+#~ msgid "Help"
+#~ msgstr "„Ų„ė„×"
+
+#~ msgid "Downloading cryptographic packages"
+#~ msgstr "°Å¹ę“ŲĻ¢¤Ī„Ń„Ć„±”¼„ø¤ņ„Ą„¦„ó„ķ”¼„ÉĆę"
+
+#~ msgid "Setup SCSI"
+#~ msgstr "SCSI ¤ĪĄßÄź"
+
+#~ msgid "Installation CD Nr %s"
+#~ msgstr "„¤„ó„¹„Č„ģ”¼„·„ē„ó CD Nr %s"
+
+#~ msgid "Which language do you want?"
+#~ msgstr "¤É¤ĪøĄøģ¤ņ»Č¤¤¤Ž¤¹¤«”©"
+
+#~ msgid "Which usage do you want?"
+#~ msgstr "¤É¤Ī»ČĶŃĖ”¤ņĮŖ¤Ó¤Ž¤¹¤«”©"
+
+#~ msgid "Which packages do you want to install"
+#~ msgstr "¤É¤Ī„Ń„Ć„±”¼„ø¤ņ„¤„ó„¹„Č”¼„ė¤·¤Ž¤¹¤«"
+
+#~ msgid "What usage do you want?"
+#~ msgstr "¤É¤Ī»ČĶŃĖ”¤ņĮŖ¤Ó¤Ž¤¹¤«”©"
+
+#~ msgid "Choose install or upgrade"
+#~ msgstr "Ę³Ęž/³ČÄ„¤ĪĮŖĀņ"
+
+#~ msgid "A entry %s already exists"
+#~ msgstr "„Ø„ó„Č„ź %s ¤Ļ¤¹¤Ē¤ĖĀøŗߤ·¤Ž¤¹"
+
+#~ msgid ""
+#~ "Enter a floppy to create an HTP enabled boot\n"
+#~ "(all data on floppy will be lost)"
+#~ 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 "„Ń„é„į”¼„æ¤ņŹŃ¤Ø¤Ę„¤„ó„¹„Č”¼„ė¤ņ¤ä¤ź¤Ź¤Ŗ¤·¤Ę¤Æ¤Ą¤µ¤¤”£"
+
+#~ msgid ""
+#~ "Failed to create an HTP boot floppy.\n"
+#~ "You may have to restart installation and give ``%s'' at the prompt"
+#~ msgstr ""
+#~ "HTP „Ö”¼„Č„Õ„ķ„Ć„Ō”¼¤¬¤Ä¤Æ¤ģ¤Ž¤»¤ó¤Ē¤·¤æ”£\n"
+#~ "„¤„ó„¹„Č”¼„ė¤ņ¤ä¤ź¤Ź¤Ŗ¤·¤Ę”¢„ׄķ„ó„ׄȤĒ``%s''¤ČĘžĪĻ¤·¤Ę¤ß¤Ę¤Æ¤Ą¤µ¤¤”£"
+
+#~ msgid "User name:"
+#~ msgstr "„ę”¼„¶Ģ¾:"
+
+#~ msgid "Password:"
+#~ msgstr "„Ń„¹„ļ”¼„É:"
+
+#~ msgid "Local Printer Options"
+#~ msgstr "„ķ”¼„«„ė„ׄź„ó„æ¤Ī„Ŗ„ׄ·„ē„ó"
+
+#~ msgid "server"
+#~ msgstr "„µ”¼„Š"
+
+#~ msgid "expert"
+#~ msgstr "„Ø„­„¹„Ń”¼„Č"
+
+#~ msgid "developer"
+#~ msgstr "³«ČƼŌ"
+
+#~ msgid "beginner"
+#~ msgstr "½é擼Ō"
+
+#~ msgid "Linear (needed for some SCSI drives)"
+#~ msgstr "„ź„Ė„¢ (SCSI „Ʉ鄤„Ö¤Ī°ģÉō¤ĒɬĶ×)"
-#~ msgid "Going to install %d MB. You can choose to install more programs"
-#~ msgstr "%d MB ¤ņ„¤„ó„¹„Č”¼„ė¤·¤Ž¤¹”£¤Ū¤«¤Ī„ׄķ„°„é„ą¤ņ„¤„ó„¹„Č”¼„ė½ŠĶ褎¤¹"
+#~ msgid "linear"
+#~ msgstr "„ź„Ė„¢"
+
+#~ msgid "After %s partition %s,"
+#~ msgstr "%s „Ń”¼„Ę„£„·„ē„󤫤é %s,"
+
+#~ msgid "changing type of"
+#~ msgstr "„愤„פĪŹŃ¹¹"
+
+#~ msgid "formatting"
+#~ msgstr "„Õ„©”¼„Ž„Ć„ČĆę"
+
+#~ msgid "resizing"
+#~ msgstr "„ź„µ„¤„ŗĆę"
+
+#~ msgid "Size: %s MB"
+#~ msgstr "„µ„¤„ŗ: %s MB"
+
+#~ msgid "Bad kickstart file %s (failed %s)"
+#~ msgstr "ÉŌĄµ¤Ź„­„Ć„Æ„¹„攼„Č„Õ„”„¤„ė %s (%s ¼ŗĒŌ)"
#~ msgid "Too many packages chosen: %dMB doesn't fit in %dMB"
#~ msgstr "ĮŖ¤ó¤Ą„Ń„Ć„±”¼„ø¤¬Ā椹¤®¤Ž¤¹”£%dMB ¤¢¤ė¤Ī¤Ē %dMB ¤Ė¤Ŗ¤µ¤Ž¤ź¤Ž¤»¤ó”£"
+
+#~ msgid "Going to install %d MB. You can choose to install more programs"
+#~ msgstr "%d MB ¤ņ„¤„ó„¹„Č”¼„ė¤·¤Ž¤¹”£¤Ū¤«¤Ī„ׄķ„°„é„ą¤ņ„¤„ó„¹„Č”¼„ė½ŠĶ褎¤¹"
+
+#~ msgid "Installation CD Nr 1"
+#~ msgstr "„¤„ó„¹„Č„ģ”¼„·„ē„ó CD Nr 1"
+
+#~ msgid "Dialup with modem"
+#~ msgstr "„ā„Ē„ą¤Ē„Ą„¤„¢„ė„¢„Ć„×"
+
+#~ msgid "Local LAN"
+#~ msgstr "„ķ”¼„«„ė LAN"
diff --git a/perl-install/share/po/lt.po b/perl-install/share/po/lt.po
index 10f58d071..ffe998f78 100644
--- a/perl-install/share/po/lt.po
+++ b/perl-install/share/po/lt.po
@@ -1,52 +1,56 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 1999 Free Software Foundation, Inc.
-# Kęstutis Kružikas <DrKestas@takas.lt>, 1999.
-# MykolasNorvaisas@cinotes.impro.mii.lt, 1999.
+# Kęstutis Kružikas <DrKestas@takas.lt>, 1999
+# MykolasNorvaisas@cinotes.impro.mii.lt, 1999-2000
#
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2000-01-09 21:03+0100\n"
+"POT-Creation-Date: 2000-05-11 22:37+0200\n"
"PO-Revision-Date: 1999-11-02 20:54+0100\n"
-"Last-Translator: MykolasNorvaisas@cinotes.impro.mii.lt\n"
+"Last-Translator: Kęstutis Kružikas <DrKestas@takas.lt>\n"
"Language-Team: Lithuanian <lt@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-13\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../Xconfigurator.pm_.c:159
+#: ../../Xconfigurator.pm_.c:116 ../../Xconfigurator.pm_.c:228
+msgid "Generic"
+msgstr "Paprasta"
+
+#: ../../Xconfigurator.pm_.c:165
msgid "Graphic card"
msgstr "Video plokštė"
-#: ../Xconfigurator.pm_.c:159
+#: ../../Xconfigurator.pm_.c:165
msgid "Select a graphic card"
msgstr "Pasirinkite vaizdo plokštę"
-#: ../Xconfigurator.pm_.c:160
+#: ../../Xconfigurator.pm_.c:166
msgid "Choose a X server"
msgstr "Pasirinkite X serverį"
-#: ../Xconfigurator.pm_.c:160
+#: ../../Xconfigurator.pm_.c:166
msgid "X server"
msgstr "X serveris"
-#: ../Xconfigurator.pm_.c:181
+#: ../../Xconfigurator.pm_.c:190
msgid "Select the memory size of your graphic card"
msgstr "Pasirinkite savo vaizdo plokštės atminties dydį"
-#: ../Xconfigurator.pm_.c:203
+#: ../../Xconfigurator.pm_.c:217
msgid "Choose options for server"
msgstr "Pasirinkite serverio nustatymus"
-#: ../Xconfigurator.pm_.c:221
+#: ../../Xconfigurator.pm_.c:228
msgid "Choose a monitor"
msgstr "Pasirinkite monitorių"
-#: ../Xconfigurator.pm_.c:221
+#: ../../Xconfigurator.pm_.c:228
msgid "Monitor"
msgstr "Monitorius"
-#: ../Xconfigurator.pm_.c:224
+#: ../../Xconfigurator.pm_.c:231
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -62,72 +66,72 @@ msgstr ""
"Du svarbiausi dydžiai yra vertikalaus atnaujinimo dažnis\n"
"ir horizontaliosios skleistinės dažnis.\n"
"\n"
-"Labai svarbu, kad nebandytumėte nustatyti skleistinės dažnnio didesnio\n"
+"Labai svarbu, kad nebandytumėte nustatyti skleistinės dažnio didesnio\n"
"negu monitorius gali įvykdyti, nes galite jį sugadinti. Jeigu abejojate\n"
"pasirinkite bendrus nustatymus."
-#: ../Xconfigurator.pm_.c:231
+#: ../../Xconfigurator.pm_.c:238
msgid "Horizontal refresh rate"
msgstr "Horizontalaus atnaujinimo dažnis"
-#: ../Xconfigurator.pm_.c:231
+#: ../../Xconfigurator.pm_.c:238
msgid "Vertical refresh rate"
msgstr "Vertikalaus atnaujinimo dažnis"
-#: ../Xconfigurator.pm_.c:272
+#: ../../Xconfigurator.pm_.c:277
msgid "Monitor not configured"
msgstr "Monitorius nenurodytas"
-#: ../Xconfigurator.pm_.c:275
+#: ../../Xconfigurator.pm_.c:280
msgid "Graphic card not configured yet"
msgstr "Vaizdo plokštė dar nenurodyta"
-#: ../Xconfigurator.pm_.c:278
+#: ../../Xconfigurator.pm_.c:283
msgid "Resolutions not chosen yet"
msgstr "Dar nepasirinkta skiriamoji geba"
-#: ../Xconfigurator.pm_.c:289
+#: ../../Xconfigurator.pm_.c:296
msgid "Do you want to test the configuration?"
-msgstr "Ar Jūs norite išbandyti savo konfiguraciją"
+msgstr "Ar Jūs norite išbandyti savo nustatymus"
-#: ../Xconfigurator.pm_.c:293
+#: ../../Xconfigurator.pm_.c:300
msgid "Warning: testing is dangerous on this graphic card"
msgstr "Perspėjimas: su šia korta bandyti pavojinga"
-#: ../Xconfigurator.pm_.c:296
-msgid "Test configuration"
-msgstr "Patikrinti konfiguraciją"
-
-#: ../Xconfigurator.pm_.c:334
-msgid "An error occurred:"
-msgstr "Įvyko klaida:"
+#: ../../Xconfigurator.pm_.c:303
+msgid "Test of the configuration"
+msgstr "Patikrinti nustatymus"
-#: ../Xconfigurator.pm_.c:336
+#: ../../Xconfigurator.pm_.c:342
msgid ""
"\n"
-"try changing some parameters"
+"try to change some parameters"
msgstr ""
"\n"
"pabandykite pakeisti kai kuriuos nustatymus"
-#: ../Xconfigurator.pm_.c:358
+#: ../../Xconfigurator.pm_.c:342
+msgid "An error has occurred:"
+msgstr "Įvyko klaida:"
+
+#: ../../Xconfigurator.pm_.c:365
#, c-format
-msgid "(leaving in %d seconds)"
-msgstr "(baigiame per %d sekundžių (-es))"
+msgid "Leaving in %d seconds"
+msgstr "Baigiame per %d sekundžių (-es)"
-#: ../Xconfigurator.pm_.c:362 ../my_gtk.pm_.c:425
-msgid "Is this correct?"
-msgstr "Ar taip gerai?"
+#: ../../Xconfigurator.pm_.c:369
+msgid "Is this the correct setting?"
+msgstr "Ar toks nustatymas Jus tenkina?"
-#: ../Xconfigurator.pm_.c:370
-msgid "An error occurred, try changing some parameters"
+#: ../../Xconfigurator.pm_.c:377
+msgid "An error has occurred, try to change some parameters"
msgstr "Įvyko klaida, pabandykite pakeisti kai kuriuos nustatymus"
-#: ../Xconfigurator.pm_.c:378 ../Xconfigurator.pm_.c:547
+#: ../../Xconfigurator.pm_.c:385 ../../Xconfigurator.pm_.c:558
msgid "Automatic resolutions"
-msgstr "Automatinės skiriamosios gebos"
+msgstr "Automatinė skiriamoji geba"
-#: ../Xconfigurator.pm_.c:379
+#: ../../Xconfigurator.pm_.c:386
msgid ""
"To find the available resolutions I will try different ones.\n"
"Your screen will blink...\n"
@@ -137,23 +141,33 @@ msgstr ""
"Jūsų ekranas mirgės...\n"
"Jeigu norite, galite jį išjungti, Jūs išgirsite pyptelėjimą, kai bus baigta"
-#: ../Xconfigurator.pm_.c:434 ../printerdrake.pm_.c:208
+#: ../../Xconfigurator.pm_.c:441 ../../printerdrake.pm_.c:167
msgid "Resolution"
msgstr "Skiriamoji geba"
-#: ../Xconfigurator.pm_.c:469
-msgid "Choose resolution and color depth"
+#: ../../Xconfigurator.pm_.c:476
+msgid "Choose the resolution and the color depth"
msgstr "Pasirinkite skiriamąją gebą ir spalvų skaičių"
-#: ../Xconfigurator.pm_.c:477
+#: ../../Xconfigurator.pm_.c:478
+#, c-format
+msgid "Graphic card: %s"
+msgstr "Video plokštė: %s"
+
+#: ../../Xconfigurator.pm_.c:479
+#, c-format
+msgid "XFree86 server: %s"
+msgstr "XFree86 serveris: %s"
+
+#: ../../Xconfigurator.pm_.c:488
msgid "Show all"
msgstr "Rodyti viską"
-#: ../Xconfigurator.pm_.c:501
+#: ../../Xconfigurator.pm_.c:512
msgid "Resolutions"
msgstr "Skiriamosios gebos"
-#: ../Xconfigurator.pm_.c:548
+#: ../../Xconfigurator.pm_.c:559
msgid ""
"I can try to find the available resolutions (eg: 800x600).\n"
"Sometimes, though, it may hang the machine.\n"
@@ -163,7 +177,7 @@ msgstr ""
"Bet kompiuteris gali \"pakibti\"\n"
"Ar Jūs norite pabandyti?"
-#: ../Xconfigurator.pm_.c:553
+#: ../../Xconfigurator.pm_.c:564
msgid ""
"No valid modes found\n"
"Try with another video card or monitor"
@@ -172,109 +186,109 @@ msgstr ""
"Pabandykite kitą video plokštę arba monitorių"
# c-format
-#: ../Xconfigurator.pm_.c:772
+#: ../../Xconfigurator.pm_.c:904
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Klaviatūros išdėstymas: %s\n"
-#: ../Xconfigurator.pm_.c:773
+#: ../../Xconfigurator.pm_.c:905
#, c-format
msgid "Mouse type: %s\n"
-msgstr "Pelės tipas: %s\n"
+msgstr "Pelės rūšis: %s\n"
-#: ../Xconfigurator.pm_.c:774
+#: ../../Xconfigurator.pm_.c:906
#, c-format
msgid "Mouse device: %s\n"
msgstr "Pelės įrenginys: %s\n"
-#: ../Xconfigurator.pm_.c:775
+#: ../../Xconfigurator.pm_.c:907
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitorius: %s\n"
-#: ../Xconfigurator.pm_.c:776
+#: ../../Xconfigurator.pm_.c:908
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Monitoriaus Horiz. skleistinė: %s\n"
-#: ../Xconfigurator.pm_.c:777
+#: ../../Xconfigurator.pm_.c:909
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Monitoriaus Vert. skleistinė: %s\n"
-#: ../Xconfigurator.pm_.c:778
+#: ../../Xconfigurator.pm_.c:910
#, c-format
msgid "Graphic card: %s\n"
msgstr "Video plokštė: %s\n"
-#: ../Xconfigurator.pm_.c:779
+#: ../../Xconfigurator.pm_.c:911
#, c-format
msgid "Graphic memory: %s kB\n"
msgstr "Video atmintis: %s kB\n"
-#: ../Xconfigurator.pm_.c:780
+#: ../../Xconfigurator.pm_.c:912
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 serveris: %s\n"
-#: ../Xconfigurator.pm_.c:794
+#: ../../Xconfigurator.pm_.c:927
msgid "Preparing X-Window configuration"
msgstr "Ruošiami X-Window nustatymai"
-#: ../Xconfigurator.pm_.c:808
+#: ../../Xconfigurator.pm_.c:941
msgid "Change Monitor"
msgstr "Pakeisti monitorių"
-#: ../Xconfigurator.pm_.c:809
+#: ../../Xconfigurator.pm_.c:942
msgid "Change Graphic card"
msgstr "Pakeisti video plokštę"
-#: ../Xconfigurator.pm_.c:810
+#: ../../Xconfigurator.pm_.c:943
msgid "Change Server options"
msgstr "Pakeisti serverio nustatymus"
-#: ../Xconfigurator.pm_.c:811
+#: ../../Xconfigurator.pm_.c:944
msgid "Change Resolution"
msgstr "Pakeisti skiriamąją gebą"
-#: ../Xconfigurator.pm_.c:812
+#: ../../Xconfigurator.pm_.c:945
msgid "Automatical resolutions search"
msgstr "Automatinė skiriamosios gebos paieška"
-#: ../Xconfigurator.pm_.c:816
+#: ../../Xconfigurator.pm_.c:949
msgid "Show information"
msgstr "Rodyti informaciją"
-#: ../Xconfigurator.pm_.c:817
+#: ../../Xconfigurator.pm_.c:950
msgid "Test again"
msgstr "Patikrinti vėl"
-#: ../Xconfigurator.pm_.c:818 ../standalone/rpmdrake_.c:46
+#: ../../Xconfigurator.pm_.c:951 ../../standalone/rpmdrake_.c:46
msgid "Quit"
msgstr "Išeiti"
-#: ../Xconfigurator.pm_.c:822
+#: ../../Xconfigurator.pm_.c:955 ../../standalone/drakboot_.c:36
msgid "What do you want to do?"
msgstr "Ką Jūs norite pakeisti"
-#: ../Xconfigurator.pm_.c:829
+#: ../../Xconfigurator.pm_.c:962
msgid "Forget the changes?"
msgstr "Ar pamiršti pakeitimus?"
-#: ../Xconfigurator.pm_.c:845
+#: ../../Xconfigurator.pm_.c:980
#, c-format
msgid "Please relog into %s to activate the changes"
-msgstr "Pra6au perleisti %s kad pakeitimai būtų iųsaugoti"
+msgstr "Prašau perleisti %s kad pakeitimai būtų išsaugoti"
-#: ../Xconfigurator.pm_.c:861
+#: ../../Xconfigurator.pm_.c:996
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Prašau atsisveikinti ir paskui paspausti Ctrl-Alt-BackSpace"
-#: ../Xconfigurator.pm_.c:864
+#: ../../Xconfigurator.pm_.c:999
msgid "X at startup"
msgstr "X aut. paleidimas"
-#: ../Xconfigurator.pm_.c:865
+#: ../../Xconfigurator.pm_.c:1000
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
@@ -282,707 +296,1068 @@ msgstr ""
"Jūs galite nustatyti, kad X startuotų automatiškai.\n"
"Ar Jūs norite, kad X startuotų po kompiuterio perkrovimo?"
-#: ../Xconfigurator_consts.pm_.c:4
+#: ../../Xconfigurator_consts.pm_.c:4
msgid "256 colors (8 bits)"
msgstr "256 spalvos (8 bitai)"
-#: ../Xconfigurator_consts.pm_.c:5
+#: ../../Xconfigurator_consts.pm_.c:5
msgid "32 thousand colors (15 bits)"
msgstr "32 tūkst. spalvų (15 bitų)"
-#: ../Xconfigurator_consts.pm_.c:6
+#: ../../Xconfigurator_consts.pm_.c:6
msgid "65 thousand colors (16 bits)"
msgstr "65 tūkst. spalvų (16 bitų)"
-#: ../Xconfigurator_consts.pm_.c:7
+#: ../../Xconfigurator_consts.pm_.c:7
msgid "16 million colors (24 bits)"
msgstr "16 milijonai spalvų (24 bitai)"
-#: ../Xconfigurator_consts.pm_.c:8
+#: ../../Xconfigurator_consts.pm_.c:8
msgid "4 billion colors (32 bits)"
msgstr "4 milijardai spalvų (32 bitai)"
-#: ../Xconfigurator_consts.pm_.c:96
+#: ../../Xconfigurator_consts.pm_.c:103
msgid "256 kB"
msgstr "256 kB"
-#: ../Xconfigurator_consts.pm_.c:97
+#: ../../Xconfigurator_consts.pm_.c:104
msgid "512 kB"
msgstr "512 kB"
-#: ../Xconfigurator_consts.pm_.c:98
+#: ../../Xconfigurator_consts.pm_.c:105
msgid "1 MB"
msgstr "1 MB"
-#: ../Xconfigurator_consts.pm_.c:99
+#: ../../Xconfigurator_consts.pm_.c:106
msgid "2 MB"
msgstr "2 MB"
-#: ../Xconfigurator_consts.pm_.c:100
+#: ../../Xconfigurator_consts.pm_.c:107
msgid "4 MB"
msgstr "4 MB"
-#: ../Xconfigurator_consts.pm_.c:101
+#: ../../Xconfigurator_consts.pm_.c:108
msgid "8 MB"
msgstr "8 MB"
-#: ../Xconfigurator_consts.pm_.c:102
+#: ../../Xconfigurator_consts.pm_.c:109
msgid "16 MB or more"
msgstr "16 MB ar daugiau"
-#: ../Xconfigurator_consts.pm_.c:107 ../Xconfigurator_consts.pm_.c:108
+#: ../../Xconfigurator_consts.pm_.c:114 ../../Xconfigurator_consts.pm_.c:115
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr "Standartinis VGA 640x480 prie 60 Hz"
-#: ../Xconfigurator_consts.pm_.c:109
+#: ../../Xconfigurator_consts.pm_.c:116
msgid "Super VGA, 800x600 at 56 Hz"
msgstr "Super VGA 800x600 prie 56 Hz"
-#: ../Xconfigurator_consts.pm_.c:110
+#: ../../Xconfigurator_consts.pm_.c:117
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
msgstr "8514 suderinamas, 1024x768 prie 87 Hz kryžminis (nėra 800x600)"
-#: ../Xconfigurator_consts.pm_.c:111
+#: ../../Xconfigurator_consts.pm_.c:118
msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
msgstr "Super VGA, 1024x768 prie 87 Hz kryžminis, 800x600 prie 56 Hz"
-#: ../Xconfigurator_consts.pm_.c:112
+#: ../../Xconfigurator_consts.pm_.c:119
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:113
+#: ../../Xconfigurator_consts.pm_.c:120
msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
msgstr "Nekryžminis SVGA, 1024x768 prie 60 Hz, 800x600 prie 72 Hz"
-#: ../Xconfigurator_consts.pm_.c:114
+#: ../../Xconfigurator_consts.pm_.c:121
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
msgstr "Aukšto dažnio SVGA, 1024x768 prie 70 Hz"
-#: ../Xconfigurator_consts.pm_.c:115
+#: ../../Xconfigurator_consts.pm_.c:122
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
msgstr "Daugiadažnis, galintis 1280x1024 prie 60 Hz"
-#: ../Xconfigurator_consts.pm_.c:116
+#: ../../Xconfigurator_consts.pm_.c:123
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
msgstr "Daugiadažnis, galintis 1280x1024 prie 74 Hz"
-#: ../Xconfigurator_consts.pm_.c:117
+#: ../../Xconfigurator_consts.pm_.c:124
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
msgstr "Daugiadažnis, galintis 1280 prie 76 Hz"
-#: ../Xconfigurator_consts.pm_.c:118
+#: ../../Xconfigurator_consts.pm_.c:125
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "Monitorius, galintis 1600x1200 prie 70 Hz"
-#: ../Xconfigurator_consts.pm_.c:119
+#: ../../Xconfigurator_consts.pm_.c:126
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "Monitorius, galintis 1600x1200 prie 76 Hz"
-#: ../diskdrake.pm_.c:16 ../diskdrake.pm_.c:370
+#: ../../any.pm_.c:17
+msgid "curly"
+msgstr "curly"
+
+#: ../../any.pm_.c:17
+msgid "default"
+msgstr "Pagrindinis"
+
+#. -PO: names (tie, curly...) have corresponding icons for kdm
+#: ../../any.pm_.c:17
+msgid "tie"
+msgstr "tie"
+
+#: ../../any.pm_.c:18
+msgid "brunette"
+msgstr "brunetė"
+
+#: ../../any.pm_.c:18
+msgid "girl"
+msgstr "mergina"
+
+#: ../../any.pm_.c:18
+msgid "woman-blond"
+msgstr "blondinė"
+
+#: ../../any.pm_.c:19
+msgid "automagic"
+msgstr "Automagic"
+
+#: ../../any.pm_.c:60
+msgid "First sector of boot partition"
+msgstr "Pirmasis startavimo srities sektorius"
+
+#: ../../any.pm_.c:60
+msgid "First sector of drive (MBR)"
+msgstr "Pirmasis kaupiklio sektorius (MBR)"
+
+#: ../../any.pm_.c:65
+msgid "LILO/grub Installation"
+msgstr "LILO/grub Įdiegimas"
+
+#: ../../any.pm_.c:66
+msgid "Where do you want to install the bootloader?"
+msgstr "Kur norite įdiegti startavimo programą"
+
+#: ../../any.pm_.c:73
+msgid "None"
+msgstr "Nieko"
+
+#: ../../any.pm_.c:73
+msgid "Which bootloader(s) do you want to use?"
+msgstr "Kokią įkrovos tvarkyklę (-es) Jūs norėtumėte naudoti?"
+
+#: ../../any.pm_.c:84
+msgid "Boot device"
+msgstr "Pakrovimo įrenginys"
+
+#: ../../any.pm_.c:85
+msgid "LBA (doesn't work on old BIOSes)"
+msgstr "LBA (nedirba su senu BIOSu)"
+
+#: ../../any.pm_.c:86
+msgid "Compact"
+msgstr "Kompaktiškas"
+
+#: ../../any.pm_.c:86
+msgid "compact"
+msgstr "kompaktiškas"
+
+#: ../../any.pm_.c:87 ../../install_steps_interactive.pm_.c:809
+msgid "Delay before booting default image"
+msgstr "Palaukti prieš pakraunant atvaizdą pagal nutylėjimą"
+
+#: ../../any.pm_.c:88
+msgid "Video mode"
+msgstr "Video režimas"
+
+#: ../../any.pm_.c:90 ../../install_steps_interactive.pm_.c:531
+#: ../../install_steps_interactive.pm_.c:654
+#: ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_interactive.pm_.c:811 ../../printerdrake.pm_.c:85
+#: ../../printerdrake.pm_.c:110 ../../standalone/adduserdrake_.c:42
+msgid "Password"
+msgstr "Slaptažodis"
+
+#: ../../any.pm_.c:91 ../../install_steps_interactive.pm_.c:655
+#: ../../install_steps_interactive.pm_.c:706
+#: ../../install_steps_interactive.pm_.c:812
+#: ../../standalone/adduserdrake_.c:43
+msgid "Password (again)"
+msgstr "Slaptažodis (vėl)"
+
+#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+msgid "Restrict command line options"
+msgstr "Griežtos komandinės eilutės nustatymai"
+
+#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+msgid "restrict"
+msgstr "griežtas"
+
+#: ../../any.pm_.c:98
+msgid "Bootloader main options"
+msgstr "Bendri Įkrovos tvarkyklės nustatymai"
+
+#: ../../any.pm_.c:101 ../../install_steps_interactive.pm_.c:820
+msgid ""
+"Option ``Restrict command line options'' is of no use without a password"
+msgstr ""
+"Nustatymas ''Griežtos komandinės eilutės nustatymai'' yra naudojama tik su "
+"slaptažodžiu"
+
+#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:719
+#: ../../install_steps_interactive.pm_.c:821
+#: ../../standalone/adduserdrake_.c:56
+msgid "Please try again"
+msgstr "Prašau bandyti vėl"
+
+#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:719
+#: ../../install_steps_interactive.pm_.c:821
+#: ../../standalone/adduserdrake_.c:56
+msgid "The passwords do not match"
+msgstr "Slaptažodžiai neatitinka"
+
+#: ../../any.pm_.c:112
+msgid ""
+"Here are the different entries.\n"
+"You can add some more or change the existing ones."
+msgstr ""
+"Čia yra skirtingi įrašai.\n"
+"Jūs galite pakeisti esamus arba prijungti naujus."
+
+#: ../../any.pm_.c:114 ../../install_steps_interactive.pm_.c:832
+#: ../../printerdrake.pm_.c:245 ../../standalone/rpmdrake_.c:302
+msgid "Add"
+msgstr "Pridėti"
+
+#: ../../any.pm_.c:114 ../../diskdrake.pm_.c:42
+#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:832 ../../printerdrake.pm_.c:245
+#: ../../standalone/adduserdrake_.c:36
+msgid "Done"
+msgstr "Baigta"
+
+#: ../../any.pm_.c:123
+msgid "Linux"
+msgstr "Linux"
+
+#: ../../any.pm_.c:123
+msgid "Other OS (windows...)"
+msgstr "Kitos OS (windows...)"
+
+#: ../../any.pm_.c:123
+msgid "Which type of entry do you want to add?"
+msgstr "Kokio tipo įrašą jūs norite pridėti"
+
+#: ../../any.pm_.c:142 ../../install_steps_interactive.pm_.c:857
+msgid "Image"
+msgstr "Atvaizdas"
+
+#: ../../any.pm_.c:143 ../../any.pm_.c:151
+#: ../../install_steps_interactive.pm_.c:859
+msgid "Root"
+msgstr "Šakninis"
+
+#: ../../any.pm_.c:144 ../../install_steps_interactive.pm_.c:860
+msgid "Append"
+msgstr "Pridėti"
+
+#: ../../any.pm_.c:145 ../../install_steps_interactive.pm_.c:861
+msgid "Initrd"
+msgstr "Initrd"
+
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:862
+msgid "Read-write"
+msgstr "Skaitymui-Rašymui"
+
+#: ../../any.pm_.c:152
+msgid "Table"
+msgstr "Lentelė"
+
+#: ../../any.pm_.c:153
+msgid "Unsafe"
+msgstr "Nesaugu"
+
+#: ../../any.pm_.c:158 ../../install_steps_interactive.pm_.c:869
+msgid "Label"
+msgstr "Žymė"
+
+#: ../../any.pm_.c:160 ../../install_steps_interactive.pm_.c:871
+msgid "Default"
+msgstr "Pagal nutylėjimą"
+
+#: ../../any.pm_.c:163 ../../install_steps_gtk.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:652
+#: ../../install_steps_interactive.pm_.c:874 ../../interactive.pm_.c:74
+#: ../../interactive.pm_.c:84 ../../interactive.pm_.c:224
+#: ../../interactive_newt.pm_.c:49 ../../interactive_newt.pm_.c:98
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:200
+#: ../../my_gtk.pm_.c:459 ../../my_gtk.pm_.c:634 ../../printerdrake.pm_.c:272
+msgid "Ok"
+msgstr "Gerai"
+
+#: ../../any.pm_.c:163 ../../install_steps_interactive.pm_.c:874
+msgid "Remove entry"
+msgstr "Išmesti įrašą"
+
+#: ../../any.pm_.c:166 ../../install_steps_interactive.pm_.c:877
+msgid "Empty label not allowed"
+msgstr "Tuščia žymė neledžiama"
+
+#: ../../any.pm_.c:167
+msgid "This label is already used"
+msgstr "Šis žyminys jau naudojamas"
+
+#: ../../diskdrake.pm_.c:18 ../../diskdrake.pm_.c:413
msgid "Create"
msgstr "Sukurti"
-#: ../diskdrake.pm_.c:17
+#: ../../diskdrake.pm_.c:19
msgid "Unmount"
msgstr "Atjungti"
-#: ../diskdrake.pm_.c:18 ../diskdrake.pm_.c:372
+#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:415
msgid "Delete"
msgstr "Ištrinti"
-#: ../diskdrake.pm_.c:18
+#: ../../diskdrake.pm_.c:20
msgid "Format"
-msgstr "Formatuoti"
+msgstr "Sužymėti"
-#: ../diskdrake.pm_.c:18 ../diskdrake.pm_.c:527
+#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:590
msgid "Resize"
msgstr "Pakeisti dydį"
-#: ../diskdrake.pm_.c:18 ../diskdrake.pm_.c:370 ../diskdrake.pm_.c:414
+#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:413
+#: ../../diskdrake.pm_.c:466
msgid "Type"
-msgstr "Tipas"
+msgstr "Rūšis"
-#: ../diskdrake.pm_.c:19 ../diskdrake.pm_.c:430
+#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:485
msgid "Mount point"
msgstr "Prijungimo vieta"
-#: ../diskdrake.pm_.c:33
+#: ../../diskdrake.pm_.c:35
msgid "Write /etc/fstab"
msgstr "Įrašyti /etc/fstab"
-#: ../diskdrake.pm_.c:34
+#: ../../diskdrake.pm_.c:36
msgid "Toggle to expert mode"
msgstr "Pakeisti į eksperto režimą"
-#: ../diskdrake.pm_.c:35
+#: ../../diskdrake.pm_.c:37
msgid "Toggle to normal mode"
msgstr "Pakeisti į normalų režimą"
-#: ../diskdrake.pm_.c:36
+#: ../../diskdrake.pm_.c:38
msgid "Restore from file"
-msgstr "Atstatyti iš failo"
+msgstr "Atstatyti iš bylos"
-#: ../diskdrake.pm_.c:37
+#: ../../diskdrake.pm_.c:39
msgid "Save in file"
-msgstr "Išsaugoti faile"
+msgstr "Išsaugoti į bylą"
-#: ../diskdrake.pm_.c:38
+#: ../../diskdrake.pm_.c:40
msgid "Restore from floppy"
msgstr "Atstatyti iš diskelio"
-#: ../diskdrake.pm_.c:39
+#: ../../diskdrake.pm_.c:41
msgid "Save on floppy"
msgstr "Išsaugoti į diskelį"
-#: ../diskdrake.pm_.c:40 ../install_steps_interactive.pm_.c:618
-#: ../install_steps_interactive.pm_.c:748 ../standalone/adduserdrake_.c:34
-msgid "Done"
-msgstr "Baigta"
-
-#: ../diskdrake.pm_.c:43
+#: ../../diskdrake.pm_.c:45
msgid "Clear all"
msgstr "Išvalyti viską"
-#: ../diskdrake.pm_.c:44
+#: ../../diskdrake.pm_.c:46
msgid "Format all"
-msgstr "Suformatuoti viską"
+msgstr "Sužymėti visus skirsnius"
-#: ../diskdrake.pm_.c:45
+#: ../../diskdrake.pm_.c:47
msgid "Auto allocate"
msgstr "Automatinis nustatymas"
-#: ../diskdrake.pm_.c:48
+#: ../../diskdrake.pm_.c:50
msgid "All primary partitions are used"
-msgstr "Visos pirminės sritys yra naudojamos"
+msgstr "Visos pirminiai skirsniai yra naudojami"
-#: ../diskdrake.pm_.c:48
+#: ../../diskdrake.pm_.c:50
msgid "I can't add any more partition"
-msgstr "Aš negaliu pridėti nė vienos srities"
+msgstr "Aš negaliu pridėti nė vieno skirsnio"
-#: ../diskdrake.pm_.c:48
+#: ../../diskdrake.pm_.c:50
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
-msgstr "Norėdami sukurti papildomą sritį prašom ištrinti bent vieną esamą"
+msgstr "Norėdami sukurti papildomą skirsnį prašom ištrinti bent vieną esamą"
-#: ../diskdrake.pm_.c:51
-#, fuzzy
+#: ../../diskdrake.pm_.c:53
msgid "Rescue partition table"
-msgstr "Įrašyti skričių pasiskirstymo lentelę"
+msgstr "Išgelbėti skirsnių pasiskirstymo lentelę"
-#: ../diskdrake.pm_.c:52
+#: ../../diskdrake.pm_.c:54
msgid "Undo"
msgstr "Atmesti"
-#: ../diskdrake.pm_.c:53
+#: ../../diskdrake.pm_.c:55
msgid "Write partition table"
-msgstr "Įrašyti skričių pasiskirstymo lentelę"
+msgstr "Įrašyti skirsnių pasiskirstymo lentelę"
-#: ../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:56
msgid "Reload"
msgstr "Perkrauti"
-#: ../diskdrake.pm_.c:98
+#: ../../diskdrake.pm_.c:96
+msgid "loopback"
+msgstr ""
+
+#: ../../diskdrake.pm_.c:109
msgid "Empty"
msgstr "Tuščias"
-#: ../diskdrake.pm_.c:98
+#: ../../diskdrake.pm_.c:109
msgid "Ext2"
msgstr "Ext2"
-#: ../diskdrake.pm_.c:98
+#: ../../diskdrake.pm_.c:109
msgid "FAT"
msgstr "FAT"
-#: ../diskdrake.pm_.c:98
+#: ../../diskdrake.pm_.c:109
msgid "Other"
msgstr "Kita"
-#: ../diskdrake.pm_.c:98
+#: ../../diskdrake.pm_.c:109
msgid "Swap"
msgstr "Swap"
-#: ../diskdrake.pm_.c:104
+#: ../../diskdrake.pm_.c:115
msgid "Filesystem types:"
-msgstr "Failų sistemos rūšys:"
+msgstr "Bylų sistemos rūšys:"
-#: ../diskdrake.pm_.c:113
+#: ../../diskdrake.pm_.c:124
msgid "Details"
msgstr "Detalės"
-#: ../diskdrake.pm_.c:127
+#: ../../diskdrake.pm_.c:138
msgid ""
-"You have one big fat partition\n"
-"(generally use by MicroSoft Dos/Windows).\n"
+"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 ""
-"Jūs turite vieną didelį FAT sritį.\n"
-"(dažniausiai naudojama Microsoft Dos/Windows).\n"
-"Patariu jums pakeisti jos dydį\n"
+"Jūs turite vieną didelį FAT skirsnį\n"
+"(dažniausiai naudojamas Micro$oft Dos/Windows).\n"
+"Patariu jums pakeisti jo dydį\n"
"(spragtelėkite ant jo o paskui paspauskite \"Pakeisti dydį\")"
-#: ../diskdrake.pm_.c:132
+#: ../../diskdrake.pm_.c:143
msgid "Please make a backup of your data first"
-msgstr "Pradžiai padarykite jūsų duomeų kopiją"
+msgstr "Pradžiai padarykite atsarginę savo duomenų kopiją"
-#: ../diskdrake.pm_.c:132 ../diskdrake.pm_.c:146 ../diskdrake.pm_.c:458
-#: ../diskdrake.pm_.c:487
+#: ../../diskdrake.pm_.c:143 ../../diskdrake.pm_.c:160
+#: ../../diskdrake.pm_.c:169 ../../diskdrake.pm_.c:517
+#: ../../diskdrake.pm_.c:546
msgid "Read carefully!"
msgstr "Perskaitykite įdėmiai!"
-#: ../diskdrake.pm_.c:146
-#, c-format
-msgid "After %s partition %s,"
-msgstr "Kada %s sritis %s, "
-
-#: ../diskdrake.pm_.c:146
-msgid "all data on this partition will be lost"
-msgstr "visi duomenys šioje srityje bus prarasti"
-
-#: ../diskdrake.pm_.c:165 ../install_any.pm_.c:193 ../install_steps.pm_.c:71
-#: ../install_steps_interactive.pm_.c:37 ../standalone/diskdrake_.c:60
-#: ../standalone/rpmdrake_.c:294 ../standalone/rpmdrake_.c:304
+#: ../../diskdrake.pm_.c:146
+msgid ""
+"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
+"enough)\n"
+"at the beginning of the disk"
+msgstr ""
+"Jeigu Jūs norite naudoti aboot, būkite atsargūs, palikdami tuščią vietą "
+"(2048 sektorių pakankama)\n"
+"kaupiklio pradžioje"
+
+#: ../../diskdrake.pm_.c:160
+msgid "Be careful: this operation is dangerous."
+msgstr "Būkite atsargūs: ši operacija yra pavojinga."
+
+#: ../../diskdrake.pm_.c:197 ../../install_any.pm_.c:330
+#: ../../install_steps.pm_.c:74 ../../install_steps_interactive.pm_.c:40
+#: ../../standalone/diskdrake_.c:60 ../../standalone/rpmdrake_.c:294
+#: ../../standalone/rpmdrake_.c:304
msgid "Error"
msgstr "Klaida"
-#: ../diskdrake.pm_.c:189 ../diskdrake.pm_.c:610
+#: ../../diskdrake.pm_.c:221 ../../diskdrake.pm_.c:680
msgid "Mount point: "
msgstr "Prijungimo vieta:"
-#: ../diskdrake.pm_.c:190 ../diskdrake.pm_.c:228
+#: ../../diskdrake.pm_.c:222 ../../diskdrake.pm_.c:263
msgid "Device: "
msgstr "Įrenginys"
-#: ../diskdrake.pm_.c:191
+#: ../../diskdrake.pm_.c:223
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "DOS kaupiklio raidė: %s (lygtai)\n"
+msgstr "DOS kaupiklio raidė: %s (lyg ir)\n"
-#: ../diskdrake.pm_.c:192 ../diskdrake.pm_.c:231
+#: ../../diskdrake.pm_.c:224 ../../diskdrake.pm_.c:266
msgid "Type: "
-msgstr "Tipas: "
+msgstr "Rūšis: "
-#: ../diskdrake.pm_.c:193
+#: ../../diskdrake.pm_.c:225
#, c-format
msgid "Start: sector %s\n"
msgstr "Pradinis: sektorius %s\n"
-#: ../diskdrake.pm_.c:194
+#: ../../diskdrake.pm_.c:226
#, c-format
-msgid "Size: %s MB"
-msgstr "Dydis: %s MB"
+msgid "Size: %d MB"
+msgstr "Dydis: %d MB"
-#: ../diskdrake.pm_.c:196
+#: ../../diskdrake.pm_.c:228
#, c-format
msgid ", %s sectors"
msgstr ", %s sektoriai (-ių)"
-#: ../diskdrake.pm_.c:198
+#: ../../diskdrake.pm_.c:230
#, c-format
msgid "Cylinder %d to cylinder %d\n"
msgstr "Nuo cilinfro %d iki cilindro %d\n"
-#: ../diskdrake.pm_.c:199
+#: ../../diskdrake.pm_.c:231
msgid "Formatted\n"
-msgstr "Suformatuota\n"
+msgstr "Sužymėta\n"
-#: ../diskdrake.pm_.c:200
+#: ../../diskdrake.pm_.c:232
msgid "Not formatted\n"
-msgstr "Neformatuota\n"
+msgstr "Nesužymėta\n"
-#: ../diskdrake.pm_.c:201
+#: ../../diskdrake.pm_.c:233
msgid "Mounted\n"
msgstr "Prijungta\n"
-#: ../diskdrake.pm_.c:202
+#: ../../diskdrake.pm_.c:234
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../diskdrake.pm_.c:203
+#: ../../diskdrake.pm_.c:235
+#, c-format
+msgid "Loopback file(s): %s\n"
+msgstr ""
+
+#: ../../diskdrake.pm_.c:236
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
msgstr ""
-"Sritis startuojama pagal nutylėjimą\n"
+"Skirsnis, įkraunamas pagal nutylėjimą\n"
" (MS-DOS užkrovimui, ne lilo)\n"
-#: ../diskdrake.pm_.c:205
+#: ../../diskdrake.pm_.c:238
#, c-format
msgid "Level %s\n"
msgstr "Lygis %s\n"
-#: ../diskdrake.pm_.c:206
+#: ../../diskdrake.pm_.c:239
#, c-format
msgid "Chunk size %s\n"
msgstr "Gabalo dydis %s\n"
-#: ../diskdrake.pm_.c:207
+#: ../../diskdrake.pm_.c:240
#, c-format
msgid "RAID-disks %s\n"
-msgstr "RAID-diskai %s\n"
+msgstr "RAID-kaupikliaii %s\n"
-#: ../diskdrake.pm_.c:224
+#: ../../diskdrake.pm_.c:242
+#, c-format
+msgid "Loopback file name: %s"
+msgstr ""
+
+#: ../../diskdrake.pm_.c:259
msgid "Please click on a partition"
-msgstr "Prašau spragtelėti ant srities"
+msgstr "Prašau spragtelėti ant skirsnio"
-#: ../diskdrake.pm_.c:229
+#: ../../diskdrake.pm_.c:264
#, c-format
msgid "Size: %d MB\n"
msgstr "Dydis: %d MB\n"
-#: ../diskdrake.pm_.c:230
+#: ../../diskdrake.pm_.c:265
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrija: %s cilindrų(-ai), %s galvų(-os), %s sektorių(-iai)\n"
-#: ../diskdrake.pm_.c:232
+#: ../../diskdrake.pm_.c:267
+#, c-format
+msgid "Partition table type: %s\n"
+msgstr "Skirnsių lentelės rūšis: %s\n"
+
+#: ../../diskdrake.pm_.c:268
#, c-format
msgid "on bus %d id %d\n"
msgstr "prie magistralės %d id %d\n"
-#: ../diskdrake.pm_.c:245
+#: ../../diskdrake.pm_.c:281
msgid "Mount"
msgstr "Prijungimas"
-#: ../diskdrake.pm_.c:246
+#: ../../diskdrake.pm_.c:282
msgid "Active"
msgstr "Aktyvus"
-#: ../diskdrake.pm_.c:247
+#: ../../diskdrake.pm_.c:283
msgid "Add to RAID"
-msgstr "Pridėti prie RAID"
+msgstr "Prijungti prie RAID"
-#: ../diskdrake.pm_.c:248
+#: ../../diskdrake.pm_.c:284
msgid "Remove from RAID"
-msgstr "Atstatyti iš RAID"
+msgstr "Pašalinti iš RAID"
-#: ../diskdrake.pm_.c:249
+#: ../../diskdrake.pm_.c:285
msgid "Modify RAID"
msgstr "Keisti RAID"
-#: ../diskdrake.pm_.c:256
+#: ../../diskdrake.pm_.c:286
+msgid "Use for loopback"
+msgstr ""
+
+#: ../../diskdrake.pm_.c:293
msgid "Choose action"
-msgstr "Pasirinkite veiksmą"
+msgstr "Pasirinkite operaciją"
-#: ../diskdrake.pm_.c:349
+#: ../../diskdrake.pm_.c:386
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
"Either you use LILO and it won't work, or you don't use LILO and you don't "
"need /boot"
msgstr ""
-"Atsiprašome, bet neįmanoma sukurti /boot taip toli ant kaupiklio (prie "
-"cilindro >1024).\n"
+"Atsiprašome, bet neįmanoma sukurti /boot taip toli kaupiklyje (prie cilindro "
+">1024).\n"
"Arba naudokite LILO ir tai nedirbs arba nenaudokite LILO ir jums nereikės "
"/boot"
-#: ../diskdrake.pm_.c:353
+#: ../../diskdrake.pm_.c:390
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 ""
-"Jūsų pasirinkta pridėti kaip šakninė (/) sritis yra fiziškai už 1024-to\n"
+"Jūsų pasirinkta pridėti kaip pagrindinė (/) sritis yra fiziškai už 1024-to\n"
"disko kaupiklio cilindro ir jūs neturite /boot srities. Jeigu planuojate\n"
"naudoti LILO valdymo programą atsargiai pridėkite /boot sritį"
-#: ../diskdrake.pm_.c:370 ../diskdrake.pm_.c:372
+#: ../../diskdrake.pm_.c:396
+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 if you want to use lilo or grub"
+msgstr ""
+"Jūs pasirinkote programinį RAID skirsnį kaip root (/).\n"
+"Jokia įkrovos tvarkyklė negali su ja dirbti be /boot skirsnio.\n"
+"Taigi, būkite atsargūs, kurdami /boot skirsnį, jeigu norite naudotis lilo ar "
+"grub"
+
+#: ../../diskdrake.pm_.c:413 ../../diskdrake.pm_.c:415
#, c-format
msgid "Use ``%s'' instead"
msgstr "Vietoj to naudokite ``%s''"
-#: ../diskdrake.pm_.c:375
+#: ../../diskdrake.pm_.c:418
msgid "Use ``Unmount'' first"
msgstr "Pirmiau naudokite ``Unmount''"
-#: ../diskdrake.pm_.c:376 ../diskdrake.pm_.c:409
-msgid "changing type of"
-msgstr "keičiamas "
+#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:461
+#, c-format
+msgid ""
+"After changing type of partition %s, all data on this partition will be lost"
+msgstr "Po rūšies pakeitimo skirsnyje %s, visi duomenys jame bus prarasti"
-#: ../diskdrake.pm_.c:388
+#: ../../diskdrake.pm_.c:431
msgid "Continue anyway?"
msgstr "Ar vistiek tęsti ?"
-#: ../diskdrake.pm_.c:393
+#: ../../diskdrake.pm_.c:436
msgid "Quit without saving"
msgstr "Išeiti neišsaugojus"
-#: ../diskdrake.pm_.c:393
+#: ../../diskdrake.pm_.c:436
msgid "Quit without writing the partition table?"
-msgstr "Išeiti neišsaugojus sričių pasiskirstymo lentelės"
+msgstr "Išeiti neišsaugojus sričių pasiskirstymo lentelės?"
-#: ../diskdrake.pm_.c:412
+#: ../../diskdrake.pm_.c:464
msgid "Change partition type"
-msgstr "Pakeisti srities tipą"
+msgstr "Pakeisti skirsnio tipą"
-#: ../diskdrake.pm_.c:413
+#: ../../diskdrake.pm_.c:465
msgid "Which partition type do you want?"
-msgstr "Kokio tipo sritį norite turėti?"
+msgstr "Kokio tipo skirsnį norite turėti?"
-#: ../diskdrake.pm_.c:429
+#: ../../diskdrake.pm_.c:483
+#, c-format
+msgid "Where do you want to mount loopback file %s?"
+msgstr "Kur norite prijungti atjungimo byląį %s?"
+
+#: ../../diskdrake.pm_.c:484
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Kur norite prijungti įrenginį %s?"
-#: ../diskdrake.pm_.c:451
-msgid "formatting"
-msgstr "formatuojama"
+#: ../../diskdrake.pm_.c:489
+msgid ""
+"Can't unset mount point as this partition is used for loop back.\n"
+"Remove the loopback first"
+msgstr ""
-#: ../diskdrake.pm_.c:453
+#: ../../diskdrake.pm_.c:508
+#, c-format
+msgid "After formatting partition %s, all data on this partition will be lost"
+msgstr "Po skirsnio %s sužymėjimo, visi duomenys jame bus prarasti"
+
+#: ../../diskdrake.pm_.c:510
msgid "Formatting"
-msgstr "Formatuojama"
+msgstr "Sužymima"
+
+#: ../../diskdrake.pm_.c:511
+#, c-format
+msgid "Formatting loopback file %s"
+msgstr "Sužymėjima atjungimo byla %s"
-#: ../diskdrake.pm_.c:453 ../install_steps_interactive.pm_.c:221
+#: ../../diskdrake.pm_.c:512 ../../install_steps_interactive.pm_.c:253
#, c-format
msgid "Formatting partition %s"
-msgstr "Formatuojama sritis %s"
+msgstr "Sužymimas skirsnis %s"
-#: ../diskdrake.pm_.c:458
+#: ../../diskdrake.pm_.c:517
msgid "After formatting all partitions,"
-msgstr "Po visų sričių formatavimo,"
+msgstr "Po visų skirsnių sužymėjimo,"
-#: ../diskdrake.pm_.c:458
+#: ../../diskdrake.pm_.c:517
msgid "all data on these partitions will be lost"
-msgstr "visi esantys šiose srityse duomenys bus prarasti"
+msgstr "visi esantys šiuose skirsniuose duomenys bus prarasti"
-#: ../diskdrake.pm_.c:468
+#: ../../diskdrake.pm_.c:527
msgid "Move"
msgstr "Perkelti"
-#: ../diskdrake.pm_.c:469
-msgid "Which disk do you want to move to?"
+#: ../../diskdrake.pm_.c:528
+msgid "Which disk do you want to move it to?"
msgstr "Kurį diską jūs norite perkelti"
-#: ../diskdrake.pm_.c:473
+#: ../../diskdrake.pm_.c:532
msgid "Sector"
msgstr "Sektorius"
-#: ../diskdrake.pm_.c:474
-msgid "Which sector do you want to move to?"
+#: ../../diskdrake.pm_.c:533
+msgid "Which sector do you want to move it to?"
msgstr "Kurį sektorių jūs norite perkelti"
-#: ../diskdrake.pm_.c:477
+#: ../../diskdrake.pm_.c:536
msgid "Moving"
msgstr "Perkeliamas"
-#: ../diskdrake.pm_.c:477
+#: ../../diskdrake.pm_.c:536
msgid "Moving partition..."
-msgstr "Perkeliama sritis..."
+msgstr "Perkeliamas skirsnis..."
-#: ../diskdrake.pm_.c:487
+#: ../../diskdrake.pm_.c:546
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "Disko %s sričių pasiskirstymo lentelė bus išsaugota"
+msgstr "Disko %s skirsnių pasiskirstymo lentelė bus įrašyta!"
-#: ../diskdrake.pm_.c:489
+#: ../../diskdrake.pm_.c:548
msgid "You'll need to reboot before the modification can take place"
msgstr "Jums reikia perstartuoti kad pakeitimai būtų išsaugoti"
-#: ../diskdrake.pm_.c:510 ../install_steps_gtk.pm_.c:255
-msgid "Computing fat filesystem bounds"
-msgstr "Skaičiuojami FAT failų sistemos rėžiai"
+#: ../../diskdrake.pm_.c:569 ../../install_steps_gtk.pm_.c:208
+msgid "Computing FAT filesystem bounds"
+msgstr "Skaičiuojami FAT bylų sistemos rėžiai"
-#: ../diskdrake.pm_.c:510 ../diskdrake.pm_.c:555
-#: ../install_steps_gtk.pm_.c:255
+#: ../../diskdrake.pm_.c:569 ../../diskdrake.pm_.c:618
+#: ../../install_steps_gtk.pm_.c:208
msgid "Resizing"
msgstr "Keičiamas dydis"
-#: ../diskdrake.pm_.c:524
-msgid "resizing"
-msgstr "keičiamas dydis"
+#: ../../diskdrake.pm_.c:585
+msgid "All data on this partition should be backed-up"
+msgstr "Pasidarykite atsarginę duomenų šiame skirsnyje kopiją"
-#: ../diskdrake.pm_.c:534
+#: ../../diskdrake.pm_.c:587
+#, c-format
+msgid "After resizing partition %s, all data on this partition will be lost"
+msgstr "Po skirsnio %s dydžio pakeitimo, visi duomenys jame bus prarasti"
+
+#: ../../diskdrake.pm_.c:597
msgid "Choose the new size"
msgstr "Pasirinkite naują dydį"
-#: ../diskdrake.pm_.c:534 ../install_steps_graphical.pm_.c:287
-#: ../install_steps_graphical.pm_.c:334 ../install_steps_gtk.pm_.c:317
-#: ../install_steps_gtk.pm_.c:361
+#: ../../diskdrake.pm_.c:597 ../../install_steps_graphical.pm_.c:287
+#: ../../install_steps_graphical.pm_.c:334
msgid "MB"
msgstr "MB"
-#: ../diskdrake.pm_.c:587
+#: ../../diskdrake.pm_.c:652
msgid "Create a new partition"
-msgstr "Sukurti naują sritį"
+msgstr "Sukurti naują skirsnį"
-#: ../diskdrake.pm_.c:603
+#: ../../diskdrake.pm_.c:672
msgid "Start sector: "
msgstr "Pradžios sektorius: "
-#: ../diskdrake.pm_.c:606
+#: ../../diskdrake.pm_.c:676 ../../diskdrake.pm_.c:750
msgid "Size in MB: "
msgstr "Dydis (MB): "
-#: ../diskdrake.pm_.c:609
+#: ../../diskdrake.pm_.c:679 ../../diskdrake.pm_.c:753
msgid "Filesystem type: "
-msgstr "Failų sistemos tipai: "
+msgstr "Bylų sistemos rūšysi: "
-#: ../diskdrake.pm_.c:611
+#: ../../diskdrake.pm_.c:682
msgid "Preference: "
msgstr "Pirmenybė: "
-#: ../diskdrake.pm_.c:655 ../diskdrake.pm_.c:671
+#: ../../diskdrake.pm_.c:729 ../../install_steps.pm_.c:132
+msgid "This partition can't be used for loopback"
+msgstr ""
+
+#: ../../diskdrake.pm_.c:739
+msgid "Loopback"
+msgstr ""
+
+#: ../../diskdrake.pm_.c:749
+msgid "Loopback file name: "
+msgstr ""
+
+#: ../../diskdrake.pm_.c:775
+msgid "File already used by another loopback, choose another one"
+msgstr ""
+
+#: ../../diskdrake.pm_.c:776
+msgid "File already exists. Use it?"
+msgstr "Ši byla jau yra.Naudoti ją?"
+
+#: ../../diskdrake.pm_.c:798 ../../diskdrake.pm_.c:814
msgid "Select file"
-msgstr "Pasirinkite failą"
+msgstr "Pasirinkite bylą"
-#: ../diskdrake.pm_.c:664
+#: ../../diskdrake.pm_.c:807
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
msgstr ""
-"Turima sričių pasiskirstymo lentelės kopija yra ne tokio pat dydžio\n"
-"Ar vistiek tęsti?"
+"Atsarginė skirsnio lentelė nėra tokio pačio dydžio\n"
+"Vis tiek tęsti?"
-#: ../diskdrake.pm_.c:672
+#: ../../diskdrake.pm_.c:815
msgid "Warning"
-msgstr "Perspėjimas"
+msgstr "Dėmesio"
-#: ../diskdrake.pm_.c:673
+#: ../../diskdrake.pm_.c:816
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
msgstr ""
"Įdėkite diskelį į kaupiklį\n"
-"Visi duomenys esantys dikelyje bus prarasti"
+"Visi duomenys esantys diskelyje bus prarasti"
-#: ../diskdrake.pm_.c:687
+#: ../../diskdrake.pm_.c:830
msgid "Trying to rescue partition table"
-msgstr "Bandome atstatyti sričių pasiskirstymo lentelę"
+msgstr "Bandome atstatyti skirsnių lentelę"
-#: ../diskdrake.pm_.c:698
+#: ../../diskdrake.pm_.c:841
msgid "device"
msgstr "įrenginys"
-#: ../diskdrake.pm_.c:699
+#: ../../diskdrake.pm_.c:842
msgid "level"
msgstr "lygis"
-#: ../diskdrake.pm_.c:700
+#: ../../diskdrake.pm_.c:843
msgid "chunk size"
msgstr "gabalo dydis"
-#: ../diskdrake.pm_.c:712
+#: ../../diskdrake.pm_.c:855
msgid "Choose an existing RAID to add to"
msgstr "Pasirinkite jau esantį RAID prijungimui"
-#: ../diskdrake.pm_.c:713
+#: ../../diskdrake.pm_.c:856
msgid "new"
msgstr "naujas"
-#: ../fs.pm_.c:67 ../fs.pm_.c:73
+#: ../../fs.pm_.c:85 ../../fs.pm_.c:91 ../../fs.pm_.c:97 ../../fs.pm_.c:103
#, c-format
msgid "%s formatting of %s failed"
-msgstr "%s formatavimas %s nepavyko"
+msgstr "%s sužymėjimas %s nepavyko"
-#: ../fs.pm_.c:93
+#: ../../fs.pm_.c:129
#, c-format
-msgid "don't know how to format %s in type %s"
-msgstr "neaišku, kaip suformatuoti %s %s rūšimi"
+msgid "I don't know how to format %s in type %s"
+msgstr "Neaišku, kaip sužymėti %s rūšimi %s"
-#: ../fs.pm_.c:106
+#: ../../fs.pm_.c:186
msgid "nfs mount failed"
msgstr "nfs prijungimas nepavyko"
-#: ../fs.pm_.c:123
+#: ../../fs.pm_.c:209
msgid "mount failed: "
msgstr "prijungimas nepavyko: "
-#: ../fs.pm_.c:134
+#: ../../fs.pm_.c:220
#, c-format
msgid "error unmounting %s: %s"
-msgstr "klaida atjungiant %s: %s"
+msgstr "klaida, atjungiant %s: %s"
-#: ../fsedit.pm_.c:219
+#: ../../fsedit.pm_.c:250
msgid "Mount points must begin with a leading /"
msgstr "Prijungimo vieta turi prasidėti /"
-#: ../fsedit.pm_.c:222
+#: ../../fsedit.pm_.c:253
#, c-format
-msgid "There is already a partition with mount point %s"
-msgstr "Sritis su prijungimo vieta %s jau yra"
+msgid "There is already a partition with mount point %s\n"
+msgstr "Sritis su prijungimo vieta %s jau yra\n"
-#: ../fsedit.pm_.c:306
+#: ../../fsedit.pm_.c:261
+#, c-format
+msgid "Circular mounts %s\n"
+msgstr ""
+
+#: ../../fsedit.pm_.c:273
+msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+msgstr ""
+
+#: ../../fsedit.pm_.c:355
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Klaida, bandant atidaryti %s, kad įrašyti: %s"
-#: ../fsedit.pm_.c:388
+#: ../../fsedit.pm_.c:437
msgid ""
"An error has 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šome pasitikrinti savo įrangą, dėl galimo gedimo"
+"skirsnius. Prašome pasitikrinti savo įrangą dėl galimo gedimo"
-#: ../fsedit.pm_.c:403
+#: ../../fsedit.pm_.c:452
msgid "You don't have any partitions!"
-msgstr "Jūs neturite jokių sričių!"
+msgstr "Jūs neturite jokių skirsnių!"
-#: ../help.pm_.c:7
+#: ../../help.pm_.c:7
msgid "Choose preferred language for install and system usage."
msgstr "Pasirinkite kalbą įdiegimui ir sisteminiam vartojimui"
-#: ../help.pm_.c:10
+#: ../../help.pm_.c:10
msgid "Choose the layout corresponding to your keyboard from the list above"
msgstr "Pasirinkite norimą klaviatūros išdėstymą iš sąrašo aukščiau"
-#: ../help.pm_.c:13
+#: ../../help.pm_.c:13
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"
+"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).\n"
+"\n"
"\n"
-"Choose \"Upgrade\" if you wish to update a previous version of Mandrake\n"
-"Linux: 5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1\n"
-"(Helios) or Gold 2000."
+"Select:\n"
+"\n"
+" - Automated (recommended): If you have never installed Linux before, "
+"choose this. NOTE:\n"
+" networking will not be configured during installation, use "
+"\"LinuxConf\"\n"
+" to configure it after the install completes.\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ų 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) arba Gold 2000."
-
-#: ../help.pm_.c:22
-msgid ""
-"Select:\n"
+"6.1 (Helios), Gold 2000 arba 7.0 (Air).\n"
+"\n"
"\n"
-" - Recommended: If you have never installed Linux before.\n"
+"Pasirinkite:\n"
"\n"
+" - Rekomenduojama: Jeigu jums ansčiau nėra tekę įdiegti Linux.\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"
-" - 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"
+" - 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 KA JUS NIEKO NEZINOTE!\n"
+
+#: ../../help.pm_.c:37
+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"
-" - 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\"."
+" - 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:\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 "
-"bendrospaskirties (pvz. pašto, spausdintuvo...) serverį.\n"
+"bendros paskirties (pvz. pašto, spausdintuvo...) serverį.\n"
"\n"
"\n"
-" - Eksperto: Jeigu jūs puikiai sekasi su GNU/Linux išspresi rimtas "
+" - 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."
+"šios sistemos panaudojimas.\n"
-#: ../help.pm_.c:40
+#: ../../help.pm_.c:49
+msgid ""
+"The different choices for your machine's usage (provided, hence, that you "
+"have\n"
+"chosen either \"Custom\" or \"Expert\" as an installation class) are the\n"
+"following:\n"
+"\n"
+" - Normal: choose this if you intend to use your machine primarily for\n"
+" everyday use (office work, graphics manipulation and so on). Do not\n"
+" expect any compiler, development utility et al. installed.\n"
+"\n"
+" - Development: as its name says. Choose this if you intend to use your\n"
+" machine primarily for software development. You will then have a "
+"complete\n"
+" collection of software installed in order to compile, debug and format\n"
+" source code, or create software packages.\n"
+"\n"
+" - Server: choose this if the machine which you're installing "
+"Linux-Mandrake\n"
+" on is intended to be used as a server. Either a file server (NFS or "
+"SMB),\n"
+" a print server (Unix' lp (Line Printer) protocol or Windows style SMB\n"
+" printing), an authentication server (NIS), a database server and so on. "
+"As\n"
+" such, do not expect any gimmicks (KDE, GNOME...) to be installed.\n"
+msgstr ""
+
+#: ../../help.pm_.c:70
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"
@@ -1011,23 +1386,25 @@ msgstr ""
"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į vadyti\n"
-"arba jūs išvis jo neturite jums bus pranešta. Jeigu jūs neturite atsakykite\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"
-"Pirmiause leiskite įrangai pačiai nusistatyti. Dažnai tai puikiai suveikia\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"
+"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."
-#: ../help.pm_.c:64
+#: ../../help.pm_.c:94
msgid ""
"At this point, you may choose what partition(s) to use to install\n"
"your Linux-Mandrake system if they have been already defined (from a\n"
@@ -1052,38 +1429,61 @@ msgid ""
"\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 need not be. Consult the documentation\n"
-"and take your time before proceeding."
+"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 ""
-"Dabar jūs galite pasirinkti į kurią(-ias) sritį(-is) įdiegsime "
+"Dabar jūs galite pasirinkti į kurią(-ias) sritį(-is) įdiegsime\n"
"Linux-Mandrake\n"
-"sistemą, jeigu tai dar nebuvo nustatyta anksčiau (nuo buvusio Linux "
+"sistemą, jeigu tai dar nebuvo nustatyta anksčiau (nuo buvusio Linux\n"
"įdiegimo\n"
-"arba su kokia nors sričių skirstymo programa). Ši operacija susideda iš "
+"arba su kokia nors skirsnių skirstymo programa). Ši operacija susideda iš\n"
"loginio\n"
-"kompiuteri okieto disko padalinimo į kelias naudojimo dalis.\n"
+"kompiuterio kieto disko padalinimo į kelius skirsnius.\n"
"\n"
"\n"
-"Jeigu jums reikai sukurti naujas sritis naudokite \"Automatinis "
-"nustatymas\", kad\n"
-"automatiškai sukurti LInux'ui sritis. Kad paskirstymui pasirinkti diską\n"
-"paspauskite \"hda\" jeigu tai pirmasis IDE diskas ant kanalo, \"hdb\" jeigu\n"
-"antrasant pirmo IDE kanalo, \"sda\" jeigu pirmas SCSI diskas ir t.t\n"
+"Jeigu jums reikia sukurti naujus skirsnius, naudokite \"Automatinis\n"
+"nustatymas\", norint\n"
+"automatiškai sukurti Linux skirsnius. Norint skirsnių sukūrimui pasirinkti "
+"kaupiklį,\n"
+"spauskite \"hda\", jeigu tai pirmasis IDE diskas ant kanalo, \"hdb\" jeigu\n"
+"antras ant pirmo IDE kanalo, \"sda\" jeigu pirmas SCSI diskas ir t.t\n"
"\n"
"\n"
-"Dvi pagrindinės sritys yra; šakninė sritis (/), kuri yra sistemos pradinis\n"
-"taškas ir /boot, kuris susideda iš falių kurių reikia kad pasikrautų "
-"operacinė\n"
-"sistema.\n"
+"Du pagrindiniai skirsniai yra: root skirsnis (/), kuris yra sistemos "
+"pradinis\n"
+"taškas ir /boot, kuris susideda iš bylų, kurių reikia sistemos užkrovimui,\n"
+" kada kompiuteris pirmą kartą įjungiamas\n"
"\n"
"\n"
-"Kadangi šio proceso rezultatas yra negrįžtamas tą daryti nepatyrusiam "
+"Kadangi šio proceso rezultatas yra negrįžtamas, tą daryti nepatyrusiam\n"
"vartotojui\n"
-"gali būti broblematiška. Visą procedųrą supaprastina DiskDrake. Prieš "
-"pradėdami\n"
-"pasižiūrėkite dokumentaciją."
+"gali būti sunku. Visą procedūrą supaprastina DiskDrake. Prieš\n"
+"pradėdami,\n"
+"pasižiūrėkite dokumentaciją.\n"
+"\n"
+"Jūs galite tai daryti klaviatūros pagalba: eikite per skirsnius klavišų Tab\n"
+"ir Up/Down klavišų pagalba\n"
+". Kada skirnis pasirinktas, Jūs galite naudoti:\n"
+"\n"
+"- Ctrl-c, norėdami sukurti naują skirsnį (kada būna pasirinktas tuščias "
+"skirsnis)\n"
+"\n"
+"- Ctrl-d, norėdami ištrinti skirsnį\n"
+"\n"
+"- Ctrl-m, norėdami nurodyti prijungimo vietą\n"
-#: ../help.pm_.c:90
+#: ../../help.pm_.c:131
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"
@@ -1098,47 +1498,44 @@ msgstr ""
"duomenis. Atminkite kad išnaujo formatuoti jau formatuotas sitis nėra\n"
"būtina, nes jose gali būti reikalinga informacija."
-#: ../help.pm_.c:98
-#, fuzzy
+#: ../../help.pm_.c:139
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."
+"You may now select the group of packages you wish to\n"
+"install or upgrade.\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\n"
+"the 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\n"
+"through more than 1000 packages..."
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."
-#: ../help.pm_.c:114
+#: ../../help.pm_.c:150
+msgid ""
+"If you have all the CDs in the list above, 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 ""
+"Jeigu Jūs turite visus CD sąraše aukščiau, spauskite Gerai.\n"
+" Jeigu Jūs neturite nė vieno iš šių CD, spauskite Nutraukti.\n"
+"Jeigu nėra tik kai kurių CD, nuimkite jo pasirinkimą ir po spauskite Gerai."
+
+#: ../../help.pm_.c:155
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"
+"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."
-#: ../help.pm_.c:120
+#: ../../help.pm_.c:161
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"
@@ -1155,26 +1552,26 @@ msgid ""
"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"
+"nurodyti; jums bus parodytas sąrašas\n"
"\n"
"\n"
-"Jeigu jūs sutinkate su DrakX' nustatymais tiesiog peršokite į tą sekcija\n"
+"Jeigu jūs sutinkate su DrakX' nustatymais tiesiog peršokite į tą sekciją\n"
"kurią norite paspausdami ant meniu kairėje. Kitokiu atveju pasirinkite\n"
"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."
+"prie kokios jungties ji yra prijungta."
-#: ../help.pm_.c:135
+#: ../../help.pm_.c:176
msgid ""
-"Please select the correct port. For example, the COM1 port in MS Windows\n"
-"is named ttyS0 in Linux."
+"Please select the correct port. For example, the COM1 port under MS Windows\n"
+"is named ttyS0 under Linux."
msgstr ""
"Prašau pasirinkti teisingą jungtį. Pavyzdžiui COM1 pagal MS Windows\n"
"Linux'e yra ttyS0."
-#: ../help.pm_.c:139
+#: ../../help.pm_.c:180
msgid ""
"This section is dedicated to configuring a local area\n"
"network (LAN) or a modem.\n"
@@ -1205,26 +1602,26 @@ msgid ""
"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) konfiguravimui.\n"
+"Ši sekcija yra skirta vietinio tinklo (LAN) nustatymui.\n"
"\n"
-"Jeigu jūs pasakyrite \"Taip\" DrakX pabandys pats surasti tiklo kortą.\n"
-"PCI įrenginys turėtų būti surastas ir inicializuotas automatiškai. Tačiau\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"
+"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"
+"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 Linux-Mandrake į kompiuterį kuris jau yra tinkle\n"
+"Jeigu jūs įdiegiate Linux-Mandrake į 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 "
+"tinklo subkaukę ir tinklo kaukę. Įdiegiant privačiam tinkle namuose, jums "
"tai\n"
"reikės pasirinkti pačiam."
-#: ../help.pm_.c:169
+#: ../../help.pm_.c:210
msgid ""
"Enter:\n"
"\n"
@@ -1256,7 +1653,7 @@ msgstr ""
"\"IP adreso\". Jeigu jūs nežinote pasiklauskite tinklo administratoriaus\n"
"arba ISP.\n"
-#: ../help.pm_.c:184
+#: ../../help.pm_.c:225
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."
@@ -1264,15 +1661,15 @@ msgstr ""
"Dabar jūs galite įvesti prisiskambinimo nustatymus. Jeigu nežinote ką\n"
"įrašyti tikslią informaciją galite gauti iš jūsų ISP."
-#: ../help.pm_.c:188
+#: ../../help.pm_.c:229
msgid ""
"If you will use proxies, please configure them now. If you don't know if\n"
-"you will use proxies, ask your network administrator or your ISP."
+"you should use proxies, ask your network administrator or your ISP."
msgstr ""
-"Jeigu jūs naudosite proxy prašau dabar tai sukonfiguruoti. Jeigu to dar\n"
-"nežinote pasiklauskite tinklo administratoriaus arba ISP."
+"Jeigu jūs naudosite proxy, prašau dabar tai nustatyti. Jeigu to dar\n"
+"nežinote, pasiklauskite tinklo administratoriaus arba ISP."
-#: ../help.pm_.c:192
+#: ../../help.pm_.c:233
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 "
@@ -1282,38 +1679,63 @@ msgid ""
"Note you have to select mirror and cryptographic packages according\n"
"to your legislation."
msgstr ""
-"Dabar jūs galite įdiegti šifravimo paketą, jeigu jūsų internet pasijungimas\n"
-"yra gerai nustatytas. Pradžiai pasirinkite iš kurio atvaizdžio parsiųsti "
+"Dabar jūs galite įdiegti kriptografijos paketą, jeigu jūsų interneto "
+"prisijungimas\n"
+"yra gerai nustatytas. Pradžiai pasirinkite iš kurios nuorodos parsisiųsti "
"paketus,\n"
"o po to pasirinkite kurius įdiegti.\n"
"\n"
-"Atminkite kad jums reikia pasirinkti šifravimo paketus pagal jūsų įstatymus."
+"Atminkite kad jums reikia pasirinkti kriptografijos paketus, atitinkančius "
+"mūsų įstatymų reikalavimus."
-#: ../help.pm_.c:200
+#: ../../help.pm_.c:241
msgid ""
"You can now select your timezone according to where you live.\n"
"\n"
"\n"
-"Linux manages time in GMT or \"Greenwich Meridian Time\" and translates it\n"
+"Linux manages time in GMT or \"Greenwich Mean Time\" and translates it\n"
"in local time according to the time zone you have selected."
msgstr ""
"Dabar jūs pagal gyvenamąją vietą galite pasirinkti laiko juostą.\n"
"\n"
"\n"
-"Linux dirba su GMT \"Greenwich Meridian Time\" laiko juosta ir paverčia į\n"
+"Linux dirba su GMT \"Greenwich Mean Time\" laiko juosta ir paverčia į\n"
"vietinį laiką pagal laiko juostą kurią jųs pasirenkate."
-#: ../help.pm_.c:207
-msgid "Help"
-msgstr "Pagalba"
-
-#: ../help.pm_.c:210
+#: ../../help.pm_.c:248
+msgid ""
+"You may now choose which services you want to see started at boot time.\n"
+"When your mouse comes over an item, a small balloon help will popup which\n"
+"describes the role of the service.\n"
+"\n"
+"Be especially careful in this step if you intend to use your machine as a\n"
+"server: you will probably want not to start any services which you don't\n"
+"want."
+msgstr ""
+"Dabar Jūs galite pasirinkti, kurias tarnybas Jūs norite paleisti įkrovos "
+"metu.\n"
+"Kada Jūsų pelės kursorius pereina per atitinkamą tarnybą, pasirodo pagalbos "
+"langas,\n"
+"kuris aprašo tarnybos veikimą ir vaidmenį Jūsų sistemoje.\n"
+"\n"
+"Būkite šiame žingsnyje ypač atsargūs, Jiegu norite naudotis savo kompiuteriu "
+"kaip\n"
+"serveriu: Jūs greičiausiai nenorėsite naudotis tomis tarnybomis, kurių Jūs\n"
+"nenorite."
+
+#: ../../help.pm_.c:257
msgid ""
"Linux can deal with many types of printer. Each of these\n"
-"types require a different setup.\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 directly connected to your computer, select\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"
@@ -1332,7 +1754,7 @@ msgid ""
"for a NetWare printer, except that you need no workgroup information."
msgstr ""
-#: ../help.pm_.c:233
+#: ../../help.pm_.c:286
msgid ""
"You can now enter the root password for your Linux-Mandrake\n"
"system. The password must be entered twice to verify that both\n"
@@ -1345,7 +1767,7 @@ msgid ""
"be extremely dangerous to the integrity of the system and its data,\n"
"and other systems connected to it. The password should be a\n"
"mixture of alphanumeric characters and a least 8 characters long. It\n"
-"should *never* be written down. Do not make the password too long or\n"
+"should NEVER be written down. Do not make the password too long or\n"
"complicated, though: you must be able to remember without too much\n"
"effort."
msgstr ""
@@ -1365,16 +1787,16 @@ msgstr ""
"būti\n"
"prisimenamas be ypatingų pastangų."
-#: ../help.pm_.c:249
+#: ../../help.pm_.c:302
msgid ""
"To enable a more secure system, you should select \"Use shadow file\" and\n"
"\"Use MD5 passwords\"."
msgstr ""
-"Kad padaryti sistemą saugesne jums reikia pasirinkti \"Naudoti šešėlinį "
-"failą\" ir\n"
+"Norėdami padaryti sistemą saugesne, pasirinkite \"Naudoti šešėlinę bylą\" "
+"ir\n"
" \"Naudoti MD5 slaptažodžius\"."
-#: ../help.pm_.c:253
+#: ../../help.pm_.c:306
msgid ""
"If your network uses NIS, select \"Use NIS\". If you don't know, ask your\n"
"network administrator."
@@ -1382,7 +1804,7 @@ msgstr ""
"Jeigu jūsų tinklas naudoja NIS, tada pasirinkite \"Naudoti NIS\". Jeigu\n"
"nežinote paklauskite tinklo administratoriaus."
-#: ../help.pm_.c:257
+#: ../../help.pm_.c:310
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"
@@ -1419,7 +1841,7 @@ msgstr ""
"administravimo\n"
"darbams."
-#: ../help.pm_.c:276
+#: ../../help.pm_.c:329
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"
@@ -1431,7 +1853,7 @@ msgstr ""
"Tada nepadarę startavimo diskelio kaip mes patarėje nebegalėsite\n"
"startuoti Linux."
-#: ../help.pm_.c:282
+#: ../../help.pm_.c:335
msgid ""
"You need to indicate where you wish\n"
"to place the information required to boot to Linux.\n"
@@ -1440,63 +1862,45 @@ msgid ""
"Unless you know exactly what you are doing, choose \"First sector of\n"
"drive (MBR)\"."
msgstr ""
-"Jums reikia nurodyti kur yrašyti LILO startavimui reikalingą informaciją\n"
+"Jums reikia nurodyti, kur įrašyti LILO paleidimui reikalingą informaciją\n"
"\n"
"\n"
"\n"
-"Jeigu nežinote kai elgtis pasirinkite \"Pirmasis kaupiklio sektorius (MBR)\"."
+"Jeigu nežinote kaip elgtis, pasirinkite \"Pirmasis kaupiklio sektorius "
+"(MBR)\"."
-#: ../help.pm_.c:290
+#: ../../help.pm_.c:343
msgid ""
"Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-"(the master drive on the primary channel)."
+" (primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
msgstr ""
-"Jeigu žinote nurodykite. Įprastas pasirinkimas yra \"/dev/hda\"\n"
-"tai yra master diskas ant pirmo kanalo)."
+"Nebent norint kitaip nustatyti, bet paprastas pasirinkimas būna "
+"\"/dev/hda\"\n"
+"(tai yra pirminis master kaupiklis) arba \"/dev/sda\" (pirmas SCSI "
+"kaupiklis)."
-#: ../help.pm_.c:294
+#: ../../help.pm_.c:347
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"
+"LILO (the LInux LOader) and Grub are bootloaders: they are able to boot\n"
+"either 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"
-"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)."
+"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 (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ą)."
-#: ../help.pm_.c:303
+#: ../../help.pm_.c:359
msgid ""
-"LILO main options are:\n"
+"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"
-" - 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"
@@ -1510,45 +1914,26 @@ msgid ""
" * <number>: use the corresponding text mode."
msgstr ""
"pagrindiniai LILO nustatymai yra šie:\n"
-" - Startavimo įrenginys: Nurodo įrenginį (pvz. disko srities), kuriame\n"
-"yra startavimo sektorius. jeigu žinote tada nurodykite, jeigu ne rašykite\n"
+" - Paleidimo įrenginys: Nurodo įrenginį (pvz. disko skirsnio), kuriame\n"
+"yra paleidžiamasis sektorius. jeigu žinote, tada nurodykite, jeigu ne, "
+"rašykite\n"
"\"/dev/hda\".\n"
"\n"
"\n"
-" - Tiesus: Generuoti tiesinį sektoriaus adresą vietoj\n"
-"sektorius/galva/cilingras adreso. Tiesiniai adresai yra sutransliuojami\n"
-"paleidimo metu ir nepriklauso nuo disko geometrijos. Pažymėtina, kad\n"
-"naudojant \"tiesus\" diskas gali nedirbti kitame kompiuteryje, nes\n"
-"BIOS atsakingas už disko geometrijos nustatymą nevisada patikimai dirba\n"
-"su minštais diskeliais. Naudojant \"tiesus\" su dideliais diskais\n"
-"/sbin/lilo gali sugeneruoti kreipinius į nepasiekiamas disko vietas\n"
-"nes 3D sektorių adresai nėra prieinami prieš startavimą\n"
-"\n"
-"\n"
-" - Kompatiškas: Pabando sujungti skaitymo užklausas į gretimus sektorius\n"
-"į vieną užklausą. Tai grėsmingai sumažina užkrovimo laiką ir išlaiko "
-"atvaizdį\n"
-"mažu. Naudojant \"kompaktiškas\" įpatingai yra rekomenduojant startuojant "
-"iš\n"
-"minkšto diskelio.\n"
-"\n"
-"\n"
" - Pauzė prieš startuojant atvaizdį pagal nutylėjimą: Nustato kiekį "
"dešimtųjų\n"
-"sekundės dalių, kurį reikia palaukti prieš startuojant pirmą vaizdą. Tai "
-"yra\n"
-"naudinga sistemoms kurios startuoja iškart po klaviatūros įjungimo. "
-"Startavimas\n"
-"nelaukia jeigu pauzė yra nenurodyta arba lygi nuliui.\n"
+" sekundės dalių, kurių reikia palaukti, prieš paleidžiant pirmą vaizdą. Tai "
+"naudinga sistemoms, kurios paleidžiamos iškart po klaviatūros įjungimo. "
+"Įkrovos tvarkyklė nelaukia, jeigu \"pauzė\" yra nenurodyta arba lygi "
+"nuliui.\n"
"\n"
"\n"
-" - Video režimas: Tai nurodo kokį startuojant pasirinkti VGA režimą. Yra "
-"įmanomos\n"
-"sekančios reikšmės:\n"
-" * normal: pasirinkite standaritinį 80x25 tekstinį režimą.\n"
+" - Video režimas: Tai nurodo kokį paleidžiant pasirinkti VGA režimą. Yra "
+"prieinamos šios reikšmės:\n"
+" * normal: pasirinkite standartinį 80x25 tekstinį režimą.\n"
" * <skaičius>: naudoti atitinkamą tekstinį režimą."
-#: ../help.pm_.c:338
+#: ../../help.pm_.c:378
msgid ""
"Now it's time to configure the X Window System, which is the\n"
"core of the Linux GUI (Graphical User Interface). For this purpose,\n"
@@ -1574,7 +1959,7 @@ msgstr ""
"jums netiks jūs galėsite grįžti ir pakeisti konfiguraciją kiek\n"
"norite kartų."
-#: ../help.pm_.c:351
+#: ../../help.pm_.c:391
msgid ""
"If something is wrong in X configuration, use these options to correctly\n"
"configure the X Window System."
@@ -1582,7 +1967,7 @@ msgstr ""
"Jeigu kas nors su X konfiguracija yra netvarkoje pasirinkite šiuos\n"
"nustatymus kad teisingai nustatyti X Windows Sistemą."
-#: ../help.pm_.c:355
+#: ../../help.pm_.c:395
msgid ""
"If you prefer to use a graphical login, select \"Yes\". Otherwise, select\n"
"\"No\"."
@@ -1590,39 +1975,47 @@ msgstr ""
"Jeigu jūs norite pasisveikinti grafiniam režime pasirinkite \"Taip\". Kitu\n"
"atveju pasirinkite \"Ne\"."
-#: ../help.pm_.c:359
+#: ../../help.pm_.c:399
msgid ""
-"You can now select some miscellaneous options for you 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)."
+"You can now select some miscellaneous options for your system.\n"
+"\n"
+" - Use hard drive optimizations: this option can improve hard disk "
+"performance\n"
+" but is only for advanced users: some buggy chipsets can ruin your data, "
+"so\n"
+" beware. Note that the kernel has a builtin blacklist of drives and\n"
+" chipsets, but if you want to avoid bad surprises, leave this option "
+"unset.\n"
+"\n"
+" - Choose security level: you can choose a security level for your\n"
+" system. Please refer to the manual for complete information. Basically: "
+"if\n"
+" you don't know, select \"Medium\" ; if you really want to have a secure\n"
+" machine, choose \"Paranoid\" but beware: IN THIS LEVEL, ROOT LOGIN AT\n"
+" CONSOLE IS NOT ALLOWED! If you want to be root, you have to login as a "
+"user\n"
+" and then use \"su\". More generally, do not expect to use your machine\n"
+" for anything but as a server. You have been warned.\n"
+"\n"
+" - Precise RAM size if needed: unfortunately, in today's PC world, there is "
+"no\n"
+" standard method to ask the BIOS about the amount of RAM present in your\n"
+" computer. As a consequence, Linux may fail to detect your amount of RAM\n"
+" correctly. If this is the case, you can specify the correct amount of "
+"RAM\n"
+" here. Note that a difference of 2 or 4 MB is normal.\n"
+"\n"
+" - Removable media automounting: if you would prefer not to manually\n"
+" mount removable media (CD-ROM, Floppy, Zip) by typing \"mount\" and\n"
+" \"umount\", select this option. \n"
+"\n"
+" - Enable NumLock at startup: if you want NumLock enabled after booting,\n"
+" select this option (Note: NumLock may or may not work under X)."
msgstr ""
"Dabar jūs galite pasirinkti įvairias savo sistemos opcijas.\n"
"\n"
-" - Naudoti diskinio kaupiklio optimizavimą: Ši opcija pagerinti priėjimą\n"
-"prie disko ir naudotina tik apie tai žinantiem vartotojam (neteisingai\n"
+" - Naudoti diskinio kaupiklio optimizavimą: Ši opcija pagerina priėjimą\n"
+"prie kaupiklio ir naudotina tik patyrusiam vartotojui (neteisingai\n"
"naudojant galima sugadinti diską).\n"
"\n"
"\n"
@@ -1630,20 +2023,21 @@ msgstr ""
"Plačiau apie tai skaitykite pateiktuose aprašymuose\n"
"\n"
"\n"
-" - Reikalingas apytikris RAM atminties kiekis: kai kuriai atvejais Linux\n"
-"negali nustatyti kiek jūsų sitema turi atminities. Tokiu atveju jums reikia\n"
-"nurodyti jos kieki. Atminkite kad 2 arba 4 Mb netikslumas būtų normalus.\n"
+" - Reikalingas apytikris RAM atminties kiekis: kai kuriais atvejais Linux\n"
+"negali nustatyti kiek jūsų sistema turi atminities. Tokiu atveju jums "
+"reikia\n"
+"nurodyti jos kiekį. Atminkite kad 2 arba 4 Mb netikslumas būtų normalus.\n"
"\n"
"\n"
" - Išimamų atminties įrenginių automatinis prijungimas: Jeigu jūs nenorite\n"
-"montuoti CD-ROM, Minkštų diskelių arba Zip įrenginių rankiniu būdu rašydami\n"
+"prijungti CD-ROM, diskelių arba Zip įrenginių rankiniu būdu, rašydami\n"
"\"mount\" ir \"umount\" pasirinkite šią opciją.\n"
"\n"
"\n"
" - Startuojant įjungti Num Lock: Jeigu reikia kad startavus būtų įjungtas\n"
"Num Lock pasirinkite šią opciją (Pastaba: Num Lock vistiek nedirbs po X)."
-#: ../help.pm_.c:387
+#: ../../help.pm_.c:428
msgid ""
"Your system is going to reboot.\n"
"\n"
@@ -1657,282 +2051,284 @@ msgstr ""
"automatiškai. Jeigu norite pakrauti kitą operacinę sistemą prašom\n"
"perskaityti pridėtas instrukcijas."
-#: ../install2.pm_.c:43
+#: ../../install2.pm_.c:43
msgid "Choose your language"
msgstr "Pasirinkite kalbą"
-#: ../install2.pm_.c:44
+#: ../../install2.pm_.c:44
msgid "Select installation class"
msgstr "Parinkite įdiegimo klasę"
-#: ../install2.pm_.c:45
-msgid "Setup SCSI"
-msgstr "Nustatyti SCSI"
+#: ../../install2.pm_.c:45
+msgid "Hard drive detection"
+msgstr "Diskinio kaupiklio suradimas"
-#: ../install2.pm_.c:46
-msgid "Choose install or upgrade"
-msgstr "Įdiegti ar atnaujinti"
-
-#: ../install2.pm_.c:47
+#: ../../install2.pm_.c:46
msgid "Configure mouse"
-msgstr "Konfiguruoti pelę"
+msgstr "Pelės nustatymas"
-#: ../install2.pm_.c:48
+#: ../../install2.pm_.c:47
msgid "Choose your keyboard"
msgstr "Pasirinkite klaviatūrą"
-#: ../install2.pm_.c:49
+#: ../../install2.pm_.c:48 ../../install_steps_interactive.pm_.c:318
msgid "Miscellaneous"
msgstr "Įvairūs"
-#: ../install2.pm_.c:50
+#: ../../install2.pm_.c:49
msgid "Setup filesystems"
-msgstr "Nustatyti failų sistemas"
+msgstr "Nustatyti bylų sistemas"
-#: ../install2.pm_.c:51
+#: ../../install2.pm_.c:50
msgid "Format partitions"
-msgstr "Formatuoti sritis"
+msgstr "Sužymėti skirsnius"
-#: ../install2.pm_.c:52
+#: ../../install2.pm_.c:51
msgid "Choose packages to install"
msgstr "Kuriuos paketus įdiegti"
-#: ../install2.pm_.c:53
+#: ../../install2.pm_.c:52
msgid "Install system"
msgstr "Įdiegti sistemą"
-#: ../install2.pm_.c:54
+#: ../../install2.pm_.c:53
msgid "Configure networking"
-msgstr "Konfiguruoti tinklą"
+msgstr "Nustatyti tinklą"
-#: ../install2.pm_.c:55
+#: ../../install2.pm_.c:54
msgid "Cryptographic"
-msgstr "Šifravimo"
+msgstr "Kriptografija"
-#: ../install2.pm_.c:56
+#: ../../install2.pm_.c:55
msgid "Configure timezone"
msgstr "Nurodyti laiko juostą"
-#: ../install2.pm_.c:58
+#: ../../install2.pm_.c:56
+msgid "Configure services"
+msgstr "Nustatyti tarnybas"
+
+#: ../../install2.pm_.c:57
msgid "Configure printer"
msgstr "Nustatyti spausdintuvą"
-#: ../install2.pm_.c:59 ../install_steps_interactive.pm_.c:576
-#: ../install_steps_interactive.pm_.c:577
+#: ../../install2.pm_.c:58 ../../install_steps_interactive.pm_.c:652
+#: ../../install_steps_interactive.pm_.c:653
msgid "Set root password"
msgstr "Nurodyti root slaptažodį"
-#: ../install2.pm_.c:60
+#: ../../install2.pm_.c:59
msgid "Add a user"
-msgstr "Pridėti vartotoją"
+msgstr "Naujas vartotojas"
-#: ../install2.pm_.c:61
+#: ../../install2.pm_.c:61
msgid "Create a bootdisk"
-msgstr "Sukurti startavimo diskelį"
+msgstr "Sukurti įkrovos diskelį"
-#: ../install2.pm_.c:62
+#: ../../install2.pm_.c:63
msgid "Install bootloader"
-msgstr "Įdiegti bootloader"
+msgstr "Įdiegti įkrovos tvarkyklę"
-#: ../install2.pm_.c:63
+#: ../../install2.pm_.c:64
msgid "Configure X"
-msgstr "Konfiguruoti X"
+msgstr "Nustatyti X"
+
+#: ../../install2.pm_.c:65
+msgid "Auto install floppy"
+msgstr "Auto įdiegimo diskelis"
-#: ../install2.pm_.c:64
+#: ../../install2.pm_.c:66
msgid "Exit install"
msgstr "Išeiti iš įdiegimo"
-#: ../install2.pm_.c:83
-msgid "beginner"
-msgstr "pradedantysis"
-
-#: ../install2.pm_.c:83
-msgid "developer"
-msgstr "kūrėjas"
-
-#: ../install2.pm_.c:83
-msgid "expert"
-msgstr "ekspertas"
-
-#: ../install2.pm_.c:83
-msgid "server"
-msgstr "serveris"
-
-#: ../install2.pm_.c:311
+#: ../../install2.pm_.c:308
msgid ""
"You must have a root partition.\n"
"For this, create a partition (or click on an existing one).\n"
"Then choose action ``Mount point'' and set it to `/'"
msgstr ""
"Jūs turite turėti root sritį.\n"
-"Tam jūs turite sukurti sritį arba spragtelėti ant jau egsamos\n"
+"Tam jūs turite sukurti skirsnį (arba spragtelėti ant jau esamo).\n"
"ir ``Mount point'' nurodyti `/'"
-#: ../install2.pm_.c:327
-msgid "Not enough swap to fulfill installation, please add some"
-msgstr "Nepakanka swap atminties kad įvykdyti įdiegimą, prašau praplėsti"
-
-#: ../install_any.pm_.c:194 ../standalone/diskdrake_.c:61
+#: ../../install_any.pm_.c:331 ../../standalone/diskdrake_.c:61
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 ""
-"Aš negaliu perskaityti jūsų sričių pasiskirstymo lentelės, ji perdaug "
-"sugadinta\n"
-"Pabandysiu tuščias blogas sritis"
+"Aš negaliu perskaityti jūsų skirsnių lentelės, ji man per daug sugadinta :(\n"
+"Pabandysiu nuimti blogus skirsnius"
-#: ../install_any.pm_.c:210
+#: ../../install_any.pm_.c:348
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
msgstr ""
-"DiskDrake nagali korektiškai perskaityti sričių pasiskirstymo lentelės.\n"
-"Teskite savo paties rizika!"
+"DiskDrake nagali korektiškai perskaityti skirsnių lentelės.\n"
+"Tęskite savo paties rizika!"
-#: ../install_any.pm_.c:220
+#: ../../install_any.pm_.c:370
msgid "Searching root partition."
-msgstr "Apieškoma šakninė sritis."
+msgstr "Ieškomas pagrindinis skirsnis."
-#: ../install_any.pm_.c:249
+#: ../../install_any.pm_.c:399
msgid "Information"
msgstr "Informacija"
-#: ../install_any.pm_.c:250
+#: ../../install_any.pm_.c:400
#, c-format
msgid "%s: This is not a root partition, please select another one."
-msgstr "%s: Tai ne šakninė sritis, prašom pasirinkti kitą"
+msgstr "%s: Tai ne pagrindinis skirsnis, prašom pasirinkti kitą"
-#: ../install_any.pm_.c:252
+#: ../../install_any.pm_.c:402
msgid "No root partition found"
-msgstr "Nerasta šakninė sritis"
+msgstr "Nerastas pagrindinis skirsnis"
-#: ../install_any.pm_.c:289
+#: ../../install_any.pm_.c:440
msgid "Can't use broadcast with no NIS domain"
msgstr "Negalima naudoti transliavimo be NIS domeno"
-#: ../install_any.pm_.c:473
+#: ../../install_any.pm_.c:602
msgid "Error reading file $f"
-msgstr "Įvyko klaida skaitant failą $f"
-
-#: ../install_any.pm_.c:479
-#, c-format
-msgid "Bad kickstart file %s (failed %s)"
-msgstr "Blogas kickstart falias %s (nepavyko %s)"
+msgstr "Įvyko klaida, nuskaitant bylą $f"
-#: ../install_steps.pm_.c:72
+#: ../../install_steps.pm_.c:75
msgid ""
"An error occurred, but I don't know how to handle it nicely.\n"
"Continue at your own risk."
msgstr ""
-"Įvyko klaida su kuria negaliu gražiai susitvarkyti.\n"
-"Teskite darba savo paties rizika."
+"Įvyko klaida, su kuria negaliu gražiai susitvarkyti.\n"
+"Tęskite darbą savo paties rizika."
-#: ../install_steps.pm_.c:136
+#: ../../install_steps.pm_.c:174
#, c-format
msgid "Duplicate mount point %s"
-msgstr "Egzistuoja neviena %s prijungimo vieta"
+msgstr "Egzistuoja ne viena %s prijungimo vieta"
+
+#: ../../install_steps.pm_.c:318
+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 ""
-#: ../install_steps.pm_.c:295
-#, fuzzy, c-format
+# \, c-format
+#: ../../install_steps.pm_.c:385
+#, c-format
msgid "Welcome to %s"
-msgstr "Sveiki atvykę į Crackers"
+msgstr "Sveiki atvykę į %s"
-#: ../install_steps.pm_.c:562
+#: ../../install_steps.pm_.c:737
msgid "No floppy drive available"
-msgstr "Nė vienas diskelių kaupiklis nėra prieinamas"
+msgstr "Neprieinamas nė vienas diskelių kaupiklis"
-#: ../install_steps_auto_install.pm_.c:18 ../install_steps_stdio.pm_.c:26
+#: ../../install_steps_auto_install.pm_.c:18 ../../install_steps_gtk.pm_.c:125
+#: ../../install_steps_stdio.pm_.c:26
#, c-format
msgid "Entering step `%s'\n"
msgstr "Bandoma vykdyti žingsnį `%s'\n"
-#: ../install_steps_graphical.pm_.c:259 ../install_steps_gtk.pm_.c:294
+#: ../../install_steps_graphical.pm_.c:259 ../../install_steps_gtk.pm_.c:249
msgid "You must have a swap partition"
-msgstr "Jūs privalote turėti swap sritį"
+msgstr "Jūs privalote turėti swap skirsnį"
-#: ../install_steps_graphical.pm_.c:261 ../install_steps_gtk.pm_.c:296
+#: ../../install_steps_graphical.pm_.c:261 ../../install_steps_gtk.pm_.c:251
msgid ""
"You don't have a swap partition\n"
"\n"
"Continue anyway?"
msgstr ""
-"Jūs neturite swap srities\n"
+"Jūs neturite swap skirsnio\n"
"\n"
-"Ar vistiek tęsti?"
+"vistiek tęsti?"
-#: ../install_steps_graphical.pm_.c:287 ../install_steps_gtk.pm_.c:317
+#: ../../install_steps_graphical.pm_.c:287
msgid "Choose the size you want to install"
msgstr "Pasirinkite kokio norite įdiegti dydžio"
-#: ../install_steps_graphical.pm_.c:334 ../install_steps_gtk.pm_.c:361
+#: ../../install_steps_graphical.pm_.c:334
msgid "Total size: "
msgstr "Bendras dydis: "
-#: ../install_steps_graphical.pm_.c:346 ../install_steps_gtk.pm_.c:373
-#: ../standalone/rpmdrake_.c:136
+#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:447
+#: ../../standalone/rpmdrake_.c:136
#, c-format
msgid "Version: %s\n"
msgstr "Versija: %s\n"
-#: ../install_steps_graphical.pm_.c:347 ../install_steps_gtk.pm_.c:374
-#: ../standalone/rpmdrake_.c:137
+#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:448
+#: ../../standalone/rpmdrake_.c:137
#, c-format
msgid "Size: %d KB\n"
msgstr "Dydis: %d KB\n"
-#: ../install_steps_graphical.pm_.c:462 ../install_steps_gtk.pm_.c:489
+#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:360
msgid "Choose the packages you want to install"
msgstr "Pasirinkite paketus, kuriuos Jūs norite instaliuoti"
-#: ../install_steps_graphical.pm_.c:465 ../install_steps_gtk.pm_.c:492
+#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:363
msgid "Info"
msgstr "Info"
-#: ../install_steps_graphical.pm_.c:473 ../install_steps_gtk.pm_.c:500
-#: ../install_steps_interactive.pm_.c:81 ../standalone/rpmdrake_.c:161
+#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:368
+#: ../../install_steps_interactive.pm_.c:129 ../../standalone/rpmdrake_.c:161
msgid "Install"
msgstr "Įdiegti"
-#: ../install_steps_graphical.pm_.c:492 ../install_steps_gtk.pm_.c:519
-#: ../install_steps_interactive.pm_.c:317
+#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:533
+#: ../../install_steps_interactive.pm_.c:382
msgid "Installing"
msgstr "Įdiegiama"
-#: ../install_steps_graphical.pm_.c:499 ../install_steps_gtk.pm_.c:526
+#: ../../install_steps_graphical.pm_.c:499 ../../install_steps_gtk.pm_.c:539
msgid "Please wait, "
msgstr "Prašome palaukti, "
-#: ../install_steps_graphical.pm_.c:501 ../install_steps_gtk.pm_.c:528
+#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:541
msgid "Time remaining "
msgstr "Liko laiko"
-#: ../install_steps_graphical.pm_.c:502 ../install_steps_gtk.pm_.c:529
+#: ../../install_steps_graphical.pm_.c:502 ../../install_steps_gtk.pm_.c:542
msgid "Total time "
msgstr "Bendra trukmė "
-#: ../install_steps_graphical.pm_.c:507 ../install_steps_gtk.pm_.c:534
-#: ../install_steps_interactive.pm_.c:317
+#: ../../install_steps_graphical.pm_.c:507 ../../install_steps_gtk.pm_.c:551
+#: ../../install_steps_interactive.pm_.c:382
msgid "Preparing installation"
msgstr "Ruošiamas įdiegimas"
-#: ../install_steps_graphical.pm_.c:528 ../install_steps_gtk.pm_.c:549
+#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:566
#, c-format
msgid "Installing package %s"
msgstr "Įdiegiamas paketas %s"
-#: ../install_steps_graphical.pm_.c:553 ../install_steps_gtk.pm_.c:574
+#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:607
+#: ../../install_steps_gtk.pm_.c:611
msgid "Go on anyway?"
-msgstr "Testi vistiek?"
+msgstr "Tęsti vistiek?"
-#: ../install_steps_graphical.pm_.c:553 ../install_steps_gtk.pm_.c:574
+#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:607
msgid "There was an error ordering packages:"
-msgstr "Įvyko klaida, norint sutvarkyti paketus:"
+msgstr "Įvyko klaida, bandant sutvarkyti paketus:"
-#: ../install_steps_graphical.pm_.c:577 ../install_steps_interactive.pm_.c:893
+#: ../../install_steps_graphical.pm_.c:577
+#: ../../install_steps_interactive.pm_.c:997
msgid "Use existing configuration for X11?"
-msgstr "Naudoti esančius X11 nustatymus ?"
+msgstr "Naudoti esamus X11 nustatymus ?"
+
+#: ../../install_steps_gtk.pm_.c:154
+msgid "Please, choose one of the following classes of installation:"
+msgstr "Prašau pasirinkti vieną iš šių įdiegimo klasių:"
+
+#: ../../install_steps_gtk.pm_.c:195
+msgid "You don't have any windows partitions!"
+msgstr "Jūs neturite jokių windows skirsnių!"
-#: ../install_steps_gtk.pm_.c:259
+#: ../../install_steps_gtk.pm_.c:197
+msgid "You don't have any enough room for Lnx4win"
+msgstr "Jums neužtenka vietos Lnx4win"
+
+#: ../../install_steps_gtk.pm_.c:213
msgid ""
"WARNING!\n"
"\n"
@@ -1945,180 +2341,353 @@ msgid ""
msgstr ""
"PERSPĖJIMAS!\n"
"\n"
-"DrakX dabar reikia pakeisti Windows srities dydį. Būkit atsargus ši "
+"DrakX dabar reikia pakeisti Windows skirsnio dydį. Būkit atsargus ši "
"operacija\n"
-"yra pavojinga. Jeigu dar nepaledote ScanDisk tai jau laikas tai padaryti.\n"
-"Taip pat galima paleisti ir Defrag bei padaryti šios srities duomenų "
+"yra pavojinga. Jeigu dar nepaleidote ScanDisk, tai jau laikas tai padaryti.\n"
+"Taip pat galima paleisti ir Defrag, bei padaryti šio skirsnio duomenų "
"kopiją.\n"
-"Kada būsite tikras spauskite Ok."
+"Kada būsite tikras, spauskite Gerai."
-#: ../install_steps_gtk.pm_.c:278
+#: ../../install_steps_gtk.pm_.c:232
msgid "Automatic resizing failed"
msgstr "Automatinis dydžio nustatymas nepavyko"
-#: ../install_steps_gtk.pm_.c:312
+#: ../../install_steps_gtk.pm_.c:261
+msgid "Which partition do you want to use to put Linux4Win?"
+msgstr "Kuri skirsnį Jūs norite naudoti Linux4Win įdiegimui?"
+
+#: ../../install_steps_gtk.pm_.c:280
+msgid "Choose the sizes"
+msgstr "Pasirinkite dydžius"
+
+#: ../../install_steps_gtk.pm_.c:282
+msgid "Root partition size in MB: "
+msgstr "Pagrindinio skirsnio dydis, MB: "
+
+#: ../../install_steps_gtk.pm_.c:284
+msgid "Swap partition size in MB: "
+msgstr "Swap skirsnio dydis, MB: "
+
+#: ../../install_steps_gtk.pm_.c:316
+#, c-format
+msgid ""
+"The total size for the groups you have selected is approximately %d MB.\n"
+msgstr "Grupių, kurias Jūs pasirinkote bendras dydis yra apie %d MB. \n"
+
+#: ../../install_steps_gtk.pm_.c:318
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."
+"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:315
-msgid "You will be able to choose more precisely in next step"
-msgstr "Sekančiam žingsnyje jūs galėsite pasirinkti tiksliau"
+#: ../../install_steps_gtk.pm_.c:323
+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:329
+msgid "You will be able to choose them more specifically in the next step."
+msgstr "Sekančiam žingsnyje juos jūs galėsite pasirinkti tiksliau"
+
+#: ../../install_steps_gtk.pm_.c:331
+msgid "Percentage of packages to install"
+msgstr "Instaliojamų paketų procentuotė"
+
+#: ../../install_steps_gtk.pm_.c:372
+msgid "Automatic dependencies"
+msgstr "Atomatinė priklausomybė"
+
+#: ../../install_steps_gtk.pm_.c:425 ../../standalone/rpmdrake_.c:101
+msgid "Expand Tree"
+msgstr "Išplėsti medį"
+
+#: ../../install_steps_gtk.pm_.c:426 ../../standalone/rpmdrake_.c:102
+msgid "Collapse Tree"
+msgstr "Sutraukti medį"
+
+#: ../../install_steps_gtk.pm_.c:427
+msgid "Toggle between flat and group sorted"
+msgstr "Perjungti tarp paprasto ir grupių surūšiavimo"
-#: ../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:445
msgid "Bad package"
msgstr "Blogas paketas"
-#: ../install_steps_gtk.pm_.c:522
+#: ../../install_steps_gtk.pm_.c:446
+#, c-format
+msgid "Name: %s\n"
+msgstr "Pavadinimas: %s\n"
+
+#: ../../install_steps_gtk.pm_.c:449
+#, c-format
+msgid "Importance: %s\n"
+msgstr "Svarba: %s\n"
+
+#: ../../install_steps_gtk.pm_.c:457
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Bendras dydis: %d / %d MB"
+
+#: ../../install_steps_gtk.pm_.c:467
+msgid "This is a mandatory package, it can't be unselected"
+msgstr "Tai yra pagrindinis paketas, jis negali būti nnepasirinktas"
+
+#: ../../install_steps_gtk.pm_.c:469
+msgid "You can't unselect this package. It is already installed"
+msgstr "Jūs negalite nuimti šio paketo pasirinkimo. Jis jau įdiegtas"
+
+#: ../../install_steps_gtk.pm_.c:473
+msgid ""
+"This package must be upgraded\n"
+"Are you sure you want to deselect it?"
+msgstr ""
+"Šis paketas turi būti atnaujintas\n"
+"Ar Jūs tikri, kad norite nuimti pasirinkimą?"
+
+#: ../../install_steps_gtk.pm_.c:476
+msgid "You can't unselect this package. It must be upgraded"
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:489
+#, fuzzy
+msgid ""
+"You can't select this package as there is not enough space left to install it"
+msgstr "Jūs negalite nuimti šio paketo pasirinkimo. Jis jau įdiegtas"
+
+#: ../../install_steps_gtk.pm_.c:492
+msgid "The following packages are going to be installed/removed"
+msgstr "Šie paketai bus įdiegti/pašalinti"
+
+#: ../../install_steps_gtk.pm_.c:501
+msgid "You can't select/unselect this package"
+msgstr "Jūs negalite pasirinkti/nepasirinkti šio paketo"
+
+#: ../../install_steps_gtk.pm_.c:536
msgid "Estimating"
msgstr "Skaičiuojama"
-#: ../install_steps_gtk.pm_.c:544
+#: ../../install_steps_gtk.pm_.c:548 ../../interactive.pm_.c:84
+#: ../../interactive.pm_.c:223 ../../interactive_newt.pm_.c:49
+#: ../../interactive_newt.pm_.c:98 ../../interactive_stdio.pm_.c:27
+#: ../../my_gtk.pm_.c:201 ../../my_gtk.pm_.c:459
+msgid "Cancel"
+msgstr "Nutraukti"
+
+#: ../../install_steps_gtk.pm_.c:561
#, c-format
msgid "%d packages"
msgstr "%d paketai"
-#: ../install_steps_gtk.pm_.c:544
+#: ../../install_steps_gtk.pm_.c:561
msgid ", %U MB"
msgstr ", %U MB"
-#: ../install_steps_interactive.pm_.c:37
+#: ../../install_steps_gtk.pm_.c:592
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:611
+msgid "There was an error installing packages:"
+msgstr "Įvyko klaida, bandant įdiegti paketus:"
+
+#: ../../install_steps_interactive.pm_.c:40
msgid "An error occurred"
msgstr "Įvyko klaida"
-#: ../install_steps_interactive.pm_.c:54
-msgid "Which language do you want?"
-msgstr "Kokios kalbos Jūs norite"
+#: ../../install_steps_interactive.pm_.c:57
+msgid "Please, choose a language to use."
+msgstr "Prašome pasirinkti kalbą, kurią Jūs naudosite."
-#: ../install_steps_interactive.pm_.c:68 ../standalone/keyboarddrake_.c:22
+#: ../../install_steps_interactive.pm_.c:72
+#: ../../standalone/keyboarddrake_.c:22
msgid "Keyboard"
msgstr "Klaviatūra"
-#: ../install_steps_interactive.pm_.c:69 ../standalone/keyboarddrake_.c:23
-msgid "What is your keyboard layout?"
-msgstr "Koks Jūsų klaviatūros išdėstymas"
-
-#: ../install_steps_interactive.pm_.c:79
-msgid "Install/Upgrade"
-msgstr "Instaliuoti/atnaujinti"
+#: ../../install_steps_interactive.pm_.c:73
+msgid "Please, choose your keyboard layout."
+msgstr "Prašome pasirinkti klaviatūros išdėstymą."
-#: ../install_steps_interactive.pm_.c:80
-msgid "Is this an install or an upgrade?"
-msgstr "Jūs instaliuojate ar atnaujinate?"
-
-#: ../install_steps_interactive.pm_.c:81
-msgid "Upgrade"
-msgstr "Atnaujinimas"
+#: ../../install_steps_interactive.pm_.c:81
+msgid "You can choose other languages that will be available after install"
+msgstr "Jūs galite pasirinkti kitas kalbas, kurios bus prieinamos po įdiegimo"
-#: ../install_steps_interactive.pm_.c:89
+#: ../../install_steps_interactive.pm_.c:91
msgid "Root Partition"
-msgstr "Šakninė sritis"
+msgstr "Pagrindinis skirsnis"
-#: ../install_steps_interactive.pm_.c:90
+#: ../../install_steps_interactive.pm_.c:92
msgid "What is the root partition (/) of your system?"
-msgstr "Kur yra šakninė (/) jūsų sistemos sritis"
+msgstr "Kur yra pagrindinis (/) jūsų sistemos skirsnis"
-#: ../install_steps_interactive.pm_.c:100
-msgid "Recommended"
-msgstr "Rekomenduojama"
+#: ../../install_steps_interactive.pm_.c:100
+#: ../../install_steps_interactive.pm_.c:140
+msgid "Install Class"
+msgstr "Įdiegimo klasė"
+
+#: ../../install_steps_interactive.pm_.c:100
+msgid "Which installation class do you want?"
+msgstr "Kurios Įdiegimo klasės Jūs norite?"
+
+#: ../../install_steps_interactive.pm_.c:102
+msgid "Install/Upgrade"
+msgstr "Įdiegti/atnaujinti"
+
+#: ../../install_steps_interactive.pm_.c:102
+msgid "Is this an install or an upgrade?"
+msgstr "Jūs įdiegiate ar atnaujinate?"
+
+#: ../../install_steps_interactive.pm_.c:110
+msgid "Automated"
+msgstr "Automatinis"
-#: ../install_steps_interactive.pm_.c:101
+#: ../../install_steps_interactive.pm_.c:112
+#: ../../install_steps_interactive.pm_.c:124
msgid "Customized"
msgstr "Nustatoma"
-#: ../install_steps_interactive.pm_.c:102
+#: ../../install_steps_interactive.pm_.c:113
+#: ../../install_steps_interactive.pm_.c:124
msgid "Expert"
msgstr "Ekspertas"
-#: ../install_steps_interactive.pm_.c:104
-#: ../install_steps_interactive.pm_.c:118
-msgid "Install Class"
-msgstr "Įdiegimo klasė"
+#: ../../install_steps_interactive.pm_.c:122
+msgid ""
+"Are you sure you are an expert? \n"
+"You will be allowed to make powerfull but dangerous things here."
+msgstr ""
+"Ar Jūs tikri, kad esate ekspertas? \n"
+"Jums bus leidžiama daryti galingus, bet ir pavojingus dalykus čia."
-#: ../install_steps_interactive.pm_.c:105
-msgid "What installation class do you want?"
-msgstr "Kurios Įdiegimo klasės Jūs norite"
+#: ../../install_steps_interactive.pm_.c:129
+msgid "Upgrade"
+msgstr "Atnaujinimas"
-#: ../install_steps_interactive.pm_.c:114
+#: ../../install_steps_interactive.pm_.c:135
msgid "Normal"
msgstr "Normali"
-#: ../install_steps_interactive.pm_.c:115
+#: ../../install_steps_interactive.pm_.c:136
msgid "Development"
msgstr "Kūrimo"
-#: ../install_steps_interactive.pm_.c:116
+#: ../../install_steps_interactive.pm_.c:137
msgid "Server"
msgstr "Serverinė"
-#: ../install_steps_interactive.pm_.c:119
-msgid "What usage do you want?"
-msgstr "Koks Jūsų vartojimas?"
+#: ../../install_steps_interactive.pm_.c:141
+msgid "Which usage is your system used for ?"
+msgstr "Kam bus naudojama Jūsų sistema? "
-#: ../install_steps_interactive.pm_.c:132 ../standalone/mousedrake_.c:25
-msgid "What is the type of your mouse?"
-msgstr "Kokia Jūsų pelės rūšis?"
+#: ../../install_steps_interactive.pm_.c:152
+msgid "Please, choose the type of your mouse."
+msgstr "Prašome pasirinkti savo pelės rūšį."
-#: ../install_steps_interactive.pm_.c:140 ../standalone/mousedrake_.c:38
+#: ../../install_steps_interactive.pm_.c:160 ../../standalone/mousedrake_.c:38
msgid "Mouse Port"
-msgstr "Pelės prievadas"
+msgstr "Pelės Jungtis"
-#: ../install_steps_interactive.pm_.c:141 ../standalone/mousedrake_.c:39
-msgid "Which serial port is your mouse connected to?"
-msgstr "Prie kurios ser. jungties prijungta Jūsų pelė?"
+#: ../../install_steps_interactive.pm_.c:161
+msgid "Please choose on which serial port your mouse is connected to."
+msgstr ""
+"Prašome pasirinkti, prie kurios serijinės jungties prijungta Jūsų pelė."
-#: ../install_steps_interactive.pm_.c:157
+#: ../../install_steps_interactive.pm_.c:172
+msgid "Configuring IDE"
+msgstr "Nustatome IDE"
+
+#: ../../install_steps_interactive.pm_.c:172
+msgid "IDE"
+msgstr "IDE"
+
+#: ../../install_steps_interactive.pm_.c:182
msgid "no available partitions"
-msgstr "nėra prieinamų sričių"
+msgstr "nėra prieinamų skirsnių"
-#: ../install_steps_interactive.pm_.c:159
+#: ../../install_steps_interactive.pm_.c:184
#, c-format
-msgid "(%dMb)"
-msgstr "(%dMb)"
+msgid "(%dMB)"
+msgstr "(%dMB)"
-#: ../install_steps_interactive.pm_.c:166
-msgid "Which partition do you want to use as your root partition"
-msgstr "Kurią sritį Jūs norite naudoti kaip šakninę (root)"
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Please choose a partition to use as your root partition."
+msgstr "Prašome pasirinkti skirsnį, kurį Jūs naudosite kaip pagrindinį."
-#: ../install_steps_interactive.pm_.c:173
+#: ../../install_steps_interactive.pm_.c:198
msgid "Choose the mount points"
-msgstr "Pasirinkite prijungimo vietą"
+msgstr "Pasirinkite prijungimo vietas"
-#: ../install_steps_interactive.pm_.c:185
+#: ../../install_steps_interactive.pm_.c:210
msgid "You need to reboot for the partition table modifications to take place"
-msgstr ""
-"Jums reikia perkrauti kompiuterį kad išsaugoti sričių pasiskirstymo lentelę"
+msgstr "Jums reikia perkrauti kompiuterį, norint išsaugoti skirsnių lentelę"
-#: ../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:236
msgid "Choose the partitions you want to format"
-msgstr "Pasirinkite kurią sritį jūs norite suformatuoti"
+msgstr "Pasirinkite kurį skirsnį Jūs norite sužymėti"
-#: ../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:240
msgid "Check bad blocks?"
-msgstr ""
+msgstr "Tikrinti dėl blogų sektorių?"
+
+#: ../../install_steps_interactive.pm_.c:248
+msgid "Formatting partitions"
+msgstr "Sužymimi skirsniai"
+
+#: ../../install_steps_interactive.pm_.c:252
+#, c-format
+msgid "Creating and formatting file %s"
+msgstr "Sukuriama ir sužymima byla %s"
-#: ../install_steps_interactive.pm_.c:230
+#: ../../install_steps_interactive.pm_.c:255
+msgid "Not enough swap to fulfill installation, please add some"
+msgstr "Nepakanka swap atminties įdiegimo vykdymui, prašau praplėsti"
+
+#: ../../install_steps_interactive.pm_.c:261
msgid "Looking for available packages"
-msgstr "Ieškoma galimų paketų"
+msgstr "Ieškomi galimi paketai"
-#: ../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:267
msgid "Finding packages to upgrade"
msgstr "Ieškoma atnaujintinų paketų"
-#: ../install_steps_interactive.pm_.c:266
-#, c-format
-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 ""
+#: ../../install_steps_interactive.pm_.c:284
+msgid "Your system has not enough space left for installation or upgrade"
+msgstr "Jūsų sistemoje neužtenka vietos įdiegimui arba atnaujinimui"
-#: ../install_steps_interactive.pm_.c:290
+#: ../../install_steps_interactive.pm_.c:317
msgid "Package Group Selection"
msgstr "Paketų Grupės Pasirinkimas"
-#: ../install_steps_interactive.pm_.c:326
+#: ../../install_steps_interactive.pm_.c:320
+msgid "Individual package selection"
+msgstr "Atskirų paketų pasirinkimas"
+
+#: ../../install_steps_interactive.pm_.c:360
+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:363
+#, c-format
+msgid "Cd-Rom labeled \"%s\""
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:391
msgid ""
"Installing package %s\n"
"%d%%"
@@ -2126,55 +2695,55 @@ msgstr ""
"Įdiegiamas paketas %s\n"
"%d%%"
-#: ../install_steps_interactive.pm_.c:335
-msgid "Post install configuration"
+#: ../../install_steps_interactive.pm_.c:400
+msgid "Post-install configuration"
msgstr "Konfiguracija po įdiegimo"
-#: ../install_steps_interactive.pm_.c:346
+#: ../../install_steps_interactive.pm_.c:410
msgid "Keep the current IP configuration"
msgstr "Išlaikyti dabartinę IP konfiguraciją"
-#: ../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:411
msgid "Reconfigure network now"
msgstr "Perkonfiguruoti tinklą dabar"
-#: ../install_steps_interactive.pm_.c:348
-#: ../install_steps_interactive.pm_.c:360
+#: ../../install_steps_interactive.pm_.c:412
msgid "Do not set up networking"
msgstr "Nekonfiguruoti tinklo pasijungimų"
-#: ../install_steps_interactive.pm_.c:350
-#: ../install_steps_interactive.pm_.c:358
+#: ../../install_steps_interactive.pm_.c:415
+#: ../../install_steps_interactive.pm_.c:420
msgid "Network Configuration"
msgstr "Tinklo konfiguravimas"
-#: ../install_steps_interactive.pm_.c:351
+#: ../../install_steps_interactive.pm_.c:416
msgid "Local networking has already been configured. Do you want to:"
msgstr "Loalaus tinklo pasijungimai jau sukonfiguruoti. Ar norite :"
-#: ../install_steps_interactive.pm_.c:359
-msgid "Do you want to configure networking for your system?"
-msgstr "Ar Jūs norite konfiguruoti savo sistemos tinklinius pasijungimus?"
-
-#: ../install_steps_interactive.pm_.c:360
-msgid "Dialup with modem"
-msgstr "Prisiskambinimas modemu"
+#: ../../install_steps_interactive.pm_.c:421
+msgid "Do you want to configure a local network for your system?"
+msgstr "Ar Jūs norite nustatyti savo sistemos vietinį tinklą?"
-#: ../install_steps_interactive.pm_.c:360
-msgid "Local LAN"
-msgstr "Lokalus LAN"
-
-#: ../install_steps_interactive.pm_.c:369
+#: ../../install_steps_interactive.pm_.c:427
msgid "no network card found"
msgstr "tinklo korta nerasta"
-#: ../install_steps_interactive.pm_.c:399
-#: ../install_steps_interactive.pm_.c:400
+#: ../../install_steps_interactive.pm_.c:449
+msgid "Modem Configuration"
+msgstr "Modemo Nustatymai"
+
+#: ../../install_steps_interactive.pm_.c:450
+msgid ""
+"Do you want to configure a dialup connection with modem for your system?"
+msgstr "Ar Jūs norite nustatyti savo modemo dialup prisijungimą?"
+
+#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid "Configuring network device %s"
msgstr "Konfiguruojamas tiklo įrenginys %s"
-#: ../install_steps_interactive.pm_.c:401
+#: ../../install_steps_interactive.pm_.c:464
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -2184,31 +2753,31 @@ msgstr ""
"Kiekvienas laukas turi būti įrašytas kaip IP adresas\n"
"(pvz. 1.2.3.4)"
-#: ../install_steps_interactive.pm_.c:404
+#: ../../install_steps_interactive.pm_.c:467
msgid "Automatic IP"
msgstr "Automatinis IP"
-#: ../install_steps_interactive.pm_.c:404
+#: ../../install_steps_interactive.pm_.c:467
msgid "IP address:"
msgstr "IP adresas:"
-#: ../install_steps_interactive.pm_.c:404
+#: ../../install_steps_interactive.pm_.c:467
msgid "Netmask:"
msgstr "Tinklo kaukė:"
-#: ../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:468
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../install_steps_interactive.pm_.c:411 ../printerdrake.pm_.c:149
+#: ../../install_steps_interactive.pm_.c:474 ../../printerdrake.pm_.c:89
msgid "IP address should be in format 1.2.3.4"
msgstr "IP adresas turėtų būti 1.2.3.4 formato"
-#: ../install_steps_interactive.pm_.c:429
+#: ../../install_steps_interactive.pm_.c:492
msgid "Configuring network"
msgstr "Konfiguruojamas tinklas"
-#: ../install_steps_interactive.pm_.c:430
+#: ../../install_steps_interactive.pm_.c:493
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -2219,91 +2788,81 @@ msgstr ""
"Tai turi būti pilnas vardas (pvz ``mybox.mylab.myco.com'').\n"
"Taip pat galite įvesti IP ir tinklų sąsajos adresus jeigu juos turite"
-#: ../install_steps_interactive.pm_.c:434
+#: ../../install_steps_interactive.pm_.c:497
msgid "DNS server:"
msgstr "DNS serveris:"
-#: ../install_steps_interactive.pm_.c:434
+#: ../../install_steps_interactive.pm_.c:497
msgid "Gateway device:"
msgstr "Tinklų sąsajos įrenginys"
-#: ../install_steps_interactive.pm_.c:434
+#: ../../install_steps_interactive.pm_.c:497
msgid "Gateway:"
msgstr "Tinklų sąsaja:"
-#: ../install_steps_interactive.pm_.c:434
+#: ../../install_steps_interactive.pm_.c:497
msgid "Host name:"
msgstr "Kompiuterio vardas:"
-#: ../install_steps_interactive.pm_.c:447
+#: ../../install_steps_interactive.pm_.c:510
msgid "Try to find a modem?"
msgstr "Ar bandyti surasti modemą?"
-#: ../install_steps_interactive.pm_.c:457
-msgid "Which serial port is your modem connected to?"
-msgstr "Prie kurios serijinės jungties yra prijungtas jūsų modemas?"
+#: ../../install_steps_interactive.pm_.c:521
+msgid "Please choose which serial port your modem is connected to."
+msgstr ""
+"Prašome pasirinkti, prie kurios serijinės jungties yra prijungtas Jūsų "
+"modemas."
-#: ../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:527
msgid "Dialup options"
msgstr "Prisiskambinimo nustatymai"
-#: ../install_steps_interactive.pm_.c:463
+#: ../../install_steps_interactive.pm_.c:528
msgid "Connection name"
msgstr "Pasijungimo pavadinimas"
-#: ../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:529
msgid "Phone number"
msgstr "Telefono numeris"
-#: ../install_steps_interactive.pm_.c:465
+#: ../../install_steps_interactive.pm_.c:530
msgid "Login ID"
msgstr "Pasisveikinimo ID"
-#: ../install_steps_interactive.pm_.c:466
-#: ../install_steps_interactive.pm_.c:578
-#: ../install_steps_interactive.pm_.c:624
-#: ../install_steps_interactive.pm_.c:724 ../standalone/adduserdrake_.c:40
-msgid "Password"
-msgstr "Slaptažodis"
-
-#: ../install_steps_interactive.pm_.c:467
+#: ../../install_steps_interactive.pm_.c:532
msgid "Authentication"
msgstr "Autentifikacija"
-#: ../install_steps_interactive.pm_.c:467
+#: ../../install_steps_interactive.pm_.c:532
msgid "CHAP"
msgstr "CHAP"
-#: ../install_steps_interactive.pm_.c:467
+#: ../../install_steps_interactive.pm_.c:532
msgid "PAP"
msgstr "PAP"
-#: ../install_steps_interactive.pm_.c:467
+#: ../../install_steps_interactive.pm_.c:532
msgid "Script-based"
msgstr "Scenarinis"
-#: ../install_steps_interactive.pm_.c:467
+#: ../../install_steps_interactive.pm_.c:532
msgid "Terminal-based"
msgstr "Terminalinis"
-#: ../install_steps_interactive.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:533
msgid "Domain name"
msgstr "Domeno vardas"
-#: ../install_steps_interactive.pm_.c:469
+#: ../../install_steps_interactive.pm_.c:535
msgid "First DNS Server"
msgstr "Pirmasis DNS serveris"
-#: ../install_steps_interactive.pm_.c:470
+#: ../../install_steps_interactive.pm_.c:536
msgid "Second DNS Server"
msgstr "Antrasis DNS serveris"
-#: ../install_steps_interactive.pm_.c:483
-msgid "Bringing up the network"
-msgstr "Pajungti tinklą"
-
-#: ../install_steps_interactive.pm_.c:492
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:549
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
"\n"
@@ -2320,7 +2879,7 @@ msgid ""
"In addition customer and/or end user shall particularly be aware to not "
"infringe\n"
"the laws of his/their jurisdiction. Should customer and/or end user do not\n"
-"respect the provision of these applicable laws, he/they will incur serious\n"
+"respect the provision of these applicable laws, he/they will incure serious\n"
"sanctions.\n"
"\n"
"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
@@ -2350,126 +2909,97 @@ msgstr ""
"Prieš vartotojus kurie nesilaikys atitinkamų įstatymų bus gali būti\n"
"imtasi sankcijų\n"
"Mandrakesoft neatsako už netiesioginę arba atsitiktinis arba koks nors\n"
-"kitokią žalą."
+"kitokią žalą.\n"
+"\n"
+"D4l i6kilusi7 klausim7 susisiekite su: \n"
+"Mandrakesoft, Inc.\n"
+"2400 N. Lincoln Avenue Suite 243\n"
+"Altadena California 91001\n"
+"USA"
-#: ../install_steps_interactive.pm_.c:523
+#: ../../install_steps_interactive.pm_.c:580
msgid "Choose a mirror from which to get the packages"
msgstr "Pasirinkite serverį iš kurio imsite paketus"
-#: ../install_steps_interactive.pm_.c:528
+#: ../../install_steps_interactive.pm_.c:588
msgid "Contacting the mirror to get the list of available packages"
msgstr "Iškomas serveris iš kurio bus gauti galimi paketai"
-#: ../install_steps_interactive.pm_.c:532
-msgid "Which packages do you want to install"
-msgstr "Kokius jūs norite įdiegti paketus"
+#: ../../install_steps_interactive.pm_.c:592
+msgid "Please choose the packages you want to install."
+msgstr "Pasirinkite paketus, kuriuos Jūs norite įdiegti."
-#: ../install_steps_interactive.pm_.c:534
-msgid "Downloading cryptographic packages"
-msgstr "Parsiunčiami šifruoti paketai"
-
-#: ../install_steps_interactive.pm_.c:544
+#: ../../install_steps_interactive.pm_.c:606
msgid "Which is your timezone?"
msgstr "Kokia jūsų laiko juosta?"
-#: ../install_steps_interactive.pm_.c:545
+#: ../../install_steps_interactive.pm_.c:607
msgid "Is your hardware clock set to GMT?"
msgstr "Ar jūsų aparatūros laikrodis GMT?"
-#: ../install_steps_interactive.pm_.c:555
-msgid "Printer"
-msgstr "Spausdintuvas"
-
-#: ../install_steps_interactive.pm_.c:556
-msgid "Would you like to configure a printer?"
-msgstr "Ar norite konfiguruoti spausdintuvą?"
-
-#: ../install_steps_interactive.pm_.c:576
+#: ../../install_steps_interactive.pm_.c:652
msgid "No password"
msgstr "Slaptažodžio nėra"
-#: ../install_steps_interactive.pm_.c:576
-#: ../install_steps_interactive.pm_.c:798 ../interactive.pm_.c:74
-#: ../interactive.pm_.c:84 ../interactive.pm_.c:164
-#: ../interactive_newt.pm_.c:50 ../interactive_newt.pm_.c:97
-#: ../interactive_stdio.pm_.c:27 ../my_gtk.pm_.c:192 ../my_gtk.pm_.c:425
-#: ../my_gtk.pm_.c:525
-msgid "Ok"
-msgstr "Gerai"
-
-#: ../install_steps_interactive.pm_.c:579
-#: ../install_steps_interactive.pm_.c:625
-#: ../install_steps_interactive.pm_.c:725 ../standalone/adduserdrake_.c:41
-msgid "Password (again)"
-msgstr "Slaptažodis (vėl)"
-
-#: ../install_steps_interactive.pm_.c:581
+#: ../../install_steps_interactive.pm_.c:657
msgid "Use shadow file"
msgstr "Naudoti šešėlinį failą"
-#: ../install_steps_interactive.pm_.c:581
+#: ../../install_steps_interactive.pm_.c:657
msgid "shadow"
msgstr "šešėlinis"
-#: ../install_steps_interactive.pm_.c:582
+#: ../../install_steps_interactive.pm_.c:658
msgid "MD5"
msgstr "MD5"
-#: ../install_steps_interactive.pm_.c:582
+#: ../../install_steps_interactive.pm_.c:658
msgid "Use MD5 passwords"
msgstr "Naudoti MD5 slaptažodžius"
-#: ../install_steps_interactive.pm_.c:584
+#: ../../install_steps_interactive.pm_.c:660
msgid "Use NIS"
msgstr "Naudoti NIS"
-#: ../install_steps_interactive.pm_.c:584
+#: ../../install_steps_interactive.pm_.c:660
msgid "yellow pages"
msgstr "geltonieji puslapiai"
-#: ../install_steps_interactive.pm_.c:588
-#: ../install_steps_interactive.pm_.c:636
-#: ../install_steps_interactive.pm_.c:736 ../standalone/adduserdrake_.c:52
-msgid "Please try again"
-msgstr "Prašau bandyti vėl"
-
-#: ../install_steps_interactive.pm_.c:588
-#: ../install_steps_interactive.pm_.c:636
-#: ../install_steps_interactive.pm_.c:736 ../standalone/adduserdrake_.c:52
-msgid "The passwords do not match"
-msgstr "Slaptažodžiai neatitinka"
-
-#: ../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:666
#, c-format
msgid "This password is too simple (must be at least %d characters long)"
msgstr ""
-#: ../install_steps_interactive.pm_.c:597
+#: ../../install_steps_interactive.pm_.c:673
msgid "Authentification NIS"
msgstr "Autentifikacijos NIS"
-#: ../install_steps_interactive.pm_.c:598
+#: ../../install_steps_interactive.pm_.c:674
msgid "NIS Domain"
msgstr "NIS domenas"
-#: ../install_steps_interactive.pm_.c:598
+#: ../../install_steps_interactive.pm_.c:674
msgid "NIS Server"
msgstr "NIS serveris"
-#: ../install_steps_interactive.pm_.c:618 ../standalone/adduserdrake_.c:34
+#: ../../install_steps_interactive.pm_.c:699
+#: ../../standalone/adduserdrake_.c:36
msgid "Accept user"
msgstr "Priimti vartotoją"
-#: ../install_steps_interactive.pm_.c:618 ../standalone/adduserdrake_.c:34
+#: ../../install_steps_interactive.pm_.c:699
+#: ../../standalone/adduserdrake_.c:36
msgid "Add user"
msgstr "Pridėti vartotoją"
-#: ../install_steps_interactive.pm_.c:619 ../standalone/adduserdrake_.c:35
+#: ../../install_steps_interactive.pm_.c:700
+#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid "(already added %s)"
msgstr "(%s jau pridėtas)"
-#: ../install_steps_interactive.pm_.c:619 ../standalone/adduserdrake_.c:35
+#: ../../install_steps_interactive.pm_.c:700
+#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid ""
"Enter a user\n"
@@ -2478,325 +3008,261 @@ msgstr ""
"įveskite vartotoją\n"
"%s"
-#: ../install_steps_interactive.pm_.c:621 ../standalone/adduserdrake_.c:37
+#: ../../install_steps_interactive.pm_.c:702
+#: ../../standalone/adduserdrake_.c:39
msgid "Real name"
msgstr "Tikras vardas"
-#: ../install_steps_interactive.pm_.c:622 ../standalone/adduserdrake_.c:38
+#: ../../install_steps_interactive.pm_.c:703 ../../printerdrake.pm_.c:84
+#: ../../printerdrake.pm_.c:109 ../../standalone/adduserdrake_.c:40
msgid "User name"
msgstr "Vartotojo vardas"
-#: ../install_steps_interactive.pm_.c:627 ../standalone/adduserdrake_.c:43
+#: ../../install_steps_interactive.pm_.c:708
+#: ../../standalone/adduserdrake_.c:45
msgid "Shell"
msgstr "Aplinka"
-#: ../install_steps_interactive.pm_.c:637 ../standalone/adduserdrake_.c:53
+#: ../../install_steps_interactive.pm_.c:710
+#: ../../standalone/adduserdrake_.c:47
+msgid "Icon"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:720
+#: ../../standalone/adduserdrake_.c:57
msgid "This password is too simple"
msgstr "Šis slaptažodis yra perdaug paprastas"
-#: ../install_steps_interactive.pm_.c:638 ../standalone/adduserdrake_.c:54
+#: ../../install_steps_interactive.pm_.c:721
+#: ../../standalone/adduserdrake_.c:58
msgid "Please give a user name"
msgstr "Prašom suteikti vartotojo vardą"
-#: ../install_steps_interactive.pm_.c:639 ../standalone/adduserdrake_.c:55
+#: ../../install_steps_interactive.pm_.c:722
+#: ../../standalone/adduserdrake_.c:59
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Vartotojo vardas turi susidaryti iš mažųjų raidžių, skaičių ir simbolių `-' "
"arba `_'"
-#: ../install_steps_interactive.pm_.c:640 ../standalone/adduserdrake_.c:56
+#: ../../install_steps_interactive.pm_.c:723
+#: ../../standalone/adduserdrake_.c:60
msgid "This user name is already added"
msgstr "Šis vartotojo vardas jau pridėtas"
-#: ../install_steps_interactive.pm_.c:659
-#, fuzzy
-msgid "First drive"
-msgstr "Pirmasis DNS serveris"
+#: ../../install_steps_interactive.pm_.c:747
+msgid "First floppy drive"
+msgstr "Pirmasis diskelis"
-#: ../install_steps_interactive.pm_.c:660
-#, fuzzy
-msgid "Second drive"
-msgstr "Antrasis DNS serveris"
+#: ../../install_steps_interactive.pm_.c:748
+msgid "Second floppy drive"
+msgstr "Antrasis diskelis"
-#: ../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:749
msgid "Skip"
msgstr "Praleisti"
-#: ../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:755
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
"install\n"
-"LILO on your system, or another operating system removes LILO, or LILO "
-"doesn't\n"
+"LILO (or grub) on your system, or another operating system removes LILO, or "
+"LILO doesn't\n"
"work with your hardware configuration. A custom bootdisk can also be used "
"with\n"
"the Mandrake rescue image, making it much easier to recover from severe "
"system\n"
"failures. Would you like to create a bootdisk for your system?"
msgstr ""
-"Startinis diskelis leidžia pakrauti Linux sistemą be normalaus bootloader.\n"
+"Startinis diskelis leidžia pakrauti Linux sistemą be normalaus sistemos "
+"įkrovėjo.\n"
"Tai gali būti naudinga jeigu kita operacinė sistema išmeta LILO arba jei \n"
"LILO nedirba su jūsų aparatine dalimi. Startinis diskelis taip pat gali "
"būti\n"
-"naudingas išgelbėti Mandrake atvaizdį arba atstatyti sistemą.\n"
-"Ar norite sukurti startinį diskelį."
+"naudingas, norint apsisaugoti nuo kai kurių sistemos gedimų.\n"
+"Ar Jūs norite sukurti startinį diskelį?"
-#: ../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:764
msgid "Sorry, no floppy drive available"
msgstr "Atleiskite, bet nėra galimų diskelių kaupiklių"
-#: ../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:767
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Pasirinkite kuriuo kaupikliu kursite startavimo diskelį"
-#: ../install_steps_interactive.pm_.c:683
+#: ../../install_steps_interactive.pm_.c:772
#, c-format
msgid "Insert a floppy in drive %s"
msgstr "Įdėkite diskelį į kaupiklį %s"
-#: ../install_steps_interactive.pm_.c:684
-#: ../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:773
msgid "Creating bootdisk"
msgstr "Kuriamas startavimo diskelis"
-#: ../install_steps_interactive.pm_.c:691
-msgid "Preparing bootloader"
-msgstr "Ruošiama starttavimo programa"
-
-#: ../install_steps_interactive.pm_.c:703
-msgid "First sector of boot partition"
-msgstr "Pirmasis startavimo srities sektorius"
-
-#: ../install_steps_interactive.pm_.c:703
-msgid "First sector of drive (MBR)"
-msgstr "Pirmasis kaupiklio sektorius (MBR)"
-
-#: ../install_steps_interactive.pm_.c:708
-msgid "LILO Installation"
-msgstr "LILO Įdiegimas"
-
-#: ../install_steps_interactive.pm_.c:709
-msgid "Where do you want to install the bootloader?"
-msgstr "Kur norite įdiegti startavimo programą"
-
-#: ../install_steps_interactive.pm_.c:715
-msgid "Do you want to use LILO?"
-msgstr "Ar norite naudoti LILO?"
-
-#: ../install_steps_interactive.pm_.c:718
-msgid "Boot device"
-msgstr "Pakrovimo įrenginys"
-
-#: ../install_steps_interactive.pm_.c:719
-msgid "Linear (needed for some SCSI drives)"
-msgstr "Tiesus (reikalingas keletui SCSI kaupiklių)"
-
-#: ../install_steps_interactive.pm_.c:719
-msgid "linear"
-msgstr "Tiesus"
-
-#: ../install_steps_interactive.pm_.c:720
-msgid "Compact"
-msgstr "Kompaktiškas"
-
-#: ../install_steps_interactive.pm_.c:720
-msgid "compact"
-msgstr "kompaktiškas"
-
-#: ../install_steps_interactive.pm_.c:721
-msgid "Delay before booting default image"
-msgstr "Palaukti prieš pakraunant atvaizdą pagal nutylėjimą"
-
-#: ../install_steps_interactive.pm_.c:722
-msgid "Video mode"
-msgstr "Video režimas"
-
-#: ../install_steps_interactive.pm_.c:726
-msgid "Restrict command line options"
-msgstr "Griežtos komandinės eilutės nustatymai"
-
-#: ../install_steps_interactive.pm_.c:726
-msgid "restrict"
-msgstr "griežtas"
+#: ../../install_steps_interactive.pm_.c:785 ../../standalone/drakboot_.c:55
+msgid "Installation of LILO failed. The following error occured:"
+msgstr "LILO įdiegimas nepavyko. Įvyko sekanti klaida:"
-#: ../install_steps_interactive.pm_.c:732
-msgid "LILO main options"
-msgstr "Bendri LILO nustatymai"
+#: ../../install_steps_interactive.pm_.c:806
+msgid "Do you want to use SILO?"
+msgstr "Ar norite naudoti SILO?"
-#: ../install_steps_interactive.pm_.c:735
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-"Nustatymas ''Griežtos komandinės eilutės nustatymai'' yra naudojama tik su "
-"slaptažodžiu"
+#: ../../install_steps_interactive.pm_.c:817
+msgid "SILO main options"
+msgstr "Bendri SILO nustatymai"
-#: ../install_steps_interactive.pm_.c:746
+#: ../../install_steps_interactive.pm_.c:830
msgid ""
-"Here are the following entries in LILO.\n"
+"Here are the following entries in SILO.\n"
"You can add some more or change the existing ones."
msgstr ""
-"LILO turi sekančius įrašus.\n"
+"SILO turi sekančius įrašus.\n"
"Jūs galite pakeisti esamus arba pridėti naujų."
-#: ../install_steps_interactive.pm_.c:748 ../standalone/rpmdrake_.c:302
-msgid "Add"
-msgstr "Pridėti"
-
-#: ../install_steps_interactive.pm_.c:757
-msgid "Linux"
-msgstr "Linux"
-
-#: ../install_steps_interactive.pm_.c:757
-msgid "Other OS (windows...)"
-msgstr "Kitos OS (windows...)"
-
-#: ../install_steps_interactive.pm_.c:757
-msgid "Which type of entry do you want to add"
-msgstr "Kokio tipo įrašą jūs norite pridėti"
-
-#: ../install_steps_interactive.pm_.c:777
-msgid "Image"
-msgstr "Atvaizdas"
-
-#: ../install_steps_interactive.pm_.c:778
-#: ../install_steps_interactive.pm_.c:786
-msgid "Root"
-msgstr "Šakninis"
-
-#: ../install_steps_interactive.pm_.c:779
-msgid "Append"
-msgstr "Pridėti"
-
-#: ../install_steps_interactive.pm_.c:780
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../install_steps_interactive.pm_.c:781
-msgid "Read-write"
-msgstr "Skaitymui-Rašymui"
-
-#: ../install_steps_interactive.pm_.c:787
-msgid "Table"
-msgstr "Lentelė"
-
-#: ../install_steps_interactive.pm_.c:788
-msgid "Unsafe"
-msgstr "Nesaugu"
-
-#: ../install_steps_interactive.pm_.c:793
-msgid "Label"
-msgstr "Žymė"
-
-#: ../install_steps_interactive.pm_.c:795
-msgid "Default"
-msgstr "Pagal nutylėjimą"
-
-#: ../install_steps_interactive.pm_.c:798
-msgid "Remove entry"
-msgstr "Išmesti įrašą"
-
-#: ../install_steps_interactive.pm_.c:801
-msgid "Empty label not allowed"
-msgstr "Tuščia žymė neledžiama"
+#: ../../install_steps_interactive.pm_.c:858
+msgid "Partition"
+msgstr "Skirsnis"
-#: ../install_steps_interactive.pm_.c:802
+#: ../../install_steps_interactive.pm_.c:878
msgid "This label is already in use"
msgstr "Ši žymė jau naudojama"
-#: ../install_steps_interactive.pm_.c:803
-#, c-format
-msgid "A entry %s already exists"
-msgstr "%s įrašas jau egzistuoja"
+#: ../../install_steps_interactive.pm_.c:891
+msgid "Installation of SILO failed. The following error occured:"
+msgstr "SILO įdiegimas nepavyko. Įvyko sekanti klaida:"
-#: ../install_steps_interactive.pm_.c:817
-msgid "Installation of LILO failed. The following error occured:"
-msgstr "LILO įdiegimas nepavyko. Įvyko sekanti klaida:"
+#: ../../install_steps_interactive.pm_.c:901
+msgid "Preparing bootloader"
+msgstr "Ruošiama įkrovos tvarkyklė"
-#: ../install_steps_interactive.pm_.c:831
+#: ../../install_steps_interactive.pm_.c:909
+msgid "Do you want to use aboot?"
+msgstr "Ar norite naudoti aboot?"
+
+#: ../../install_steps_interactive.pm_.c:912
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:929
msgid "Proxies configuration"
-msgstr "Proxy konfiguracijos"
+msgstr "Proxy nustatymai"
-#: ../install_steps_interactive.pm_.c:832
+#: ../../install_steps_interactive.pm_.c:930
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:931
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:937
msgid "Proxy should be http://..."
msgstr "Proxy turėtų būti http://..."
-#: ../install_steps_interactive.pm_.c:840
+#: ../../install_steps_interactive.pm_.c:938
msgid "Proxy should be ftp://..."
msgstr "Proxy turėtų būti ftp://..."
-#: ../install_steps_interactive.pm_.c:850 ../standalone/draksec_.c:20
+#: ../../install_steps_interactive.pm_.c:948 ../../standalone/draksec_.c:20
msgid "Welcome To Crackers"
msgstr "Sveiki atvykę į Crackers"
-#: ../install_steps_interactive.pm_.c:851 ../standalone/draksec_.c:21
+#: ../../install_steps_interactive.pm_.c:949 ../../standalone/draksec_.c:21
msgid "Poor"
msgstr "Menkas"
-#: ../install_steps_interactive.pm_.c:852 ../standalone/draksec_.c:22
+#: ../../install_steps_interactive.pm_.c:950 ../../standalone/draksec_.c:22
msgid "Low"
msgstr "Žemas"
-#: ../install_steps_interactive.pm_.c:853 ../standalone/draksec_.c:23
+#: ../../install_steps_interactive.pm_.c:951 ../../standalone/draksec_.c:23
msgid "Medium"
msgstr "Vidutinis"
-#: ../install_steps_interactive.pm_.c:854 ../standalone/draksec_.c:24
+#: ../../install_steps_interactive.pm_.c:952 ../../standalone/draksec_.c:24
msgid "High"
msgstr "Aukštas"
-#: ../install_steps_interactive.pm_.c:855 ../standalone/draksec_.c:25
+#: ../../install_steps_interactive.pm_.c:953 ../../standalone/draksec_.c:25
msgid "Paranoid"
msgstr "Paranoiškas"
-#: ../install_steps_interactive.pm_.c:868
+#: ../../install_steps_interactive.pm_.c:966
msgid "Miscellaneous questions"
msgstr "Įvairūs klausimai"
-#: ../install_steps_interactive.pm_.c:869
+#: ../../install_steps_interactive.pm_.c:967
msgid "(may cause data corruption)"
msgstr "(gali sugadinti duomenis)"
-#: ../install_steps_interactive.pm_.c:869
+#: ../../install_steps_interactive.pm_.c:967
msgid "Use hard drive optimisations?"
msgstr "Ar naudoti kieto disko optimizavimą?"
-#: ../install_steps_interactive.pm_.c:870 ../standalone/draksec_.c:46
+#: ../../install_steps_interactive.pm_.c:968 ../../standalone/draksec_.c:46
msgid "Choose security level"
msgstr "Pasirinkite saugumo lygį"
-#: ../install_steps_interactive.pm_.c:871
+#: ../../install_steps_interactive.pm_.c:969
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Tikslus RAM atminties dydis (rasta %s MB)"
+msgstr "Tikslus RAM atminties dydis (rasta %d MB)"
-#: ../install_steps_interactive.pm_.c:872
+#: ../../install_steps_interactive.pm_.c:970
msgid "Removable media automounting"
msgstr "Išimamų laikmenu automatinis montavimas"
-#: ../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:972
+msgid "Clean /tmp at each boot"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:975
+msgid "Enable multi profiles"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:977
msgid "Enable num lock at startup"
msgstr "Startuojant įjungti Num-Lock"
-#: ../install_steps_interactive.pm_.c:877
-msgid "Give the ram size in Mb"
+#: ../../install_steps_interactive.pm_.c:980
+msgid "Give the ram size in MB"
msgstr "Nurodykite ram atminties dydį Mb"
-#: ../install_steps_interactive.pm_.c:905
-#: ../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:982
+msgid "Can't use supermount in high security level"
+msgstr "Neįmanoma naudoti supermount aukščiausiame saugumo lygyje"
+
+#: ../../install_steps_interactive.pm_.c:1002
+msgid ""
+"DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
+"By default, the 3.3 server is used because it works on more graphic cards.\n"
+"\n"
+"Do you want to try XFree 4.0?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1167
msgid "Try to find PCI devices?"
msgstr "Ar bandyti surasti PCI įrenginius"
-#: ../install_steps_interactive.pm_.c:920
+#: ../../install_steps_interactive.pm_.c:1034
+msgid "Do you want to generate an auto install floppy for linux replication?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1036
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Įdėkite tuščią diskelį į kaupiklį %s"
+
+#: ../../install_steps_interactive.pm_.c:1044
+msgid "Creating auto install floppy"
+msgstr "Kuriamas automatinio įdiegimo diskelis"
+
+#: ../../install_steps_interactive.pm_.c:1068
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -2806,7 +3272,7 @@ msgstr ""
"\n"
"Ar jūs norite išeiti?"
-#: ../install_steps_interactive.pm_.c:927
+#: ../../install_steps_interactive.pm_.c:1075
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -2827,26 +3293,26 @@ msgstr ""
"Informacija apie jūsų sistemos konfiguravima yra oficialioje\n"
"Linux-Mandrake User's Guide knygoje."
-#: ../install_steps_interactive.pm_.c:936
+#: ../../install_steps_interactive.pm_.c:1084
msgid "Shutting down"
msgstr "Bandoma išjungti"
-#: ../install_steps_interactive.pm_.c:950
+#: ../../install_steps_interactive.pm_.c:1096
#, c-format
msgid "Installing driver for %s card %s"
msgstr "%s tvarkyklė įdiegiama ploštei %s"
-#: ../install_steps_interactive.pm_.c:951
+#: ../../install_steps_interactive.pm_.c:1097
#, c-format
msgid "(module %s)"
msgstr "(modulis %s)"
-#: ../install_steps_interactive.pm_.c:961
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
msgid "Which %s driver should I try?"
msgstr "Kokią %s tvarkyklę turėčiau išbandyti?"
-#: ../install_steps_interactive.pm_.c:969
+#: ../../install_steps_interactive.pm_.c:1115
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -2862,20 +3328,20 @@ msgstr ""
"nustatymus ar leisite pabandyti nusistatyti pačiai. Bandymai gali\n"
"pakabinti kompiuterį, bet tai neturėtų padaryti žalos."
-#: ../install_steps_interactive.pm_.c:974
+#: ../../install_steps_interactive.pm_.c:1120
msgid "Autoprobe"
msgstr "Atomatinis bandymas"
-#: ../install_steps_interactive.pm_.c:974
+#: ../../install_steps_interactive.pm_.c:1120
msgid "Specify options"
msgstr "Nurodykite nustatymus"
-#: ../install_steps_interactive.pm_.c:978
+#: ../../install_steps_interactive.pm_.c:1124
#, c-format
msgid "You may now provide its options to module %s."
msgstr "Dabar jūs galite nurodyti modulio %s nustatymus."
-#: ../install_steps_interactive.pm_.c:984
+#: ../../install_steps_interactive.pm_.c:1130
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -2886,316 +3352,318 @@ msgstr ""
"Opcijų formatas yra toks : ''vardas=reikšmė vardas2=reikšmė2 ...''.\n"
"Pvz, ''io=0x300 irq=7''"
-#: ../install_steps_interactive.pm_.c:987
+#: ../../install_steps_interactive.pm_.c:1133
msgid "Module options:"
-msgstr "Modulio nustatymai"
+msgstr "Modulio parinktys:"
-#: ../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:1143
#, c-format
msgid ""
"Loading module %s failed.\n"
"Do you want to try again with other parameters?"
msgstr ""
"Modulio %s iškvietimas nepavyko.\n"
-"Ar norite bandyti su kitai parametrais?"
+"Ar norite bandyti su kitais nustatymais?"
-#: ../install_steps_interactive.pm_.c:1010
+#: ../../install_steps_interactive.pm_.c:1156
msgid "Try to find PCMCIA cards?"
msgstr "Ar pabandyti surasti PCMCIA kortas?"
-#: ../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1157
msgid "Configuring PCMCIA cards..."
-msgstr "Konfiguruojame PCMCIA kortas..."
+msgstr "Nustatome PCMCIA kortas..."
-#: ../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1157
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../install_steps_interactive.pm_.c:1018
-msgid ""
-"Linux does not yet fully support ultra dma 66 HPT.\n"
-"As a work-around i can make a custom floppy giving access the hard drive on "
-"ide2 and ide3"
-msgstr ""
-
-#: ../install_steps_interactive.pm_.c:1039
-#, fuzzy
-msgid ""
-"Enter a floppy to create an HTP enabled boot\n"
-"(all data on floppy will be lost)"
-msgstr ""
-"Įdėkite diskelį į kaupiklį\n"
-"Visi duomenys esantys dikelyje bus prarasti"
-
-#: ../install_steps_interactive.pm_.c:1056
-msgid "It is necessary to restart installation booting on the floppy"
-msgstr ""
-
-#: ../install_steps_interactive.pm_.c:1057
-msgid "It is necessary to restart installation with the new parameters"
-msgstr ""
-
-#: ../install_steps_interactive.pm_.c:1061
-#, c-format
-msgid ""
-"Failed to create an HTP boot floppy.\n"
-"You may have to restart installation and give ``%s'' at the prompt"
-msgstr ""
-
-#: ../install_steps_interactive.pm_.c:1081
+#: ../../install_steps_interactive.pm_.c:1176
#, c-format
msgid "Found %s %s interfaces"
-msgstr "Rstas %s %s interfeisai"
+msgstr "Rastas %s %s interfeisai"
-#: ../install_steps_interactive.pm_.c:1082
+#: ../../install_steps_interactive.pm_.c:1177
msgid "Do you have another one?"
msgstr "Ar turite dar vieną?"
-#: ../install_steps_interactive.pm_.c:1083
+#: ../../install_steps_interactive.pm_.c:1178
#, c-format
-msgid "Do you have any %s interface?"
+msgid "Do you have any %s interfaces?"
msgstr "Ar jūs turite kokį nors %s interfeisą?"
-#: ../install_steps_interactive.pm_.c:1085 ../interactive.pm_.c:79
-#: ../my_gtk.pm_.c:424 ../printerdrake.pm_.c:176
+#: ../../install_steps_interactive.pm_.c:1180 ../../interactive.pm_.c:79
+#: ../../my_gtk.pm_.c:458 ../../printerdrake.pm_.c:124
msgid "No"
msgstr "Ne"
-#: ../install_steps_interactive.pm_.c:1085 ../interactive.pm_.c:79
-#: ../my_gtk.pm_.c:424
+#: ../../install_steps_interactive.pm_.c:1180 ../../interactive.pm_.c:79
+#: ../../my_gtk.pm_.c:458
msgid "Yes"
msgstr "Taip"
-#: ../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1181
msgid "See hardware info"
msgstr "Pažiūrėkite įrangos informaciją"
-#: ../install_steps_newt.pm_.c:19
+#: ../../install_steps_interactive.pm_.c:1197
+msgid "Bringing up the network"
+msgstr "Pajungti tinklą"
+
+#: ../../install_steps_interactive.pm_.c:1202
+msgid "Bringing down the network"
+msgstr "Bandoma atjungti tinklą"
+
+#: ../../install_steps_newt.pm_.c:21
#, c-format
msgid "Linux-Mandrake Installation %s"
msgstr "Linux-Mandrake Įdiegimas %s"
-#: ../install_steps_newt.pm_.c:30
+#: ../../install_steps_newt.pm_.c:32
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
" <Tab>/<Alt-Tab> tarp elementų | <Space> pasirenkti | <F12> kitas langas "
-#: ../interactive.pm_.c:84 ../interactive.pm_.c:163
-#: ../interactive_newt.pm_.c:50 ../interactive_newt.pm_.c:97
-#: ../interactive_stdio.pm_.c:27 ../my_gtk.pm_.c:193 ../my_gtk.pm_.c:425
-msgid "Cancel"
-msgstr "Nutraukti"
+#: ../../install_steps_newt.pm_.c:43
+#, c-format
+msgid ""
+"You can now partition your %s hard drive\n"
+"When you are done, don't forget to save using `w'"
+msgstr ""
-#: ../interactive.pm_.c:181
+#: ../../interactive.pm_.c:244
msgid "Please wait"
msgstr "Prašome palaukti"
-#: ../interactive_stdio.pm_.c:35
+#: ../../interactive_stdio.pm_.c:35
#, c-format
msgid "Ambiguity (%s), be more precise\n"
msgstr "Dviprasmiškumas (%s), būkite tikslesnis\n"
-#: ../interactive_stdio.pm_.c:36 ../interactive_stdio.pm_.c:51
-#: ../interactive_stdio.pm_.c:70
+#: ../../interactive_stdio.pm_.c:36 ../../interactive_stdio.pm_.c:51
+#: ../../interactive_stdio.pm_.c:70
msgid "Bad choice, try again\n"
msgstr "Blogas pasirinkimas, pabandykite dar kartą\n"
-#: ../interactive_stdio.pm_.c:39
+#: ../../interactive_stdio.pm_.c:39
#, c-format
msgid " ? (default %s) "
msgstr " ? (pagal nutylėjimą %s) "
-#: ../interactive_stdio.pm_.c:52
+#: ../../interactive_stdio.pm_.c:52
#, c-format
msgid "Your choice? (default %s) "
msgstr "Jūsų pasirinkimas? (pagal nutylėjimą %s)"
-#: ../interactive_stdio.pm_.c:71
+#: ../../interactive_stdio.pm_.c:71
#, c-format
msgid "Your choice? (default %s enter `none' for none) "
msgstr ""
"Jūsų pasirinkimas? (pagal nutylėjimą %s įveskite `none' jeigu nenorite)"
-#: ../keyboard.pm_.c:88
-msgid "Armenian"
-msgstr "Armėnų"
+#: ../../keyboard.pm_.c:89 ../../keyboard.pm_.c:116
+msgid "Czech"
+msgstr "Čekų"
+
+#: ../../keyboard.pm_.c:90 ../../keyboard.pm_.c:103 ../../keyboard.pm_.c:117
+msgid "German"
+msgstr "Vokiečių"
+
+#: ../../keyboard.pm_.c:91 ../../keyboard.pm_.c:120
+msgid "Dvorak"
+msgstr "Dvorako"
+
+#: ../../keyboard.pm_.c:92 ../../keyboard.pm_.c:122
+msgid "Spanish"
+msgstr "Ispanų"
+
+#: ../../keyboard.pm_.c:93 ../../keyboard.pm_.c:123
+msgid "Finnish"
+msgstr "Suomių"
+
+#: ../../keyboard.pm_.c:94 ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:124
+msgid "French"
+msgstr "Prancūzų"
+
+#: ../../keyboard.pm_.c:95 ../../keyboard.pm_.c:143
+msgid "Norwegian"
+msgstr "Norvegų"
+
+#: ../../keyboard.pm_.c:96
+msgid "Polish"
+msgstr "Lenkų"
+
+#: ../../keyboard.pm_.c:97 ../../keyboard.pm_.c:148
+msgid "Russian"
+msgstr "Rusų"
-#: ../keyboard.pm_.c:89
+#: ../../keyboard.pm_.c:98 ../../keyboard.pm_.c:157
+msgid "UK keyboard"
+msgstr "Didžiosios Britanijos klaviatūra"
+
+#: ../../keyboard.pm_.c:99 ../../keyboard.pm_.c:102 ../../keyboard.pm_.c:158
+msgid "US keyboard"
+msgstr "JAV klaviatūra"
+
+#: ../../keyboard.pm_.c:106
+msgid "Armenian (old)"
+msgstr "Armėnų (senoji)"
+
+#: ../../keyboard.pm_.c:107
+msgid "Armenian (typewriter)"
+msgstr "Armėnų (spausd. mašinėlės)"
+
+#: ../../keyboard.pm_.c:108
+msgid "Armenian (phonetic)"
+msgstr "Armėnų (fonetinė)"
+
+#: ../../keyboard.pm_.c:111
msgid "Belgian"
msgstr "Belgų"
-#: ../keyboard.pm_.c:90
+#: ../../keyboard.pm_.c:112
msgid "Bulgarian"
msgstr "Bulgarų"
-#: ../keyboard.pm_.c:91
-msgid "Brazilian"
+#: ../../keyboard.pm_.c:113
+msgid "Brazilian (ABNT-2)"
msgstr "Brazilų"
-#: ../keyboard.pm_.c:92
-msgid "Swiss (French layout)"
-msgstr "Šveicar. (Pranc. išdėstymas)"
-
-#: ../keyboard.pm_.c:93
+#: ../../keyboard.pm_.c:114
msgid "Swiss (German layout)"
msgstr "Šveicarų (Vokišk. išdėstymas)"
-#: ../keyboard.pm_.c:94
-msgid "Czech"
-msgstr "Čekų"
+#: ../../keyboard.pm_.c:115
+msgid "Swiss (French layout)"
+msgstr "Šveicar. (Pranc. išdėstymas)"
-#: ../keyboard.pm_.c:95
-msgid "German"
-msgstr "Vokiečių"
+#: ../../keyboard.pm_.c:118
+msgid "German (no dead keys)"
+msgstr "Vokiečių (be atjungtų klavišų)"
-#: ../keyboard.pm_.c:96
+#: ../../keyboard.pm_.c:119
msgid "Danish"
msgstr "Danų"
-#: ../keyboard.pm_.c:97
-msgid "Dvorak"
-msgstr "Dvorakų"
-
-#: ../keyboard.pm_.c:98
+#: ../../keyboard.pm_.c:121
msgid "Estonian"
msgstr "Estų"
-#: ../keyboard.pm_.c:99
-msgid "Spanish"
-msgstr "Ispanų"
-
-#: ../keyboard.pm_.c:100
-msgid "Finnish"
-msgstr "Suomių"
-
-#: ../keyboard.pm_.c:101
-msgid "French"
-msgstr "Prancūzų"
-
-#: ../keyboard.pm_.c:102
+#: ../../keyboard.pm_.c:125
msgid "Georgian (\"Russian\" layout)"
-msgstr "Gruzinų (\"Rusiška\" išdėstymas)"
+msgstr "Gruzinų (\"Rusiškas\" išdėstymas)"
-#: ../keyboard.pm_.c:103
+#: ../../keyboard.pm_.c:126
msgid "Georgian (\"Latin\" layout)"
msgstr "Gruzinų (\"Latin\" išdėstymas)"
-#: ../keyboard.pm_.c:104
+#: ../../keyboard.pm_.c:127
msgid "Greek"
msgstr "Graikų"
-#: ../keyboard.pm_.c:105
+#: ../../keyboard.pm_.c:128
msgid "Hungarian"
msgstr "Vengrų"
-#: ../keyboard.pm_.c:106
+#: ../../keyboard.pm_.c:129
+msgid "Croatian"
+msgstr "Chorvatų"
+
+#: ../../keyboard.pm_.c:130
msgid "Israeli"
-msgstr "Izraeliečių"
+msgstr "Žydų"
-#: ../keyboard.pm_.c:107
+#: ../../keyboard.pm_.c:131
msgid "Israeli (Phonetic)"
-msgstr "Izraeliečių (Fonetinė)"
+msgstr "Žydų (Fonetinė)"
-#: ../keyboard.pm_.c:108
+#: ../../keyboard.pm_.c:134
msgid "Icelandic"
msgstr "Islandijos"
-#: ../keyboard.pm_.c:109
+#: ../../keyboard.pm_.c:135
msgid "Italian"
msgstr "Italų"
-#: ../keyboard.pm_.c:110
+#: ../../keyboard.pm_.c:136
msgid "Latin American"
msgstr "Lotynų Amerikiečių"
-#: ../keyboard.pm_.c:111
+#: ../../keyboard.pm_.c:137
msgid "Dutch"
msgstr "Danų"
-#: ../keyboard.pm_.c:112
-msgid "Lithuanian AZERTY"
-msgstr "Lietuvių AZERTY"
+#: ../../keyboard.pm_.c:138
+#, fuzzy
+msgid "Lithuanian AZERTY (old)"
+msgstr "Lietuvių (azerty)"
+
+#: ../../keyboard.pm_.c:140
+#, fuzzy
+msgid "Lithuanian AZERTY (new)"
+msgstr "Lietuvių (azerty)"
-#: ../keyboard.pm_.c:113
+#: ../../keyboard.pm_.c:141
msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Lietuvių \"number row\" QWERTY"
+msgstr "Lietuvių (balticrim) QWERTY"
-#: ../keyboard.pm_.c:114
+#: ../../keyboard.pm_.c:142
msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Lietuvių \"phonetic\" QWERTY"
+msgstr "Lietuvių (fonetinė) QWERTY"
-#: ../keyboard.pm_.c:115
-msgid "Norwegian"
-msgstr "Norvegų"
-
-#: ../keyboard.pm_.c:116
-#, fuzzy
+#: ../../keyboard.pm_.c:144
msgid "Polish (qwerty layout)"
-msgstr "Šveicarų (Vokišk. išdėstymas)"
+msgstr "Lenkų (qverty išdėstymas)"
-#: ../keyboard.pm_.c:117
-#, fuzzy
+#: ../../keyboard.pm_.c:145
msgid "Polish (qwertz layout)"
-msgstr "Šveicarų (Vokišk. išdėstymas)"
+msgstr "Lenkų (qwertz išdėstymas)"
-#: ../keyboard.pm_.c:118
+#: ../../keyboard.pm_.c:146
msgid "Portuguese"
msgstr "Portugalų"
-#: ../keyboard.pm_.c:119
+#: ../../keyboard.pm_.c:147
msgid "Canadian (Quebec)"
msgstr "Kanadiečių (Kvebeko)"
-#: ../keyboard.pm_.c:120
-msgid "Russian"
-msgstr "Rusų"
-
-#: ../keyboard.pm_.c:121
+#: ../../keyboard.pm_.c:149
msgid "Russian (Yawerty)"
msgstr "Rusiškų (Yawerty)"
-#: ../keyboard.pm_.c:122
+#: ../../keyboard.pm_.c:150
msgid "Swedish"
msgstr "Švedų"
-#: ../keyboard.pm_.c:123
+#: ../../keyboard.pm_.c:151
msgid "Slovenian"
msgstr "Slovėnų"
-#: ../keyboard.pm_.c:124
+#: ../../keyboard.pm_.c:152
msgid "Slovakian"
msgstr "Slovakų"
-#: ../keyboard.pm_.c:125
+#: ../../keyboard.pm_.c:153
msgid "Thai keyboard"
-msgstr "Taičio klaviatūra"
+msgstr "Tai klaviatūra"
-#: ../keyboard.pm_.c:126
+#: ../../keyboard.pm_.c:154
msgid "Turkish (traditional \"F\" model)"
msgstr "Turkų (paprastas \"F\" modelis)"
-#: ../keyboard.pm_.c:127
+#: ../../keyboard.pm_.c:155
msgid "Turkish (modern \"Q\" model)"
msgstr "Turkų (šiuolaik. \"Q\" modelis)"
-#: ../keyboard.pm_.c:128
+#: ../../keyboard.pm_.c:156
msgid "Ukrainian"
msgstr "Ukrainiečių"
-#: ../keyboard.pm_.c:129
-msgid "UK keyboard"
-msgstr "Didžiosios Britanijos klaviatūra"
-
-#: ../keyboard.pm_.c:130
-msgid "US keyboard"
-msgstr "JAV klaviatūra"
-
-#: ../keyboard.pm_.c:131
+#: ../../keyboard.pm_.c:159
msgid "US keyboard (international)"
msgstr "JAV klaviatūra (tarptautinė)"
-#: ../keyboard.pm_.c:132
+#: ../../keyboard.pm_.c:160
msgid "Yugoslavian (latin layout)"
msgstr "Jugoslavų (lotuniškas išdėstymas)"
@@ -3205,7 +3673,7 @@ msgstr "Jugoslavų (lotuniškas išdėstymas)"
# transliteration be used; or maybe the english text be used; as it is best
# When possible cp437 accentuated letters can be used too.
#
-#: ../lilo.pm_.c:145
+#: ../../lilo.pm_.c:176
#, c-format
msgid ""
"Welcome to LILO the operating system chooser!\n"
@@ -3216,7 +3684,7 @@ msgid ""
"default boot.\n"
"\n"
msgstr ""
-"Sveiki, besinaudojantys LILO, operacinių sistemų pasirinkimu!\n"
+"Sveiki, besinaudojantys LILO, operaciniu sistemu ikrovos tvarkykle!\n"
"\n"
"Noredami suzinoti pasirinkimu sarasa, spauskite <TAB>.\n"
"\n"
@@ -3224,271 +3692,355 @@ msgstr ""
"arba laukite %d sekundziu ijungimo pagal nutylejima.\n"
"\n"
-#: ../mouse.pm_.c:20
-msgid "No Mouse"
-msgstr "Pelės nėra"
+# 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
+# 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
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../lilo.pm_.c:431
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Sveiki, besinaudojantys GRUB, opercainiu sistemu ikrovos tvarkykle!"
-#: ../mouse.pm_.c:21
-msgid "Microsoft Rev 2.1A or higher (serial)"
-msgstr "Microsoft 2.1A arba vėlesnės Rev (serijinė)"
+#: ../../lilo.pm_.c:432
+#, c-format
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr ""
-#: ../mouse.pm_.c:22
-msgid "Logitech CC Series (serial)"
-msgstr "Logitech CC Serijos (serijinė)"
+#: ../../lilo.pm_.c:433
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr "Spauskite enter, noredami ikrauti pasirinkta OS, 'e', noredami keisti"
-#: ../mouse.pm_.c:23
-msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-msgstr "Logitech MouseMan+/FirstMouse+ (serijinė)"
+#: ../../lilo.pm_.c:434
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "komandas pries ikrova, arba 'c', komandinei eilutei iskviesti "
-#: ../mouse.pm_.c:24
-msgid "ASCII MieMouse (serial)"
-msgstr "ASCII MieMouse (serijinė)"
+#: ../../lilo.pm_.c:435
+#, c-format
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "Pasirinktas ivadas bus ikrautas automatiskai per %d sekundziu."
-#: ../mouse.pm_.c:25
-msgid "Genius NetMouse (serial)"
-msgstr "Genius NetMouse (serijinė)"
+#: ../../lilo.pm_.c:439
+msgid "not enough room in /boot"
+msgstr ""
-#: ../mouse.pm_.c:26
-msgid "Microsoft IntelliMouse (serial)"
-msgstr "Microsoft IntelliMouse (serijinė)"
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../lilo.pm_.c:518
+msgid "Desktop"
+msgstr "Darbastalis"
-#: ../mouse.pm_.c:27
-msgid "MM Series (serial)"
-msgstr "MM Series (serijinė)"
+#: ../../lilo.pm_.c:518
+msgid "Start Menu"
+msgstr "Paleidimo meniu"
-#: ../mouse.pm_.c:28
-msgid "MM HitTablet (serial)"
-msgstr "MM HitTablet (serijinė)"
+#: ../../mouse.pm_.c:21
+msgid "Sun - Mouse"
+msgstr "Sun - pelė"
-#: ../mouse.pm_.c:29
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech pelė (serijinė, seno C7 tipo)"
+#: ../../mouse.pm_.c:23
+msgid "Apple ADB Mouse"
+msgstr "Apple ADB pelė"
-#: ../mouse.pm_.c:30
-msgid "Logitech MouseMan/FirstMouse (serial)"
-msgstr "Logitech MouseMan/FirstMouse (serijinė)"
+#: ../../mouse.pm_.c:24
+msgid "Apple ADB Mouse (2 Buttons)"
+msgstr "Apple ADB pelė (2 klavišai)"
-#: ../mouse.pm_.c:31
-msgid "Generic Mouse (serial)"
-msgstr "Paprasta pelė (serijinė)"
+#: ../../mouse.pm_.c:25
+msgid "Apple ADB Mouse (3+ Buttons)"
+msgstr "Apple ADB pelė (3+ klavišai)"
-#: ../mouse.pm_.c:32
-msgid "Microsoft compatible (serial)"
-msgstr "Suderinama su Microsoft (serijinė)"
+#: ../../mouse.pm_.c:26
+msgid "Apple USB Mouse"
+msgstr "Apple USB pelė"
-#: ../mouse.pm_.c:33
-msgid "Generic 3 Button Mouse (serial)"
-msgstr "Paprasta 3 klavišų pelė (serijinė)"
+#: ../../mouse.pm_.c:27
+msgid "Apple USB Mouse (2 Buttons)"
+msgstr "Apple USB pelė (2 klavišai)"
-#: ../mouse.pm_.c:34
-msgid "Mouse Systems (serial)"
-msgstr "Pelės tipo sistema (serijinė)"
+#: ../../mouse.pm_.c:28
+msgid "Apple USB Mouse (3+ Buttons)"
+msgstr "Apple USB pelė (3+ klavišai)"
-#: ../mouse.pm_.c:35
+#: ../../mouse.pm_.c:30
msgid "Generic Mouse (PS/2)"
msgstr "Paprasta pelė (PS/2)"
-#: ../mouse.pm_.c:36
+#: ../../mouse.pm_.c:31
msgid "Logitech MouseMan/FirstMouse (ps/2)"
msgstr "Logitech MouseMan/FirstMouse (ps/2)"
-#: ../mouse.pm_.c:37
+#: ../../mouse.pm_.c:32
msgid "Generic 3 Button Mouse (PS/2)"
msgstr "Paprasta 3 klavišų pelė (PS/2)"
-#: ../mouse.pm_.c:38
+#: ../../mouse.pm_.c:33
msgid "ALPS GlidePoint (PS/2)"
msgstr "ALPS GlidePoint (PS/2)"
-#: ../mouse.pm_.c:39
+#: ../../mouse.pm_.c:34
msgid "Logitech MouseMan+/FirstMouse+ (PS/2)"
msgstr "Logitech MouseMan+/FirstMouse+ (PS/2)"
-#: ../mouse.pm_.c:40
+#: ../../mouse.pm_.c:35
msgid "Kensington Thinking Mouse (PS/2)"
msgstr "Kensington Thinking Mouse (PS/2)"
-#: ../mouse.pm_.c:41
+#: ../../mouse.pm_.c:36
msgid "ASCII MieMouse (PS/2)"
msgstr "ASCII MieMouse (PS/2)"
-#: ../mouse.pm_.c:42
+#: ../../mouse.pm_.c:37
msgid "Genius NetMouse (PS/2)"
msgstr "Genius NetMouse (PS/2 "
-#: ../mouse.pm_.c:43
+#: ../../mouse.pm_.c:38
msgid "Genius NetMouse Pro (PS/2)"
msgstr "Genius NetMouse Pro (PS/2)"
-#: ../mouse.pm_.c:44
+#: ../../mouse.pm_.c:39
msgid "Genius NetScroll (PS/2)"
msgstr "Genius NetScroll (PS/2)"
-#: ../mouse.pm_.c:45
+#: ../../mouse.pm_.c:40
msgid "Microsoft IntelliMouse (PS/2)"
msgstr "Microsoft IntelliMouse (PS/2)"
-#: ../mouse.pm_.c:46
+#: ../../mouse.pm_.c:41
msgid "ATI Bus Mouse"
msgstr "ATI pelė"
-#: ../mouse.pm_.c:47
+#: ../../mouse.pm_.c:42
msgid "Microsoft Bus Mouse"
msgstr "Microsoft pelė"
-#: ../mouse.pm_.c:48
+#: ../../mouse.pm_.c:43
msgid "Logitech Bus Mouse"
msgstr "Logitech pelė"
-#: ../mouse.pm_.c:49
+#: ../../mouse.pm_.c:44
msgid "USB Mouse"
msgstr "USB pelė"
-#: ../mouse.pm_.c:50
+#: ../../mouse.pm_.c:45
msgid "USB Mouse (3 buttons or more)"
msgstr "USB pelė (su 3 arba daugiau klavišų)"
-#: ../partition_table.pm_.c:486
+#: ../../mouse.pm_.c:47
+msgid "No Mouse"
+msgstr "Pelės nėra"
+
+#: ../../mouse.pm_.c:48
+msgid "Microsoft Rev 2.1A or higher (serial)"
+msgstr "Microsoft 2.1A arba vėlesnės Rev (serijinė)"
+
+#: ../../mouse.pm_.c:49
+msgid "Logitech CC Series (serial)"
+msgstr "Logitech CC Serijos (serijinė)"
+
+#: ../../mouse.pm_.c:50
+msgid "Logitech MouseMan+/FirstMouse+ (serial)"
+msgstr "Logitech MouseMan+/FirstMouse+ (serijinė)"
+
+#: ../../mouse.pm_.c:51
+msgid "ASCII MieMouse (serial)"
+msgstr "ASCII MieMouse (serijinė)"
+
+#: ../../mouse.pm_.c:52
+msgid "Genius NetMouse (serial)"
+msgstr "Genius NetMouse (serijinė)"
+
+#: ../../mouse.pm_.c:53
+msgid "Microsoft IntelliMouse (serial)"
+msgstr "Microsoft IntelliMouse (serijinė)"
+
+#: ../../mouse.pm_.c:54
+msgid "MM Series (serial)"
+msgstr "MM Series (serijinė)"
+
+#: ../../mouse.pm_.c:55
+msgid "MM HitTablet (serial)"
+msgstr "MM HitTablet (serijinė)"
+
+#: ../../mouse.pm_.c:56
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech pelė (serijinė, seno C7 tipo)"
+
+#: ../../mouse.pm_.c:57
+msgid "Logitech MouseMan/FirstMouse (serial)"
+msgstr "Logitech MouseMan/FirstMouse (serijinė)"
+
+#: ../../mouse.pm_.c:58
+msgid "Generic Mouse (serial)"
+msgstr "Paprasta pelė (serijinė)"
+
+#: ../../mouse.pm_.c:59
+msgid "Microsoft compatible (serial)"
+msgstr "Suderinama su Microsoft (serijinė)"
+
+#: ../../mouse.pm_.c:60
+msgid "Generic 3 Button Mouse (serial)"
+msgstr "Paprasta 3 klavišų pelė (serijinė)"
+
+#: ../../mouse.pm_.c:61
+msgid "Mouse Systems (serial)"
+msgstr "Pelės tipo sistema (serijinė)"
+
+#: ../../my_gtk.pm_.c:459
+msgid "Is this correct?"
+msgstr "Ar taip gerai?"
+
+#: ../../partition_table.pm_.c:533
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
"to the extended partitions"
msgstr ""
-"Sričių pasiskirstymo lentelėje yra tuščios vietos, bet ji negali būti "
-"panaudota.\n"
-"Vienintelis sprendimas yra perkelti pirminius skyrius taip, kad tuščia vieta "
-"būtų šalia išplėstinių skyrių"
+"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:572
+#: ../../partition_table.pm_.c:621
#, c-format
msgid "Error reading file %s"
-msgstr "Klaida, nuskaitant %s failą"
+msgstr "Klaida, nuskaitant %s bylą"
-#: ../partition_table.pm_.c:579
+#: ../../partition_table.pm_.c:628
#, c-format
msgid "Restoring from file %s failed: %s"
-msgstr "Atstatymas iš %s failo nepavyko: %s"
+msgstr "Atstatymas iš %s bylos nepavyko: %s"
-#: ../partition_table.pm_.c:581
+#: ../../partition_table.pm_.c:630
msgid "Bad backup file"
-msgstr "Blogas atsargos failas"
+msgstr "Bloga atsarginė byla"
-#: ../partition_table.pm_.c:602
+#: ../../partition_table.pm_.c:651
#, c-format
msgid "Error writing to file %s"
-msgstr "Klaida, įrašant į failą %s"
+msgstr "Klaida, įrašant į bylą %s"
-#: ../placeholder.pm_.c:5
-#, fuzzy
+#: ../../pkgs.pm_.c:20
+msgid "mandatory"
+msgstr ""
+
+#: ../../pkgs.pm_.c:21
+msgid "must have"
+msgstr "turi turėti"
+
+#: ../../pkgs.pm_.c:22
+msgid "important"
+msgstr "svarbu"
+
+#: ../../pkgs.pm_.c:24
+msgid "very nice"
+msgstr "labai gerai"
+
+#: ../../pkgs.pm_.c:25
+msgid "nice"
+msgstr "nuostabu"
+
+#: ../../pkgs.pm_.c:26 ../../pkgs.pm_.c:27
+msgid "interesting"
+msgstr "įdomu"
+
+#: ../../pkgs.pm_.c:28 ../../pkgs.pm_.c:29 ../../pkgs.pm_.c:30
+#: ../../pkgs.pm_.c:31
+msgid "maybe"
+msgstr "gal būt"
+
+#: ../../pkgs.pm_.c:33
+msgid "i18n (important)"
+msgstr "i18n (svarbu)"
+
+#: ../../pkgs.pm_.c:34
+msgid "i18n (very nice)"
+msgstr "i18n (labai gerai)"
+
+#: ../../pkgs.pm_.c:35
+msgid "i18n (nice)"
+msgstr "i18n (nuostabu)"
+
+#: ../../placeholder.pm_.c:5
msgid "Show less"
-msgstr "Rodyti viską"
+msgstr "Rodyti mažiau"
-#: ../placeholder.pm_.c:6
+#: ../../placeholder.pm_.c:6
msgid "Show more"
-msgstr ""
+msgstr "Rodyti daugiau"
-#: ../printer.pm_.c:244
+#: ../../printer.pm_.c:244
msgid "Local printer"
-msgstr "Lokalus spausdintuvas"
+msgstr "Vietinis spausdintuvas"
-#: ../printer.pm_.c:245
+#: ../../printer.pm_.c:245
msgid "Remote lpd"
-msgstr "Nuotolintas lpd"
+msgstr "Nutolintas lpd"
-#: ../printer.pm_.c:246
+#: ../../printer.pm_.c:246
msgid "SMB/Windows 95/98/NT"
msgstr "SMB/Windows 95/98/NT"
-#: ../printer.pm_.c:247
+#: ../../printer.pm_.c:247
msgid "NetWare"
msgstr "NetWare"
-#: ../printerdrake.pm_.c:75
-msgid "Local Printer Options"
-msgstr "Lokalaus Spausdintuvo nustatymai"
-
-#: ../printerdrake.pm_.c:76
-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?"
-msgstr ""
-"Kiekviena spausdinimo eilė (į kurią yra paskiriami darba) turi\n"
-"turėti vardą (dažniausiai lp) ir su ja surištą laikmenos katalogą.\n"
-"Koks vardas ir koks katalogas turįtų būti naudojami šiai eilei?"
-
-#: ../printerdrake.pm_.c:79
-msgid "Name of queue:"
-msgstr "Eilės vardas"
-
-#: ../printerdrake.pm_.c:79
-msgid "Spool directory:"
-msgstr "Laikmenos katalogas:"
-
-#: ../printerdrake.pm_.c:90
-msgid "Select Printer Connection"
-msgstr "Pasirinkite Spausdintuvo Jungtį"
-
-#: ../printerdrake.pm_.c:91
-msgid "How is the printer connected?"
-msgstr "Kaip yra prijungtas jūsų spausdinuvas?"
-
-#: ../printerdrake.pm_.c:99
+#: ../../printerdrake.pm_.c:19
msgid "Detecting devices..."
-msgstr "Ieškoma įrenginių"
+msgstr "Ieškoma įranga"
-#: ../printerdrake.pm_.c:99
+#: ../../printerdrake.pm_.c:19
msgid "Test ports"
-msgstr "Patikrinti prievadus"
+msgstr "Patikrinti jungtis"
-#: ../printerdrake.pm_.c:112
+#: ../../printerdrake.pm_.c:35
#, c-format
msgid "A printer, model \"%s\", has been detected on "
msgstr "\"%s\" modelio spausdintuvas buvo aptiktas prie "
-#: ../printerdrake.pm_.c:119
+#: ../../printerdrake.pm_.c:44
msgid "Local Printer Device"
-msgstr "Lokalus Spausdinimo įrenginys"
+msgstr "Vietinio spausdintuvo jungtis"
-#: ../printerdrake.pm_.c:120
+#: ../../printerdrake.pm_.c:45
msgid ""
-"What device is your printer connected to \n"
+"What device is your printer connected to \n"
"(note that /dev/lp0 is equivalent to LPT1:)?\n"
msgstr ""
"Prie kurio įrenginio yra prijungtas jūsų spausdintuvas\n"
"(atminkite kad /dev/lp0 yra LPT1 ekvivalentas)?\n"
-#: ../printerdrake.pm_.c:121
-msgid "Printer Device:"
-msgstr "Spausdinimo įrenginys:"
+#: ../../printerdrake.pm_.c:47
+msgid "Printer Device"
+msgstr "Spausdintuvo įrenginys"
-#: ../printerdrake.pm_.c:125
+#: ../../printerdrake.pm_.c:62
msgid "Remote lpd Printer Options"
-msgstr "Nuotolinto lpd Spausdintuvo Nustatymai"
+msgstr "Nutolinto lpd Spausdintuvo Nustatymai"
-#: ../printerdrake.pm_.c:126
+#: ../../printerdrake.pm_.c:63
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
"on that server which jobs should be placed in."
msgstr ""
-"Kad galėtumėte naudoti lpd spausdinimo eilutę jūs turite\n"
-"nurodyti to serverio kompiuterio vardą ir eilės vardą kurioje\n"
+"Norėdami naudotis lpd spausdinimo eilute, jūs turite\n"
+"nurodyti to serverio kompiuterio vardą ir eilės vardą, kurioje\n"
"bus talpinami darbai."
-#: ../printerdrake.pm_.c:129
-msgid "Remote hostname:"
-msgstr "Nuotolinio kompiuterio vardas"
+#: ../../printerdrake.pm_.c:66
+msgid "Remote hostname"
+msgstr "Nutolinto kompiuterio vardas"
-#: ../printerdrake.pm_.c:129
+#: ../../printerdrake.pm_.c:67
msgid "Remote queue"
msgstr "Nuotolinė eilė"
-#: ../printerdrake.pm_.c:134
+#: ../../printerdrake.pm_.c:75
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) Spausdintuvo nustatymai"
-#: ../printerdrake.pm_.c:135
+#: ../../printerdrake.pm_.c:76
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (Note! It may be different from its\n"
@@ -3496,112 +4048,132 @@ msgid ""
"well as the share name for the printer you wish to access and any\n"
"applicable user name, password, and workgroup information."
msgstr ""
-"Kad galėtumėte spausdinti į SMB spausdintuvą jūs turite\n"
-"nurodyti kompiuterio vardą (Atkreipkite dėmesį kad jis gali skirtis nuo\n"
+"Norėdami spausdinti į SMB spausdintuvą jūs turite\n"
+"nurodyti kompiuterio vardą, (Atkreipkite dėmesį kad jis gali skirtis nuo\n"
"jo TCP/IP kompiuterio vardo), spausdintuvo serverio IP adresą, spausdintuvo\n"
"dalinimo vardą, vartotojo vardą, slaptažodį ir darbo grupės vardą"
-#: ../printerdrake.pm_.c:140
-msgid "SMB server IP:"
-msgstr "SMB serverio IP:"
-
-#: ../printerdrake.pm_.c:140
-msgid "SMB server host:"
+#: ../../printerdrake.pm_.c:81
+msgid "SMB server host"
msgstr "SMB serverio pavadinimas"
-#: ../printerdrake.pm_.c:141 ../printerdrake.pm_.c:163
-msgid "Password:"
-msgstr "Slaptažodis:"
+#: ../../printerdrake.pm_.c:82
+msgid "SMB server IP"
+msgstr "SMB serverio IP"
-#: ../printerdrake.pm_.c:141
-msgid "Share name:"
-msgstr "Dalinimo vardas:"
+#: ../../printerdrake.pm_.c:83
+msgid "Share name"
+msgstr "Dalinimo vardas"
-#: ../printerdrake.pm_.c:141 ../printerdrake.pm_.c:163
-msgid "User name:"
-msgstr "Vartotojo vardas:"
+#: ../../printerdrake.pm_.c:86
+msgid "Workgroup"
+msgstr "Darbo grupė"
-#: ../printerdrake.pm_.c:142
-msgid "Workgroup:"
-msgstr "Darbo grupė:"
-
-#: ../printerdrake.pm_.c:157
+#: ../../printerdrake.pm_.c:102
msgid "NetWare Printer Options"
-msgstr "NetWare Spusdintuvo Nustatymai"
+msgstr "NetWare Spausdintuvo Nustatymai"
-#: ../printerdrake.pm_.c:158
+#: ../../printerdrake.pm_.c:103
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (Note! it may be different from its\n"
"TCP/IP hostname!) as well as the print queue name for the printer you\n"
"wish to access and any applicable user name and password."
msgstr ""
-"Kad galėtumėte spausdinti į NetWare spausdintuvą jūs turite\n"
-"nurodyti serverio vardą (Atkreipkite dėmesį kad jis gali skirtis nuo\n"
+"Norėdami spausdinti į NetWare spausdintuvą jūs turite\n"
+"nurodyti serverio vardą, (Atkreipkite dėmesį kad jis gali skirtis nuo\n"
"jo TCP/IP kompiuterio vardo), spausdintuvo eilės vardą spausdintuvui, bei\n"
"atitinkamą vartotojo vardą ir slaptažodį"
-#: ../printerdrake.pm_.c:162
-msgid "Print Queue Name:"
-msgstr "Spausdinimo Eilutės"
+#: ../../printerdrake.pm_.c:107
+msgid "Printer Server"
+msgstr "Spausdintuvo Serveris"
-#: ../printerdrake.pm_.c:162
-msgid "Printer Server:"
-msgstr "Spausdintuvo Serveris:"
+#: ../../printerdrake.pm_.c:108
+msgid "Print Queue Name"
+msgstr "Spausdinimo eilės pavadinimas"
-#: ../printerdrake.pm_.c:173
+#: ../../printerdrake.pm_.c:121
msgid "Yes, print ASCII test page"
msgstr "Taip. Atspausdinti ASCII bandomąjį puslapį"
-#: ../printerdrake.pm_.c:174
+#: ../../printerdrake.pm_.c:122
msgid "Yes, print PostScript test page"
msgstr "Taip. Atspausdinti PostScript bandomąjį puslapį"
-#: ../printerdrake.pm_.c:175
+#: ../../printerdrake.pm_.c:123
msgid "Yes, print both test pages"
msgstr "Taip. Atspausdinti abu bandomuosius puslapius"
-#: ../printerdrake.pm_.c:183
+#: ../../printerdrake.pm_.c:130
msgid "Configure Printer"
-msgstr "Konfiguruoti spausdintuvą"
+msgstr "Nustatyti spausdintuvą"
-#: ../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:131
msgid "What type of printer do you have?"
-msgstr "Koks yra jūsų spausdintuvo tipas"
+msgstr "Koks yra jūsų spausdintuvo rūšis?"
-#: ../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:163
msgid "Printer options"
msgstr "Spausdintuvo nustatymai"
-#: ../printerdrake.pm_.c:205
+#: ../../printerdrake.pm_.c:164
msgid "Paper Size"
msgstr "Lapo dydis"
-#: ../printerdrake.pm_.c:206
+#: ../../printerdrake.pm_.c:165
msgid "Eject page after job?"
msgstr "Ar išstumti lapą po darbo?"
-#: ../printerdrake.pm_.c:209
-msgid "Fix stair-stepping text?"
-msgstr "Taisyti stair-stepping tekstą?"
-
-#: ../printerdrake.pm_.c:212
+#: ../../printerdrake.pm_.c:170
msgid "Uniprint driver options"
msgstr "Uniprint tvarkyklės nustatymai"
-#: ../printerdrake.pm_.c:213
+#: ../../printerdrake.pm_.c:171
msgid "Color depth options"
msgstr "Spalvų skaičiaus nustatymai"
-#: ../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:173
+msgid "Print text as PostScript?"
+msgstr "Spausdinti tekstą kaip PostScript?"
+
+#: ../../printerdrake.pm_.c:174
+msgid "Reverse page order"
+msgstr "Atbulinė puslapių seka"
+
+#: ../../printerdrake.pm_.c:176
+msgid "Fix stair-stepping text?"
+msgstr "Taisyti stair-stepping tekstą?"
+
+#: ../../printerdrake.pm_.c:179
+msgid "Number of pages per output pages"
+msgstr "Puslapių skaičius išvedimo lapuose "
+
+#: ../../printerdrake.pm_.c:180
+msgid "Right/Left margins in points (1/72 of inch)"
+msgstr "Kairysis/Dešinysis kraštai taškais (1/72 inčio)"
+
+#: ../../printerdrake.pm_.c:181
+msgid "Top/Bottom margins in points (1/72 of inch)"
+msgstr "Viršutinis/Apatinis kraštas taškais (1/72 inčio)"
+
+#: ../../printerdrake.pm_.c:184
+msgid "Extra GhostScript options"
+msgstr "Ekstra ghostScript nustatymai"
+
+#: ../../printerdrake.pm_.c:187
+msgid "Extra Text options"
+msgstr "Ekstra teksto nustatymai"
+
+#: ../../printerdrake.pm_.c:198
msgid "Do you want to test printing?"
-msgstr "Ar Jūs norite patikrinti spausdinimą"
+msgstr "Ar Jūs norite išbandyti spausdinimą?"
-#: ../printerdrake.pm_.c:234
+#: ../../printerdrake.pm_.c:210
msgid "Printing test page(s)..."
msgstr "Spausdinamas (-i) bandomasis puslapis (-iai)..."
-#: ../printerdrake.pm_.c:252
+#: ../../printerdrake.pm_.c:218
#, c-format
msgid ""
"Test page(s) have been sent to the printer daemon.\n"
@@ -3611,48 +4183,312 @@ msgid ""
"\n"
"Does it work properly?"
msgstr ""
-"Bandomieji puslapiai jau nusiųsti į spausdinimo programai.\n"
-"Kol pradės spausdinit gali šiek tiek užtrukti.\n"
-"Spausdinimo statusas:\n"
-"%s\n"
-"\n"
-"Ar tai gerai dirba?"
-#: ../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:222
msgid ""
"Test page(s) have been sent to the printer daemon.\n"
"This may take a little time before printer start.\n"
"Does it work properly?"
msgstr ""
-"Bandomieji puslapiai jau nusiųsti į spausdinimo programai.\n"
-"Kol pradės spausdinit gali šiek tiek užtrukti.\n"
-"Ar tai gerai dirba?"
-#: ../raid.pm_.c:36
+#: ../../printerdrake.pm_.c:238
+msgid "Printer"
+msgstr "Spausdintuvas"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Would you like to configure a printer?"
+msgstr "Ar norite nustatyti spausdintuvą?"
+
+#: ../../printerdrake.pm_.c:243
+msgid ""
+"Here are the following print queues.\n"
+"You can add some more or change the existing ones."
+msgstr ""
+"Čia yra šios spausdinimo eilės.\n"
+"Jūs galite čia prijungti daugiau arba pakeisti esamus darbus."
+
+#: ../../printerdrake.pm_.c:266 ../../printerdrake.pm_.c:272
+msgid "Select Printer Connection"
+msgstr "Pasirinkite spausdintuvo jungtį"
+
+#: ../../printerdrake.pm_.c:267
+msgid "How is the printer connected?"
+msgstr "Kur yra prijungtas jūsų spausdinuvas?"
+
+#: ../../printerdrake.pm_.c:272
+msgid "Remove queue"
+msgstr "Pašalinti darbų eilę"
+
+#: ../../printerdrake.pm_.c:273
+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ą yra paskiriami darbai) turi\n"
+"turėti vardą (dažniausiai lp) ir su ja surištą laikmenos katalogą.\n"
+"Koks vardas ir koks katalogas turįtų būti naudojami šiai eilei?"
+
+#: ../../printerdrake.pm_.c:276
+msgid "Name of queue"
+msgstr "Darbų eilės pavadinimas"
+
+#: ../../printerdrake.pm_.c:277
+msgid "Spool directory"
+msgstr "Kaupimo katalogas"
+
+#: ../../printerdrake.pm_.c:278
+msgid "Printer Connection"
+msgstr "Spausdintuvo prijungimas"
+
+#: ../../raid.pm_.c:36
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Negaliu pridėti srities prie _formated_ RAID md%d"
+msgstr "Negaliu pridėti skirsnio prie _formated_ RAID md%d"
-#: ../raid.pm_.c:106
+#: ../../raid.pm_.c:106
msgid "Can't write file $file"
-msgstr "Negaliu įrašyti failo $file"
+msgstr "Negaliu įrašyti bylos $file"
+
+#: ../../raid.pm_.c:131
+msgid "mkraid failed"
+msgstr "mkraid nepavyko"
-#: ../raid.pm_.c:146
+#: ../../raid.pm_.c:131
+msgid "mkraid failed (maybe raidtools are missing?)"
+msgstr "mkraid nepavyko (gal būt nėra raidtools?)"
+
+#: ../../raid.pm_.c:147
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "%d lygio RAID nepakanka sričių\n"
-#: ../standalone/draksec_.c:28
+#: ../../services.pm_.c:14
+msgid "Anacron a periodic command scheduler."
+msgstr "Anacron yr periodinis komandų tvarkiklis."
+
+#: ../../services.pm_.c:15
+msgid ""
+"apmd is used for monitoring batery status and logging it via syslog.\n"
+"It can also be used for shutting down the machine when the battery is low."
+msgstr ""
+"apmd naudojamas akumuliatoriaus būsenai nustatyti per syslog.\n"
+"jis taip pat gali būti naudojamas kompiuterio išjungimui prie žemo akum. "
+"lygio."
+
+#: ../../services.pm_.c:17
+msgid ""
+"Runs commands scheduled by the at command at the time specified when\n"
+"at was run, and runs batch commands when the load average is low enough."
+msgstr ""
+
+#: ../../services.pm_.c:19
+msgid ""
+"cron is a standard UNIX program that runs user-specified programs\n"
+"at periodic scheduled times. vixie cron adds a number of features to the "
+"basic\n"
+"UNIX cron, including better security and more powerful configuration options."
+msgstr ""
+
+#: ../../services.pm_.c:22
+msgid ""
+"GPM adds mouse support to text-based Linux applications such the\n"
+"Midnight Commander. It also allows mouse-based console cut-and-paste "
+"operations,\n"
+"and includes support for pop-up menus on the console."
+msgstr ""
+
+#: ../../services.pm_.c:25
+msgid ""
+"Apache is a World Wide Web server. It is used to serve HTML files\n"
+"and CGI."
+msgstr ""
+
+#: ../../services.pm_.c:27
+msgid ""
+"The internet superserver daemon (commonly called inetd) starts a\n"
+"variety of other internet services as needed. It is responsible for "
+"starting\n"
+"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
+"disables\n"
+"all of the services it is responsible for."
+msgstr ""
+
+#: ../../services.pm_.c:31
+msgid ""
+"This package loads the selected keyboard map as set in\n"
+"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
+"You should leave this enabled for most machines."
+msgstr ""
+"Šis paketas užkrauna pasirinktą klavietūros išdėstymą, kuris\n"
+"nurodytas /etc/sysconfig/keyboard byloje. Jis gali būti pasirinktas su\n"
+"kbdconfig utėle. Daugumoje kompiuterių ji turi būti prieinama."
+
+#: ../../services.pm_.c:34
+msgid ""
+"lpd is the print daemon required for lpr to work properly. It is\n"
+"basically a server that arbitrates print jobs to printer(s)."
+msgstr ""
+
+#: ../../services.pm_.c:36
+msgid ""
+"named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
+"host names to IP addresses."
+msgstr ""
+
+#: ../../services.pm_.c:38
+msgid ""
+"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
+"Manager/Windows), and NCP (NetWare) mount points."
+msgstr ""
+"Prijungia ir Atjungia visas Tinklo Bylų Sistemas (NFS), SMB (Lan\n"
+"Tvarkyklė/Windows), ir NCP (NetWare) prijungimo vietas."
+
+#: ../../services.pm_.c:40
+msgid ""
+"Activates/Deactivates all network interfaces configured to start\n"
+"at boot time."
+msgstr ""
+"Įjungia/Išjungia visas tinklo jungtis, nustatytas paleisti\n"
+"įkrovos metu."
+
+#: ../../services.pm_.c:42
+msgid ""
+"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
+"This service provides NFS server functionality, which is configured via the\n"
+"/etc/exports file."
+msgstr ""
+
+#: ../../services.pm_.c:45
+msgid ""
+"NFS is a popular protocol for file sharing across TCP/IP\n"
+"networks. This service provides NFS file locking functionality."
+msgstr ""
+
+#: ../../services.pm_.c:47
+msgid ""
+"PCMCIA support is usually to support things like ethernet and\n"
+"modems in laptops. It won't get started unless configured so it is safe to "
+"have\n"
+"it installed on machines that don't need it."
+msgstr ""
+
+#: ../../services.pm_.c:50
+msgid ""
+"The portmapper manages RPC connections, which are used by\n"
+"protocols such as NFS and NIS. The portmap server must be running on "
+"machines\n"
+"which act as servers for protocols which make use of the RPC mechanism."
+msgstr ""
+
+#: ../../services.pm_.c:53
+msgid ""
+"Postfix is a Mail Transport Agent, which is the program that\n"
+"moves mail from one machine to another."
+msgstr ""
+"Postfix yra Pašto perkėlimo agentas, naudojamas paštui\n"
+"perkelti iš vieno kompiuterio į kitą."
+
+#: ../../services.pm_.c:55
+msgid ""
+"Saves and restores system entropy pool for higher quality random\n"
+"number generation."
+msgstr ""
+
+#: ../../services.pm_.c:57
+msgid ""
+"The routed daemon allows for automatic IP router table updated via\n"
+"the RIP protocol. While RIP is widely used on small networks, more complex\n"
+"routing protocols are needed for complex networks."
+msgstr ""
+
+#: ../../services.pm_.c:60
+msgid ""
+"The rstat protocol allows users on a network to retrieve\n"
+"performance metrics for any machine on that network."
+msgstr ""
+
+#: ../../services.pm_.c:62
+msgid ""
+"The rusers protocol allows users on a network to identify who is\n"
+"logged in on other responding machines."
+msgstr ""
+
+#: ../../services.pm_.c:64
+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 ""
+"Šis rwho protokolas leidžia nutolusiems vartotojams gauti\n"
+"visų prisijungusių prie rwho domeno vartotojų sąrašą (panašiai kaip finger)."
+
+#: ../../services.pm_.c:66
+msgid ""
+"Syslog is the facility by which many daemons use to log messages\n"
+"to various system log files. It is a good idea to always run syslog."
+msgstr ""
+"Syslog yra jungiamoji vieta, kurią daugelis domenų naudoja log bylų\n"
+"išsaugojimui. Visada yra gera mintis paleisti syslog."
+
+#: ../../services.pm_.c:68
+msgid "This startup script try to load your modules for your usb mouse."
+msgstr "Šis paleidimo skriptas pabandys paleisti Jūsų usb pelės modulius."
+
+#: ../../services.pm_.c:69
+msgid "Starts and stops the X Font Server at boot time and shutdown."
+msgstr "Paleidžia ir sustabdo X šriftų serverį pakrovimo metu ir išjungiant."
+
+#: ../../services.pm_.c:92
+msgid "Choose which services should be automatically started at boot time"
+msgstr "Pasirinkite kokias tarnybas po perkrovimo paleisti automatiškai"
+
+#: ../../silo.pm_.c:116
+#, c-format
+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"
+
+#: ../../standalone/drakboot_.c:23
+msgid "Configure LILO/GRUB"
+msgstr "Nustatyti LILO/GRUB"
+
+#: ../../standalone/drakboot_.c:24
+msgid "Create a boot floppy"
+msgstr "Sukurti įkrovos diskelį"
+
+#: ../../standalone/drakboot_.c:25
+msgid "Format floppy"
+msgstr "Sužymėti diskelį"
+
+#: ../../standalone/drakboot_.c:36
+msgid "Choice"
+msgstr "Pasirinkimas"
+
+#: ../../standalone/draksec_.c:28
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 reikai būti atsargiam. Tai neturėtų būti naudijama kompiuteriuse\n"
+"bet reikia būti atsargiam. Tai neturėtų būti naudojama kompiuteriuse,\n"
"susijusiuose su kitais (pvz Internetu). Čia nėra slaptažodžių."
-#: ../standalone/draksec_.c:31
+#: ../../standalone/draksec_.c:31
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -3660,291 +4496,471 @@ msgstr ""
"Dabar slaptažodžiai yra įjungti bet naudoti kaip tinklinį kompiuterį dar "
"nerekomenduojama."
-#: ../standalone/draksec_.c:32
+#: ../../standalone/draksec_.c:32
msgid ""
"Few improvements for this security level, the main one is that there are\n"
"more security warnings and checks."
msgstr ""
-"Šiame saugumo lygįje yra keleta daugiau perspėjimų ir suagumo patikrinimų."
+"Šiame saugumo lygyje yra keletas daugiau perspėjimų ir saugumo patikrinimų."
-#: ../standalone/draksec_.c:34
+#: ../../standalone/draksec_.c:34
msgid ""
"This is the standard security recommended for a computer that will be used\n"
"to connect to the Internet as a client. There are now security checks. "
msgstr ""
-"Šis saugumo lygis yra standartinis. Jį jau galime naudoti pasijungti į "
-"Internet\n"
-"kaip klientui."
+"Šis saugumo lygis yra standartinis. Jį jau galime naudoti prisijungti į "
+"Internetą\n"
+"kaip klientas."
-#: ../standalone/draksec_.c:36
+#: ../../standalone/draksec_.c:36
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"
"connections from many clients. "
msgstr ""
-"Šiame saugumo lygyje kompiuterį jau galime naudoti kaip serverį kuris\n"
-"leidžia prisijungti kietiem sklientams."
+"Šiame saugumo lygyje kompiuterį jau galime naudoti kaip serverį, kuris\n"
+"leidžia prisijungti kitiems klientams."
-#: ../standalone/draksec_.c:39
+#: ../../standalone/draksec_.c:39
msgid ""
"We take level 4 features, but now the system is entirely closed.\n"
"Security features are at their maximum."
msgstr ""
-"Dabar sistema jau yra uždaryta iš vidaus\n"
-"Dabar saugumo lygis yra maksimalus."
+"Dabar naudojami lygio privalumai,bet sistema yra visiškai uždaryta.\n"
+"Saugumo privalumai yra maksimalūs."
-#: ../standalone/draksec_.c:49
+#: ../../standalone/draksec_.c:49
msgid "Setting security level"
msgstr "Nustatomas saugumo lygis"
-#: ../standalone/drakxconf_.c:21
+#: ../../standalone/drakxconf_.c:21
msgid "Choose the tool you want to use"
msgstr "Pasirinkite kurį įrankį naudosite"
-#: ../standalone/drakxservices_.c:21
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Pasirinkite kokius servisus po persikrovimo startuoti automatiškai"
+#: ../../standalone/keyboarddrake_.c:23
+msgid "What is your keyboard layout?"
+msgstr "Koks Jūsų klaviatūros išdėstymas"
-#: ../standalone/mousedrake_.c:30
+#: ../../standalone/mousedrake_.c:25
+msgid "What is the type of your mouse?"
+msgstr "Kokia Jūsų pelės rūšis?"
+
+#: ../../standalone/mousedrake_.c:30
msgid "no serial_usb found\n"
msgstr "serial_usb nerasta\n"
-#: ../standalone/mousedrake_.c:35
+#: ../../standalone/mousedrake_.c:35
msgid "Emulate third button?"
msgstr "Ar emuliuoti trečią klavišą?"
-#: ../standalone/rpmdrake_.c:25
-#, fuzzy
+#: ../../standalone/mousedrake_.c:39
+msgid "Which serial port is your mouse connected to?"
+msgstr "Prie kurios ser. jungties prijungta Jūsų pelė?"
+
+#: ../../standalone/rpmdrake_.c:25
msgid "reading configuration"
-msgstr "Patikrinti konfiguraciją"
+msgstr "skaitomi nustatymai"
-#: ../standalone/rpmdrake_.c:45 ../standalone/rpmdrake_.c:50
-#: ../standalone/rpmdrake_.c:253
+#: ../../standalone/rpmdrake_.c:45 ../../standalone/rpmdrake_.c:50
+#: ../../standalone/rpmdrake_.c:253
msgid "File"
-msgstr ""
+msgstr "Byla"
-#: ../standalone/rpmdrake_.c:48 ../standalone/rpmdrake_.c:229
-#: ../standalone/rpmdrake_.c:253 ../standalone/rpmdrake_.c:269
+#: ../../standalone/rpmdrake_.c:48 ../../standalone/rpmdrake_.c:229
+#: ../../standalone/rpmdrake_.c:253 ../../standalone/rpmdrake_.c:269
msgid "Search"
-msgstr ""
+msgstr "Ieškoti"
-#: ../standalone/rpmdrake_.c:49 ../standalone/rpmdrake_.c:56
-#, fuzzy
+#: ../../standalone/rpmdrake_.c:49 ../../standalone/rpmdrake_.c:56
msgid "Package"
-msgstr "Blogas paketas"
+msgstr "Paketas"
-#: ../standalone/rpmdrake_.c:51
-#, fuzzy
+#: ../../standalone/rpmdrake_.c:51
msgid "Text"
-msgstr "ekspertas"
+msgstr "tekstas"
-#: ../standalone/rpmdrake_.c:53
-#, fuzzy
+#: ../../standalone/rpmdrake_.c:53
msgid "Tree"
-msgstr "Graikų"
+msgstr "Medis"
-#: ../standalone/rpmdrake_.c:54
+#: ../../standalone/rpmdrake_.c:54
msgid "Sort by"
-msgstr ""
+msgstr "Rūšiuoti pagal"
-#: ../standalone/rpmdrake_.c:55
+#: ../../standalone/rpmdrake_.c:55
msgid "Category"
-msgstr ""
+msgstr "Kategorija"
-#: ../standalone/rpmdrake_.c:58
-#, fuzzy
+#: ../../standalone/rpmdrake_.c:58
msgid "See"
-msgstr "Serverinė"
+msgstr "Pasižiūrėti"
-#: ../standalone/rpmdrake_.c:59 ../standalone/rpmdrake_.c:163
-#, fuzzy
+#: ../../standalone/rpmdrake_.c:59 ../../standalone/rpmdrake_.c:163
msgid "Installed packages"
-msgstr "Įdiegiamas paketas %s"
+msgstr "Įdiegti paketai"
-#: ../standalone/rpmdrake_.c:60
-#, fuzzy
+#: ../../standalone/rpmdrake_.c:60
msgid "Available packages"
-msgstr "Ieškoma galimų paketų"
+msgstr "Prieinami paketai"
-#: ../standalone/rpmdrake_.c:62
+#: ../../standalone/rpmdrake_.c:62
msgid "Show only leaves"
-msgstr ""
+msgstr "Rodyti tik lapus"
-#: ../standalone/rpmdrake_.c:67
+#: ../../standalone/rpmdrake_.c:67
msgid "Expand all"
-msgstr ""
+msgstr "Išplėsti visus"
-#: ../standalone/rpmdrake_.c:68
-#, fuzzy
+#: ../../standalone/rpmdrake_.c:68
msgid "Collapse all"
-msgstr "Išvalyti viską"
+msgstr "Sutraukit visus"
-#: ../standalone/rpmdrake_.c:70
-#, fuzzy
+#: ../../standalone/rpmdrake_.c:70
msgid "Configuration"
-msgstr "Patikrinti konfiguraciją"
+msgstr "Nustatymai"
-#: ../standalone/rpmdrake_.c:71
+#: ../../standalone/rpmdrake_.c:71
msgid "Add location of packages"
-msgstr ""
+msgstr "Pridėti paketų suradimo vietą"
-#: ../standalone/rpmdrake_.c:75
+#: ../../standalone/rpmdrake_.c:75
msgid "Update location"
-msgstr ""
+msgstr "Atnaujinti suradimo vietą"
-#: ../standalone/rpmdrake_.c:79 ../standalone/rpmdrake_.c:328
-#, fuzzy
+#: ../../standalone/rpmdrake_.c:79 ../../standalone/rpmdrake_.c:328
msgid "Remove"
-msgstr "Išmesti įrašą"
+msgstr "Išmesti"
-#: ../standalone/rpmdrake_.c:100
+#: ../../standalone/rpmdrake_.c:100
msgid "Configuration: Add Location"
-msgstr ""
+msgstr "Nustatymai: Pridėti suradimo vietą"
-#: ../standalone/rpmdrake_.c:101
-msgid "Expand Tree"
-msgstr ""
-
-#: ../standalone/rpmdrake_.c:102
-msgid "Collapse Tree"
-msgstr ""
-
-#: ../standalone/rpmdrake_.c:103
-#, fuzzy
+#: ../../standalone/rpmdrake_.c:103
msgid "Find Package"
-msgstr "Blogas paketas"
+msgstr "Rasti paketą"
-#: ../standalone/rpmdrake_.c:104
+#: ../../standalone/rpmdrake_.c:104
msgid "Find Package containing file"
-msgstr ""
+msgstr "Rasti bylą su atitinkamu paketu"
-#: ../standalone/rpmdrake_.c:105
+#: ../../standalone/rpmdrake_.c:105
msgid "Toggle between Installed and Available"
-msgstr ""
+msgstr "Keisti tarp įdiegtų ir galimų"
-#: ../standalone/rpmdrake_.c:139
+#: ../../standalone/rpmdrake_.c:139
msgid "Files:\n"
-msgstr ""
+msgstr "Bylos:\n"
-#: ../standalone/rpmdrake_.c:161 ../standalone/rpmdrake_.c:209
-#, fuzzy
+#: ../../standalone/rpmdrake_.c:161 ../../standalone/rpmdrake_.c:209
msgid "Uninstall"
-msgstr "Įdiegti"
+msgstr "Išdiegti"
-#: ../standalone/rpmdrake_.c:163
-#, fuzzy
+#: ../../standalone/rpmdrake_.c:163
msgid "Choose package to install"
-msgstr "Kuriuos paketus įdiegti"
+msgstr "Pasirinkite paketą įdiegimui"
-#: ../standalone/rpmdrake_.c:190
+#: ../../standalone/rpmdrake_.c:190
msgid "Checking dependencies"
-msgstr ""
+msgstr "Patikrinkite priklausomybę"
-#: ../standalone/rpmdrake_.c:190 ../standalone/rpmdrake_.c:409
+#: ../../standalone/rpmdrake_.c:190 ../../standalone/rpmdrake_.c:409
msgid "Wait"
-msgstr ""
+msgstr "Palaukite"
-#: ../standalone/rpmdrake_.c:209
-#, fuzzy
+#: ../../standalone/rpmdrake_.c:209
msgid "The following packages are going to be uninstalled"
-msgstr "Kuriuos paketus įdiegti"
+msgstr "Sekanti paketai bus išdiegti"
-#: ../standalone/rpmdrake_.c:210
-#, fuzzy
+#: ../../standalone/rpmdrake_.c:210
msgid "Uninstalling the RPMs"
-msgstr "Įdiegiamas paketas %s"
+msgstr "Išdiegiami RPM'ai"
-#: ../standalone/rpmdrake_.c:229 ../standalone/rpmdrake_.c:269
+#: ../../standalone/rpmdrake_.c:229 ../../standalone/rpmdrake_.c:269
msgid "Regexp"
-msgstr ""
+msgstr "Regexp"
-#: ../standalone/rpmdrake_.c:229
+#: ../../standalone/rpmdrake_.c:229
msgid "Which package are looking for"
-msgstr ""
+msgstr "Kurio paketo iešote"
-#: ../standalone/rpmdrake_.c:238 ../standalone/rpmdrake_.c:262
-#: ../standalone/rpmdrake_.c:278
+#: ../../standalone/rpmdrake_.c:238 ../../standalone/rpmdrake_.c:262
+#: ../../standalone/rpmdrake_.c:278
#, c-format
msgid "%s not found"
-msgstr ""
+msgstr "%s nerastas"
-#: ../standalone/rpmdrake_.c:238 ../standalone/rpmdrake_.c:262
-#: ../standalone/rpmdrake_.c:278
+#: ../../standalone/rpmdrake_.c:238 ../../standalone/rpmdrake_.c:262
+#: ../../standalone/rpmdrake_.c:278
msgid "No match"
-msgstr ""
+msgstr "Nėra atitikmių"
-#: ../standalone/rpmdrake_.c:238 ../standalone/rpmdrake_.c:262
-#: ../standalone/rpmdrake_.c:278
+#: ../../standalone/rpmdrake_.c:238 ../../standalone/rpmdrake_.c:262
+#: ../../standalone/rpmdrake_.c:278
msgid "No more match"
-msgstr ""
+msgstr "Daugiau atitikmių nėra"
-#: ../standalone/rpmdrake_.c:246
+#: ../../standalone/rpmdrake_.c:246
msgid ""
"rpmdrake is currently in ``low memory'' mode.\n"
"I'm going to relaunch rpmdrake to allow searching files"
msgstr ""
+"rpmdrake dabar nepakanka atminties.\n"
+"Aš perstartuosiu rpmdrake kad galėtumėte ieškoti bylų"
-#: ../standalone/rpmdrake_.c:253
-msgid "Which file are you looking for"
-msgstr ""
+#: ../../standalone/rpmdrake_.c:253
+msgid "Which file are you looking for?"
+msgstr "Kurios bylos ieškote?"
-#: ../standalone/rpmdrake_.c:269
-msgid "What are looking for"
-msgstr ""
+#: ../../standalone/rpmdrake_.c:269
+msgid "What are looking for?"
+msgstr "Ko ieškote?"
-#: ../standalone/rpmdrake_.c:289
+#: ../../standalone/rpmdrake_.c:289
msgid "Give a name (eg: `extra', `commercial')"
-msgstr ""
+msgstr "Nurodykite vardą (pvz: `extra', `commercial')"
-#: ../standalone/rpmdrake_.c:291
-#, fuzzy
+#: ../../standalone/rpmdrake_.c:291
msgid "Directory"
-msgstr "Sektorius"
+msgstr "Katalogas"
-#: ../standalone/rpmdrake_.c:294
+#: ../../standalone/rpmdrake_.c:294
msgid "No cdrom available (nothing in /mnt/cdrom)"
-msgstr ""
+msgstr "Cdrom neprieinamas (nieko nėra /mnt/cdrom)"
-#: ../standalone/rpmdrake_.c:298
+#: ../../standalone/rpmdrake_.c:298
msgid "URL of the directory containing the RPMs"
-msgstr ""
+msgstr "RPM katalogo URL"
-#: ../standalone/rpmdrake_.c:299
+#: ../../standalone/rpmdrake_.c:299
msgid ""
"For FTP and HTTP, you need to give the location for hdlist\n"
"It must be relative to the URL above"
msgstr ""
+"Dėl FTP ir HTTP jūs turite nurodyti vietą kur yra hdlist\n"
+"Tai turi būti panašu į aukščiau esantį URL"
-#: ../standalone/rpmdrake_.c:302
+#: ../../standalone/rpmdrake_.c:302
msgid "Please submit the following information"
-msgstr ""
+msgstr "Prašau patvirtinti sekančią informaciją"
-#: ../standalone/rpmdrake_.c:304
-#, fuzzy, c-format
+#: ../../standalone/rpmdrake_.c:304
+#, c-format
msgid "%s is already in use"
-msgstr "Ši žymė jau naudojama"
+msgstr "%s jau naudojama"
-#: ../standalone/rpmdrake_.c:315 ../standalone/rpmdrake_.c:321
-#: ../standalone/rpmdrake_.c:329
+#: ../../standalone/rpmdrake_.c:315 ../../standalone/rpmdrake_.c:321
+#: ../../standalone/rpmdrake_.c:329
msgid "Updating the RPMs base"
-msgstr ""
+msgstr "Atnaujinama RPM bazė"
-#: ../standalone/rpmdrake_.c:328
-#, fuzzy, c-format
+#: ../../standalone/rpmdrake_.c:328
+#, c-format
msgid "Going to remove entry %s"
-msgstr "Išmesti įrašą"
+msgstr "Roušiamasi išmesti įrašą %s"
-#: ../standalone/rpmdrake_.c:360
+#: ../../standalone/rpmdrake_.c:360
msgid "Finding leaves"
-msgstr ""
+msgstr "Ieškoma lapų"
-#: ../standalone/rpmdrake_.c:360
+#: ../../standalone/rpmdrake_.c:360
msgid "Finding leaves takes some time"
-msgstr ""
+msgstr "Lapų ieškojimas šiek tiek užtruks"
+
+#~ msgid "useless"
+#~ msgstr "nenaudinga"
+
+#~ msgid "garbage"
+#~ msgstr "iškraipymai"
+
+#~ msgid "Recommended"
+#~ msgstr "Rekomenduojama"
+
+#~ 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 "Do you want to use LILO?"
+#~ msgstr "Ar norite naudoti 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 ""
+#~ "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 ""
+#~ "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 "Choose other CD to install"
+#~ msgstr "Pasirinkite kitą CD įdiegimui"
+
+#~ 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 "Help"
+#~ msgstr "Pagalba"
+
+#~ msgid "Downloading cryptographic packages"
+#~ msgstr "Parsiunčiami šifruoti paketai"
+
+#~ msgid "Setup SCSI"
+#~ msgstr "Nustatyti SCSI"
+
+#~ msgid "Which language do you want?"
+#~ msgstr "Kokios kalbos Jūs norite"
+
+#~ msgid "Which packages do you want to install"
+#~ msgstr "Kokius jūs norite įdiegti paketus"
+
+#~ msgid "Local LAN"
+#~ msgstr "Lokalus LAN"
+
+#~ msgid "Dialup with modem"
+#~ msgstr "Prisiskambinimas modemu"
+
+#~ msgid "Local Printer Options"
+#~ msgstr "Vietinio spausdintuvo nustatymai"
+
+#~ msgid "server"
+#~ msgstr "serveris"
+
+#~ msgid "expert"
+#~ msgstr "žiniukas"
+
+#~ msgid "developer"
+#~ msgstr "programuotojas"
+
+#~ msgid "beginner"
+#~ msgstr "pradedantysis"
+
+#~ msgid "Linear (needed for some SCSI drives)"
+#~ msgstr "Tiesus (reikalingas keletui SCSI kaupiklių)"
+
+#~ msgid "linear"
+#~ msgstr "Tiesus"
#~ 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 "Polish"
-#~ msgstr "Lenkų"
+#~ msgid "After %s partition %s,"
+#~ msgstr "Kada %s skirsnis %s, "
+
+#~ msgid "Size: %s MB"
+#~ msgstr "Dydis: %s MB"
+
+#~ msgid "changing type of"
+#~ msgstr "keičiamas "
+
+#~ msgid "formatting"
+#~ msgstr "sužymimas"
+
+#~ msgid "Bad kickstart file %s (failed %s)"
+#~ msgstr "Bloga kickstart byla %s (nepavyko %s)"
+
+#~ 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 "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 "User name:"
+#~ msgstr "Vartotojo vardas:"
+
+#~ msgid "Password:"
+#~ msgstr "Slaptažodis:"
+
+#~ msgid "Choose install or upgrade"
+#~ msgstr "Įdiegti ar atnaujinti"
+
+#~ msgid "What usage do you want?"
+#~ msgstr "Koks Jūsų vartojimas?"
diff --git a/perl-install/share/po/lv.po b/perl-install/share/po/lv.po
new file mode 100644
index 000000000..835afbae6
--- /dev/null
+++ b/perl-install/share/po/lv.po
@@ -0,0 +1,4947 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) 2000 Free Software Foundation, Inc.
+# Copyright (c) 2000 MandrakeSoft
+# Vitauts Stochka <vit@dpu.lv>, 2000.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX VERSION\n"
+"POT-Creation-Date: 2000-05-11 22:37+0200\n"
+"PO-Revision-Date: 1999-12-22 15:33+0100\n"
+"Last-Translator: Vitauts Stochka <vit@dpu.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:116 ../../Xconfigurator.pm_.c:228
+msgid "Generic"
+msgstr "Vispārēja"
+
+#: ../../Xconfigurator.pm_.c:165
+msgid "Graphic card"
+msgstr "Grafiskā karte"
+
+#: ../../Xconfigurator.pm_.c:165
+msgid "Select a graphic card"
+msgstr "Izvēlieties grafisko karti"
+
+#: ../../Xconfigurator.pm_.c:166
+msgid "Choose a X server"
+msgstr "Izvēlieties X serveri"
+
+#: ../../Xconfigurator.pm_.c:166
+msgid "X server"
+msgstr "X serveris"
+
+#: ../../Xconfigurator.pm_.c:190
+msgid "Select the memory size of your graphic card"
+msgstr "Izvēlieties grafiskās kartes atmiņas apjomu"
+
+#: ../../Xconfigurator.pm_.c:217
+msgid "Choose options for server"
+msgstr "Izvēlieties servera opcijas"
+
+#: ../../Xconfigurator.pm_.c:228
+msgid "Choose a monitor"
+msgstr "Izvēlieties monitoru"
+
+#: ../../Xconfigurator.pm_.c:228
+msgid "Monitor"
+msgstr "Monitors"
+
+#: ../../Xconfigurator.pm_.c:231
+msgid ""
+"The two critical parameters are the vertical refresh rate, which is the "
+"rate\n"
+"at which the whole screen is refreshed, and most importantly the horizontal\n"
+"sync rate, which is the rate at which scanlines are displayed.\n"
+"\n"
+"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
+"range\n"
+"that is beyond the capabilities of your monitor: you may damage your "
+"monitor.\n"
+" If in doubt, choose a conservative setting."
+msgstr ""
+"Svarīgi parametri ir vertikālā pārzīmēšanas frekvence, kas nosaka visa\n"
+"ekrāna pārzīmēšanas biežumu, un horizontālās sinhronizācijas\n"
+"frekvence, kas nosaka skanēšanas līniju parādīšanas biežumu.\n"
+"\n"
+"Ir ĻOTI SVARĪGI, lai jūs nenorādītu monitora tipu, kura sinhronizācijas\n"
+"frekvence pārsniedz jūsu monitora iespējas: jūs varat sabojāt savu "
+"monitoru.\n"
+" Ja jūs šaubāties, izvēlieties konservatīvāko variantu."
+
+#: ../../Xconfigurator.pm_.c:238
+msgid "Horizontal refresh rate"
+msgstr "Horizontālā frekvence"
+
+#: ../../Xconfigurator.pm_.c:238
+msgid "Vertical refresh rate"
+msgstr "Vertikālā frekvence"
+
+#: ../../Xconfigurator.pm_.c:277
+msgid "Monitor not configured"
+msgstr "Monitors nav konfigurēts"
+
+#: ../../Xconfigurator.pm_.c:280
+msgid "Graphic card not configured yet"
+msgstr "Grafiskā karte pagaidām nav konfigurēta"
+
+#: ../../Xconfigurator.pm_.c:283
+msgid "Resolutions not chosen yet"
+msgstr "Izšķirtspējas pagaidām nav izvēlētas"
+
+#: ../../Xconfigurator.pm_.c:296
+msgid "Do you want to test the configuration?"
+msgstr "Vai vēlaties izmēģināt šo konfigurāciju?"
+
+#: ../../Xconfigurator.pm_.c:300
+msgid "Warning: testing is dangerous on this graphic card"
+msgstr "Brīdinājums: šīs grafiskās kartes testēšana ir bīstama"
+
+#: ../../Xconfigurator.pm_.c:303
+msgid "Test of the configuration"
+msgstr "Testēt konfigurāciju"
+
+#: ../../Xconfigurator.pm_.c:342
+msgid ""
+"\n"
+"try to change some parameters"
+msgstr ""
+"\n"
+"mēģiniet izmainīt dažus parametrus"
+
+#: ../../Xconfigurator.pm_.c:342
+msgid "An error has occurred:"
+msgstr "Atklāta kļūda:"
+
+#: ../../Xconfigurator.pm_.c:365
+#, c-format
+msgid "Leaving in %d seconds"
+msgstr "Pārtraukšu pēc %d sekundēm"
+
+#: ../../Xconfigurator.pm_.c:369
+msgid "Is this the correct setting?"
+msgstr "Vai tā ir pareizi?"
+
+#: ../../Xconfigurator.pm_.c:377
+msgid "An error has occurred, try to change some parameters"
+msgstr "Atklāta kļūda, mēģiniet izmainīt dažus parametrus"
+
+#: ../../Xconfigurator.pm_.c:385 ../../Xconfigurator.pm_.c:558
+msgid "Automatic resolutions"
+msgstr "Automātiskas izšķirtspējas"
+
+#: ../../Xconfigurator.pm_.c:386
+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 ""
+"Lai sameklētu pieejamās izšķirtspējas, tiks izmēģināti dažādi\n"
+"varianti. Attēls uz ekrāna var pazust...\n"
+"Ja vēlaties, varat to izslēgt. Kad pārbaude beigsies, jūs dzirdēsit\n"
+"skaņas signālu"
+
+#: ../../Xconfigurator.pm_.c:441 ../../printerdrake.pm_.c:167
+msgid "Resolution"
+msgstr "Izšķirtspēja"
+
+#: ../../Xconfigurator.pm_.c:476
+msgid "Choose the resolution and the color depth"
+msgstr "Izvēlieties izšķirtspēju un krāsu dziļumu"
+
+#: ../../Xconfigurator.pm_.c:478
+#, c-format
+msgid "Graphic card: %s"
+msgstr "Grafiskā karte: %s"
+
+#: ../../Xconfigurator.pm_.c:479
+#, c-format
+msgid "XFree86 server: %s"
+msgstr "XFree86 serveris: %s"
+
+#: ../../Xconfigurator.pm_.c:488
+msgid "Show all"
+msgstr "Parādīt visu"
+
+#: ../../Xconfigurator.pm_.c:512
+msgid "Resolutions"
+msgstr "Izšķirtspējas"
+
+#: ../../Xconfigurator.pm_.c:559
+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 ""
+"Es varu mēģināt sameklēt pieejamās izšķirtspējas (piem.: 800x600).\n"
+"Tomēr reizēm tas var uzkārt jūsu datoru.\n"
+"Vai vēlaties pamēģināt?"
+
+#: ../../Xconfigurator.pm_.c:564
+msgid ""
+"No valid modes found\n"
+"Try with another video card or monitor"
+msgstr ""
+"Nav atrasts neviens derīgs režīms\n"
+"Pamēģiniet ar citu video karti vai monitoru"
+
+#: ../../Xconfigurator.pm_.c:904
+#, c-format
+msgid "Keyboard layout: %s\n"
+msgstr "Tastatūras izkārtojums: %s\n"
+
+#: ../../Xconfigurator.pm_.c:905
+#, c-format
+msgid "Mouse type: %s\n"
+msgstr "Peles tips: %s\n"
+
+#: ../../Xconfigurator.pm_.c:906
+#, c-format
+msgid "Mouse device: %s\n"
+msgstr "Peles ierīce: %s\n"
+
+#: ../../Xconfigurator.pm_.c:907
+#, c-format
+msgid "Monitor: %s\n"
+msgstr "Monitors: %s\n"
+
+#: ../../Xconfigurator.pm_.c:908
+#, c-format
+msgid "Monitor HorizSync: %s\n"
+msgstr "Monitora horizontālā frekv.: %s\n"
+
+#: ../../Xconfigurator.pm_.c:909
+#, c-format
+msgid "Monitor VertRefresh: %s\n"
+msgstr "Monitora vertikālā frekv.: %s\n"
+
+#: ../../Xconfigurator.pm_.c:910
+#, c-format
+msgid "Graphic card: %s\n"
+msgstr "Grafiskā karte: %s\n"
+
+#: ../../Xconfigurator.pm_.c:911
+#, c-format
+msgid "Graphic memory: %s kB\n"
+msgstr "Grafiskā atmiņa: %s kB\n"
+
+#: ../../Xconfigurator.pm_.c:912
+#, c-format
+msgid "XFree86 server: %s\n"
+msgstr "XFree86 serveris: %s\n"
+
+#: ../../Xconfigurator.pm_.c:927
+msgid "Preparing X-Window configuration"
+msgstr "Gatavoju X-Window konfigurāciju"
+
+#: ../../Xconfigurator.pm_.c:941
+msgid "Change Monitor"
+msgstr "Monitora maiņa"
+
+#: ../../Xconfigurator.pm_.c:942
+msgid "Change Graphic card"
+msgstr "Grafiskās kartes maiņa"
+
+#: ../../Xconfigurator.pm_.c:943
+msgid "Change Server options"
+msgstr "Servera opciju maiņa"
+
+#: ../../Xconfigurator.pm_.c:944
+msgid "Change Resolution"
+msgstr "Izšķirtspējas maiņa"
+
+#: ../../Xconfigurator.pm_.c:945
+msgid "Automatical resolutions search"
+msgstr "Automātiska izšķirtspēju meklēšana"
+
+#: ../../Xconfigurator.pm_.c:949
+msgid "Show information"
+msgstr "Parādīt informāciju"
+
+#: ../../Xconfigurator.pm_.c:950
+msgid "Test again"
+msgstr "Mēģināt vēlreiz"
+
+#: ../../Xconfigurator.pm_.c:951 ../../standalone/rpmdrake_.c:46
+msgid "Quit"
+msgstr "Iziet"
+
+#: ../../Xconfigurator.pm_.c:955 ../../standalone/drakboot_.c:36
+msgid "What do you want to do?"
+msgstr "Ko jūs vēlaties darīt?"
+
+#: ../../Xconfigurator.pm_.c:962
+msgid "Forget the changes?"
+msgstr "Vai aizmirst izmaiņas?"
+
+#: ../../Xconfigurator.pm_.c:980
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Lūdzu atkārtoti iereģistrējieties %s, lai aktivizētu izmaiņas"
+
+#: ../../Xconfigurator.pm_.c:996
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Lūdzu izreģistrējieties un tad nospiediet Ctrl-Alt-BackSpace"
+
+#: ../../Xconfigurator.pm_.c:999
+msgid "X at startup"
+msgstr "X pēc startēšanas"
+
+#: ../../Xconfigurator.pm_.c:1000
+msgid ""
+"I can set up your computer to automatically start X upon booting.\n"
+"Would you like X 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 startēts X?"
+
+#: ../../Xconfigurator_consts.pm_.c:4
+msgid "256 colors (8 bits)"
+msgstr "256 krāsas (8 biti)"
+
+#: ../../Xconfigurator_consts.pm_.c:5
+msgid "32 thousand colors (15 bits)"
+msgstr "32 tūkstoši krāsu (15 biti)"
+
+#: ../../Xconfigurator_consts.pm_.c:6
+msgid "65 thousand colors (16 bits)"
+msgstr "65 tūkstoši krāsu (16 biti)"
+
+#: ../../Xconfigurator_consts.pm_.c:7
+msgid "16 million colors (24 bits)"
+msgstr "16 miljoni krāsu (24 biti)"
+
+#: ../../Xconfigurator_consts.pm_.c:8
+msgid "4 billion colors (32 bits)"
+msgstr "4 miljardi krāsu (32 biti)"
+
+#: ../../Xconfigurator_consts.pm_.c:103
+msgid "256 kB"
+msgstr "256 kB"
+
+#: ../../Xconfigurator_consts.pm_.c:104
+msgid "512 kB"
+msgstr "512 kB"
+
+#: ../../Xconfigurator_consts.pm_.c:105
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfigurator_consts.pm_.c:106
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfigurator_consts.pm_.c:107
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfigurator_consts.pm_.c:108
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfigurator_consts.pm_.c:109
+msgid "16 MB or more"
+msgstr "16 MB vai vairāk"
+
+#: ../../Xconfigurator_consts.pm_.c:114 ../../Xconfigurator_consts.pm_.c:115
+msgid "Standard VGA, 640x480 at 60 Hz"
+msgstr "Parasts VGA, 640x480 pie 60 Hz"
+
+#: ../../Xconfigurator_consts.pm_.c:116
+msgid "Super VGA, 800x600 at 56 Hz"
+msgstr "Super VGA, 800x600 pie 56 Hz"
+
+#: ../../Xconfigurator_consts.pm_.c:117
+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:118
+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:119
+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:120
+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:121
+msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+msgstr "Augstas frekvences SVGA, 1024x768 pie 70 Hz"
+
+#: ../../Xconfigurator_consts.pm_.c:122
+msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+msgstr "Multi-frekvenču, kas uztur 1280x1024 pie 60 Hz"
+
+#: ../../Xconfigurator_consts.pm_.c:123
+msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+msgstr "Multi-frekcenču, kas uztur 1280x1024 pie 74 Hz"
+
+#: ../../Xconfigurator_consts.pm_.c:124
+msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+msgstr "Multi-frekvenču, kas uztur 1280x1024 pie 76 Hz"
+
+#: ../../Xconfigurator_consts.pm_.c:125
+msgid "Monitor that can do 1600x1200 at 70 Hz"
+msgstr "Monitors, kas uztur 1600x1200 pie 70 Hz"
+
+#: ../../Xconfigurator_consts.pm_.c:126
+msgid "Monitor that can do 1600x1200 at 76 Hz"
+msgstr "Monitors, kas uztur 1600x1200 pie 76 Hz"
+
+#: ../../any.pm_.c:17
+msgid "curly"
+msgstr "sprogains"
+
+#: ../../any.pm_.c:17
+msgid "default"
+msgstr "noklusēts"
+
+#. -PO: names (tie, curly...) have corresponding icons for kdm
+#: ../../any.pm_.c:17
+msgid "tie"
+msgstr "ar kaklasaiti"
+
+#: ../../any.pm_.c:18
+msgid "brunette"
+msgstr "brunete"
+
+#: ../../any.pm_.c:18
+msgid "girl"
+msgstr "meitene"
+
+#: ../../any.pm_.c:18
+msgid "woman-blond"
+msgstr "blondīne"
+
+#: ../../any.pm_.c:19
+msgid "automagic"
+msgstr "automaģisks"
+
+#: ../../any.pm_.c:60
+msgid "First sector of boot partition"
+msgstr "Sāknējamās sadaļas pirmais sektors"
+
+#: ../../any.pm_.c:60
+msgid "First sector of drive (MBR)"
+msgstr "Diska iekārtas pirmais sektors (MBR)"
+
+#: ../../any.pm_.c:65
+msgid "LILO/grub Installation"
+msgstr "LILO/grub instalēšana"
+
+#: ../../any.pm_.c:66
+msgid "Where do you want to install the bootloader?"
+msgstr "Kur vēlaties instalēt sāknētāju?"
+
+#: ../../any.pm_.c:73
+msgid "None"
+msgstr "Neviens"
+
+#: ../../any.pm_.c:73
+msgid "Which bootloader(s) do you want to use?"
+msgstr "Kuru(s) sāknētāju(s) vēlaties izmantot?"
+
+#: ../../any.pm_.c:84
+msgid "Boot device"
+msgstr "Sāknējamā ierīce"
+
+#: ../../any.pm_.c:85
+msgid "LBA (doesn't work on old BIOSes)"
+msgstr "LBA (nedarbojas ar veciem BIOSiem)"
+
+#: ../../any.pm_.c:86
+msgid "Compact"
+msgstr "Kompakts"
+
+#: ../../any.pm_.c:86
+msgid "compact"
+msgstr "kompakts"
+
+#: ../../any.pm_.c:87 ../../install_steps_interactive.pm_.c:809
+msgid "Delay before booting default image"
+msgstr "Pauze pirms noklusētā attēla ielādes"
+
+#: ../../any.pm_.c:88
+msgid "Video mode"
+msgstr "Video režīms"
+
+#: ../../any.pm_.c:90 ../../install_steps_interactive.pm_.c:531
+#: ../../install_steps_interactive.pm_.c:654
+#: ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_interactive.pm_.c:811 ../../printerdrake.pm_.c:85
+#: ../../printerdrake.pm_.c:110 ../../standalone/adduserdrake_.c:42
+msgid "Password"
+msgstr "Parole"
+
+#: ../../any.pm_.c:91 ../../install_steps_interactive.pm_.c:655
+#: ../../install_steps_interactive.pm_.c:706
+#: ../../install_steps_interactive.pm_.c:812
+#: ../../standalone/adduserdrake_.c:43
+msgid "Password (again)"
+msgstr "Parole (atkārtoti)"
+
+#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+msgid "Restrict command line options"
+msgstr "Ierobežot komandrindas opcijas"
+
+#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+msgid "restrict"
+msgstr "ierobežot"
+
+#: ../../any.pm_.c:98
+msgid "Bootloader main options"
+msgstr "Sāknētāja galvenās opcijas"
+
+#: ../../any.pm_.c:101 ../../install_steps_interactive.pm_.c:820
+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:102 ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:719
+#: ../../install_steps_interactive.pm_.c:821
+#: ../../standalone/adduserdrake_.c:56
+msgid "Please try again"
+msgstr "Lūdzu mēģiniet vēlreiz"
+
+#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:719
+#: ../../install_steps_interactive.pm_.c:821
+#: ../../standalone/adduserdrake_.c:56
+msgid "The passwords do not match"
+msgstr "Paroles nesakrīt"
+
+#: ../../any.pm_.c:112
+msgid ""
+"Here are the different entries.\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:114 ../../install_steps_interactive.pm_.c:832
+#: ../../printerdrake.pm_.c:245 ../../standalone/rpmdrake_.c:302
+msgid "Add"
+msgstr "Pievienot"
+
+#: ../../any.pm_.c:114 ../../diskdrake.pm_.c:42
+#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:832 ../../printerdrake.pm_.c:245
+#: ../../standalone/adduserdrake_.c:36
+msgid "Done"
+msgstr "Izdarīts"
+
+#: ../../any.pm_.c:123
+msgid "Linux"
+msgstr "Linux"
+
+#: ../../any.pm_.c:123
+msgid "Other OS (windows...)"
+msgstr "Cita OS (windows...)"
+
+#: ../../any.pm_.c:123
+msgid "Which type of entry do you want to add?"
+msgstr "Kāda veida ierakstu gribat pievienot"
+
+#: ../../any.pm_.c:142 ../../install_steps_interactive.pm_.c:857
+msgid "Image"
+msgstr "Attēls"
+
+#: ../../any.pm_.c:143 ../../any.pm_.c:151
+#: ../../install_steps_interactive.pm_.c:859
+msgid "Root"
+msgstr "Sakne"
+
+#: ../../any.pm_.c:144 ../../install_steps_interactive.pm_.c:860
+msgid "Append"
+msgstr "Papildināt"
+
+#: ../../any.pm_.c:145 ../../install_steps_interactive.pm_.c:861
+msgid "Initrd"
+msgstr "Initrd"
+
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:862
+msgid "Read-write"
+msgstr "Lasīt-rakstīt"
+
+#: ../../any.pm_.c:152
+msgid "Table"
+msgstr "Tabula"
+
+#: ../../any.pm_.c:153
+msgid "Unsafe"
+msgstr "Nedrošs"
+
+#: ../../any.pm_.c:158 ../../install_steps_interactive.pm_.c:869
+msgid "Label"
+msgstr "Nosaukums"
+
+#: ../../any.pm_.c:160 ../../install_steps_interactive.pm_.c:871
+msgid "Default"
+msgstr "Noklusēts"
+
+#: ../../any.pm_.c:163 ../../install_steps_gtk.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:652
+#: ../../install_steps_interactive.pm_.c:874 ../../interactive.pm_.c:74
+#: ../../interactive.pm_.c:84 ../../interactive.pm_.c:224
+#: ../../interactive_newt.pm_.c:49 ../../interactive_newt.pm_.c:98
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:200
+#: ../../my_gtk.pm_.c:459 ../../my_gtk.pm_.c:634 ../../printerdrake.pm_.c:272
+msgid "Ok"
+msgstr "Ok"
+
+#: ../../any.pm_.c:163 ../../install_steps_interactive.pm_.c:874
+msgid "Remove entry"
+msgstr "Izdzēst ierakstu"
+
+#: ../../any.pm_.c:166 ../../install_steps_interactive.pm_.c:877
+msgid "Empty label not allowed"
+msgstr "Tukšs nosaukums nav atļauts"
+
+#: ../../any.pm_.c:167
+msgid "This label is already used"
+msgstr "Šis nosaukums jau ir izmantots"
+
+#: ../../diskdrake.pm_.c:18 ../../diskdrake.pm_.c:413
+msgid "Create"
+msgstr "Izveidot"
+
+#: ../../diskdrake.pm_.c:19
+msgid "Unmount"
+msgstr "Nomontēt"
+
+#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:415
+msgid "Delete"
+msgstr "Izdzēst"
+
+#: ../../diskdrake.pm_.c:20
+msgid "Format"
+msgstr "Formatēt"
+
+#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:590
+msgid "Resize"
+msgstr "Mainīt izmēru"
+
+#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:413
+#: ../../diskdrake.pm_.c:466
+msgid "Type"
+msgstr "Tips"
+
+#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:485
+msgid "Mount point"
+msgstr "Montēšanas punkts"
+
+#: ../../diskdrake.pm_.c:35
+msgid "Write /etc/fstab"
+msgstr "Ierakstīt /etc/fstab"
+
+#: ../../diskdrake.pm_.c:36
+msgid "Toggle to expert mode"
+msgstr "Pārslēgties uz eksperta režīmu"
+
+#: ../../diskdrake.pm_.c:37
+msgid "Toggle to normal mode"
+msgstr "Pārslēgties uz normālu režīmu"
+
+#: ../../diskdrake.pm_.c:38
+msgid "Restore from file"
+msgstr "Atjaunot no faila"
+
+#: ../../diskdrake.pm_.c:39
+msgid "Save in file"
+msgstr "Saglabāt failā"
+
+#: ../../diskdrake.pm_.c:40
+msgid "Restore from floppy"
+msgstr "Atjanot no disketes"
+
+#: ../../diskdrake.pm_.c:41
+msgid "Save on floppy"
+msgstr "Saglabāt disketē"
+
+#: ../../diskdrake.pm_.c:45
+msgid "Clear all"
+msgstr "Iztīrīt visu"
+
+#: ../../diskdrake.pm_.c:46
+msgid "Format all"
+msgstr "Formatēt visu"
+
+#: ../../diskdrake.pm_.c:47
+msgid "Auto allocate"
+msgstr "Izvietot automātiski"
+
+#: ../../diskdrake.pm_.c:50
+msgid "All primary partitions are used"
+msgstr "Visas primārās sadaļas ir izmantotas"
+
+#: ../../diskdrake.pm_.c:50
+msgid "I can't add any more partition"
+msgstr "Vairs nevaru pievienot nevienu sadaļu"
+
+#: ../../diskdrake.pm_.c:50
+msgid ""
+"To have more partitions, please delete one to be able to create an extended "
+"partition"
+msgstr ""
+"Ja vēlaties vairāk sadaļas, lūdzu izdzēsiet vienu sadaļu, lai varētu "
+"izveidot paplašinātu sadaļu"
+
+#: ../../diskdrake.pm_.c:53
+msgid "Rescue partition table"
+msgstr "Izglābt sadaļu tabulu"
+
+#: ../../diskdrake.pm_.c:54
+msgid "Undo"
+msgstr "Atcelt"
+
+#: ../../diskdrake.pm_.c:55
+msgid "Write partition table"
+msgstr "Ierakstīt sadaļu tabulu"
+
+#: ../../diskdrake.pm_.c:56
+msgid "Reload"
+msgstr "Pārlādēt"
+
+#: ../../diskdrake.pm_.c:96
+msgid "loopback"
+msgstr "loopback"
+
+#: ../../diskdrake.pm_.c:109
+msgid "Empty"
+msgstr "Tukšs"
+
+#: ../../diskdrake.pm_.c:109
+msgid "Ext2"
+msgstr "Ext2"
+
+#: ../../diskdrake.pm_.c:109
+msgid "FAT"
+msgstr "FAT"
+
+#: ../../diskdrake.pm_.c:109
+msgid "Other"
+msgstr "Cits"
+
+#: ../../diskdrake.pm_.c:109
+msgid "Swap"
+msgstr "Swap"
+
+#: ../../diskdrake.pm_.c:115
+msgid "Filesystem types:"
+msgstr "Failu sistēmu tipi:"
+
+#: ../../diskdrake.pm_.c:124
+msgid "Details"
+msgstr "Detaļas"
+
+#: ../../diskdrake.pm_.c:138
+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 ""
+"Jums ir viena liela fat sadaļa\n"
+"(parasti to izmanto Microsoft Dos/Windows).\n"
+"Iesaku vispirms izmainīt šīs sadaļas izmēru\n"
+"(uzklikšķiniet uz tās, tad uz \"Mainīt izmēru\")"
+
+#: ../../diskdrake.pm_.c:143
+msgid "Please make a backup of your data first"
+msgstr "Lūdzu vispirms izveidojiet datu rezerves kopiju"
+
+#: ../../diskdrake.pm_.c:143 ../../diskdrake.pm_.c:160
+#: ../../diskdrake.pm_.c:169 ../../diskdrake.pm_.c:517
+#: ../../diskdrake.pm_.c:546
+msgid "Read carefully!"
+msgstr "Lasiet uzmanīgi!"
+
+#: ../../diskdrake.pm_.c:146
+msgid ""
+"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
+"enough)\n"
+"at the beginning of the disk"
+msgstr ""
+"Ja gatavojaties izmantot aboot, neaizmirstiet atstāt brīvu vietu diska\n"
+"sākumā (2048 sektori ir pietiekoši)"
+
+#: ../../diskdrake.pm_.c:160
+msgid "Be careful: this operation is dangerous."
+msgstr "Esiet uzmanīgi: šī operācija ir bīstama."
+
+#: ../../diskdrake.pm_.c:197 ../../install_any.pm_.c:330
+#: ../../install_steps.pm_.c:74 ../../install_steps_interactive.pm_.c:40
+#: ../../standalone/diskdrake_.c:60 ../../standalone/rpmdrake_.c:294
+#: ../../standalone/rpmdrake_.c:304
+msgid "Error"
+msgstr "Kļūda"
+
+#: ../../diskdrake.pm_.c:221 ../../diskdrake.pm_.c:680
+msgid "Mount point: "
+msgstr "Montēšanas punkts: "
+
+#: ../../diskdrake.pm_.c:222 ../../diskdrake.pm_.c:263
+msgid "Device: "
+msgstr "Ierīce: "
+
+#: ../../diskdrake.pm_.c:223
+#, c-format
+msgid "DOS drive letter: %s (just a guess)\n"
+msgstr "DOS iekārtas burts: %s (tikai minējums)\n"
+
+#: ../../diskdrake.pm_.c:224 ../../diskdrake.pm_.c:266
+msgid "Type: "
+msgstr "Tips: "
+
+#: ../../diskdrake.pm_.c:225
+#, c-format
+msgid "Start: sector %s\n"
+msgstr "Sākums: sektors %s\n"
+
+#: ../../diskdrake.pm_.c:226
+#, c-format
+msgid "Size: %d MB"
+msgstr "Izmērs: %d MB"
+
+#: ../../diskdrake.pm_.c:228
+#, c-format
+msgid ", %s sectors"
+msgstr ", %s sektori"
+
+#: ../../diskdrake.pm_.c:230
+#, c-format
+msgid "Cylinder %d to cylinder %d\n"
+msgstr "No cilindra %d līdz cilindram %d\n"
+
+#: ../../diskdrake.pm_.c:231
+msgid "Formatted\n"
+msgstr "Formatēts\n"
+
+#: ../../diskdrake.pm_.c:232
+msgid "Not formatted\n"
+msgstr "Neformatēts\n"
+
+#: ../../diskdrake.pm_.c:233
+msgid "Mounted\n"
+msgstr "Montēts\n"
+
+#: ../../diskdrake.pm_.c:234
+#, c-format
+msgid "RAID md%s\n"
+msgstr "RAID md%s\n"
+
+#: ../../diskdrake.pm_.c:235
+#, c-format
+msgid "Loopback file(s): %s\n"
+msgstr "Loopback fails(i): %s\n"
+
+#: ../../diskdrake.pm_.c:236
+msgid ""
+"Partition booted by default\n"
+" (for MS-DOS boot, not for lilo)\n"
+msgstr ""
+"Noklusēti sāknējamā sadaļa\n"
+" (lai sāknētu MS-DOS, nevis lilo)\n"
+
+#: ../../diskdrake.pm_.c:238
+#, c-format
+msgid "Level %s\n"
+msgstr "Līmenis %s\n"
+
+#: ../../diskdrake.pm_.c:239
+#, c-format
+msgid "Chunk size %s\n"
+msgstr "Gabala izmērs %s\n"
+
+#: ../../diskdrake.pm_.c:240
+#, c-format
+msgid "RAID-disks %s\n"
+msgstr "RAID diski %s\n"
+
+#: ../../diskdrake.pm_.c:242
+#, c-format
+msgid "Loopback file name: %s"
+msgstr "Loopback faila nosaukums: %s"
+
+#: ../../diskdrake.pm_.c:259
+msgid "Please click on a partition"
+msgstr "Lūdzu uzklikšķiniet uz sadaļas"
+
+#: ../../diskdrake.pm_.c:264
+#, c-format
+msgid "Size: %d MB\n"
+msgstr "Izmērs: %d MB\n"
+
+#: ../../diskdrake.pm_.c:265
+#, c-format
+msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
+msgstr "Ģeometrija: %s cilindri, %s galvas, %s sektori\n"
+
+#: ../../diskdrake.pm_.c:267
+#, c-format
+msgid "Partition table type: %s\n"
+msgstr "Sadaļu tabulas tips: %s\n"
+
+#: ../../diskdrake.pm_.c:268
+#, c-format
+msgid "on bus %d id %d\n"
+msgstr "uz šinas %d id %d\n"
+
+#: ../../diskdrake.pm_.c:281
+msgid "Mount"
+msgstr "Montēta"
+
+#: ../../diskdrake.pm_.c:282
+msgid "Active"
+msgstr "Aktīva"
+
+#: ../../diskdrake.pm_.c:283
+msgid "Add to RAID"
+msgstr "Pievienot pie RAID"
+
+#: ../../diskdrake.pm_.c:284
+msgid "Remove from RAID"
+msgstr "Izslēgt no RAID"
+
+#: ../../diskdrake.pm_.c:285
+msgid "Modify RAID"
+msgstr "Izmainīt RAID"
+
+#: ../../diskdrake.pm_.c:286
+msgid "Use for loopback"
+msgstr "Izmantot priekš loopback"
+
+#: ../../diskdrake.pm_.c:293
+msgid "Choose action"
+msgstr "Izvēlieties darbību"
+
+#: ../../diskdrake.pm_.c:386
+msgid ""
+"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
+"1024).\n"
+"Either you use LILO and it won't work, or you don't use LILO and you don't "
+"need /boot"
+msgstr ""
+"Diemžēl es neļaušu izveidot /boot tik tālu diska iekārtā (uz cilindra > "
+"1024).\n"
+"Vai nu jūs izmantojat LILO, un tas nestrādās, vai arī jūs neizmantojat LILO, "
+"un /boot jums nav vajadzīgs"
+
+#: ../../diskdrake.pm_.c:390
+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 ""
+"Sadaļa, ko jūs izvēlējāties pievienot kā sakni (/), fiziski atrodas aiz\n"
+"šī cietā diska 1024. cilindra, un jums nav /boot sadaļas.\n"
+"Ja jūs plānojat izmantot LILO, neaizmirstiet pievienot /boot sadaļu"
+
+#: ../../diskdrake.pm_.c:396
+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 if you want to use lilo or grub"
+msgstr ""
+"Jūs esat izvēlējies programmisku RAID sadaļu kā saknes sadaļu (/).\n"
+"Neviens sāknētājs nespēj to izmantot bez /boot sadaļas.\n"
+"Tāpēc neaizmirstiet izveidot /boot sadaļu, ja vēlaties izmantot lilo vai grub"
+
+#: ../../diskdrake.pm_.c:413 ../../diskdrake.pm_.c:415
+#, c-format
+msgid "Use ``%s'' instead"
+msgstr "Tā vietā izmantojiet ``%s''"
+
+#: ../../diskdrake.pm_.c:418
+msgid "Use ``Unmount'' first"
+msgstr "Vispirms izmantojiet ``Nomontēt''"
+
+#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:461
+#, c-format
+msgid ""
+"After changing type of partition %s, all data on this partition will be lost"
+msgstr ""
+"Pēc sadaļas %s tipa nomaiņas visi šajā sadaļā esošie dati tiks pazaudēti"
+
+#: ../../diskdrake.pm_.c:431
+msgid "Continue anyway?"
+msgstr "Tomēr turpināt?"
+
+#: ../../diskdrake.pm_.c:436
+msgid "Quit without saving"
+msgstr "Iziet bez saglabāšanas"
+
+#: ../../diskdrake.pm_.c:436
+msgid "Quit without writing the partition table?"
+msgstr "Iziet bez sadaļu tabulas ierakstīšanas?"
+
+#: ../../diskdrake.pm_.c:464
+msgid "Change partition type"
+msgstr "Nomainīt sadaļas tipu"
+
+#: ../../diskdrake.pm_.c:465
+msgid "Which partition type do you want?"
+msgstr "Kādu sadaļas tipu jūs vēlaties?"
+
+#: ../../diskdrake.pm_.c:483
+#, c-format
+msgid "Where do you want to mount loopback file %s?"
+msgstr "Kur jūs vēlaties montēt loopback failu %s?"
+
+#: ../../diskdrake.pm_.c:484
+#, c-format
+msgid "Where do you want to mount device %s?"
+msgstr "Kur jūs vēlaties montēt ierīci %s?"
+
+#: ../../diskdrake.pm_.c:489
+msgid ""
+"Can't unset mount point as this partition is used for loop back.\n"
+"Remove the loopback first"
+msgstr ""
+"Nevaru noņemt montēšanas punktu, jo šī sadaļa tiek izmantota ka loopback.\n"
+"Vispirms nodzēsiet loopback"
+
+#: ../../diskdrake.pm_.c:508
+#, c-format
+msgid "After formatting partition %s, all data on this partition will be lost"
+msgstr ""
+"Pēc sadaļas %s formatēšanas visi šajā sadaļā esošie dati tiks pazaudēti"
+
+#: ../../diskdrake.pm_.c:510
+msgid "Formatting"
+msgstr "Formatēju"
+
+#: ../../diskdrake.pm_.c:511
+#, c-format
+msgid "Formatting loopback file %s"
+msgstr "Formatēju loopback failu %s"
+
+#: ../../diskdrake.pm_.c:512 ../../install_steps_interactive.pm_.c:253
+#, c-format
+msgid "Formatting partition %s"
+msgstr "Formatēju sadaļu %s"
+
+#: ../../diskdrake.pm_.c:517
+msgid "After formatting all partitions,"
+msgstr "Pēc visu sadaļu formatēšanas"
+
+#: ../../diskdrake.pm_.c:517
+msgid "all data on these partitions will be lost"
+msgstr "visi šājās sadaļās esošie dati tiks pazaudēti"
+
+#: ../../diskdrake.pm_.c:527
+msgid "Move"
+msgstr "Pārvietot"
+
+#: ../../diskdrake.pm_.c:528
+msgid "Which disk do you want to move it to?"
+msgstr "Uz kuru disku vēlaties pārvietot?"
+
+#: ../../diskdrake.pm_.c:532
+msgid "Sector"
+msgstr "Sektors"
+
+#: ../../diskdrake.pm_.c:533
+msgid "Which sector do you want to move it to?"
+msgstr "Uz kuru sektoru vēlaties pārvietot?"
+
+#: ../../diskdrake.pm_.c:536
+msgid "Moving"
+msgstr "Pārvietoju"
+
+#: ../../diskdrake.pm_.c:536
+msgid "Moving partition..."
+msgstr "Pārvietoju sadaļu..."
+
+#: ../../diskdrake.pm_.c:546
+#, c-format
+msgid "Partition table of drive %s is going to be written to disk!"
+msgstr "Iekārtas %s sadaļu tabula tiks ierakstīta uz diska!"
+
+#: ../../diskdrake.pm_.c:548
+msgid "You'll need to reboot before the modification can take place"
+msgstr "Lai izmaiņas sāktu darboties, jums būs jāpārstartē dators"
+
+#: ../../diskdrake.pm_.c:569 ../../install_steps_gtk.pm_.c:208
+msgid "Computing FAT filesystem bounds"
+msgstr "Izskaitļoju fat failu sistēmas robežas"
+
+#: ../../diskdrake.pm_.c:569 ../../diskdrake.pm_.c:618
+#: ../../install_steps_gtk.pm_.c:208
+msgid "Resizing"
+msgstr "Mainu izmēru"
+
+#: ../../diskdrake.pm_.c:585
+msgid "All data on this partition should be backed-up"
+msgstr "Visiem šajā sadaļā esošajiem datiem jāizveido rezerves kopijas"
+
+#: ../../diskdrake.pm_.c:587
+#, c-format
+msgid "After resizing partition %s, all data on this partition will be lost"
+msgstr ""
+"Pēc sadaļas %s izmēra maiņas visi šaja sadaļā esošie dati tiks pazaudēti"
+
+#: ../../diskdrake.pm_.c:597
+msgid "Choose the new size"
+msgstr "Izvēlieties jauno izmēru"
+
+#: ../../diskdrake.pm_.c:597 ../../install_steps_graphical.pm_.c:287
+#: ../../install_steps_graphical.pm_.c:334
+msgid "MB"
+msgstr "MB"
+
+#: ../../diskdrake.pm_.c:652
+msgid "Create a new partition"
+msgstr "Izveidot jaunu sadaļu"
+
+#: ../../diskdrake.pm_.c:672
+msgid "Start sector: "
+msgstr "Sākuma sektors: "
+
+#: ../../diskdrake.pm_.c:676 ../../diskdrake.pm_.c:750
+msgid "Size in MB: "
+msgstr "Izmērs MB: "
+
+#: ../../diskdrake.pm_.c:679 ../../diskdrake.pm_.c:753
+msgid "Filesystem type: "
+msgstr "Failu sistēmas tips: "
+
+#: ../../diskdrake.pm_.c:682
+msgid "Preference: "
+msgstr "Priekšroka: "
+
+#: ../../diskdrake.pm_.c:729 ../../install_steps.pm_.c:132
+msgid "This partition can't be used for loopback"
+msgstr "Šo sadaļu nevar izmantot priekš loopback"
+
+#: ../../diskdrake.pm_.c:739
+msgid "Loopback"
+msgstr "Loopback"
+
+#: ../../diskdrake.pm_.c:749
+msgid "Loopback file name: "
+msgstr "Loopback faila nosaukums: "
+
+#: ../../diskdrake.pm_.c:775
+msgid "File already used by another loopback, choose another one"
+msgstr "Fails jau tiek izmantots citam loopback, izvēlieties citu failu"
+
+#: ../../diskdrake.pm_.c:776
+msgid "File already exists. Use it?"
+msgstr "Fails jau eksistē. Vai to izmantot?"
+
+#: ../../diskdrake.pm_.c:798 ../../diskdrake.pm_.c:814
+msgid "Select file"
+msgstr "Izvēlieties failu"
+
+#: ../../diskdrake.pm_.c:807
+msgid ""
+"The backup partition table has not the same size\n"
+"Still continue?"
+msgstr ""
+"Sadaļu tabulas rezerves kopijai ir cits izmērs\n"
+"Vai tomēr turpināt?"
+
+#: ../../diskdrake.pm_.c:815
+msgid "Warning"
+msgstr "Uzmanību"
+
+#: ../../diskdrake.pm_.c:816
+msgid ""
+"Insert a floppy in drive\n"
+"All data on this floppy will be lost"
+msgstr ""
+"Ielieciet disketi\n"
+"Visi uz disketes esošie dati tiks pazaudēti"
+
+#: ../../diskdrake.pm_.c:830
+msgid "Trying to rescue partition table"
+msgstr "Mēģinu izglābt sadaļu tabulu"
+
+#: ../../diskdrake.pm_.c:841
+msgid "device"
+msgstr "ierīce"
+
+#: ../../diskdrake.pm_.c:842
+msgid "level"
+msgstr "līmenis"
+
+#: ../../diskdrake.pm_.c:843
+msgid "chunk size"
+msgstr "gabala izmērs"
+
+#: ../../diskdrake.pm_.c:855
+msgid "Choose an existing RAID to add to"
+msgstr "Izvēlieties esošu RAID, kam pievienot"
+
+#: ../../diskdrake.pm_.c:856
+msgid "new"
+msgstr "jauns"
+
+#: ../../fs.pm_.c:85 ../../fs.pm_.c:91 ../../fs.pm_.c:97 ../../fs.pm_.c:103
+#, c-format
+msgid "%s formatting of %s failed"
+msgstr "%s formatēšana %s neizdevās"
+
+#: ../../fs.pm_.c:129
+#, 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:186
+msgid "nfs mount failed"
+msgstr "nfs montēšana neizdevās"
+
+#: ../../fs.pm_.c:209
+msgid "mount failed: "
+msgstr "montēšana neizdevās: "
+
+#: ../../fs.pm_.c:220
+#, c-format
+msgid "error unmounting %s: %s"
+msgstr "kļūda nomontējot %s: %s"
+
+#: ../../fsedit.pm_.c:250
+msgid "Mount points must begin with a leading /"
+msgstr "Montēšanas punktiem jāsākas ar /"
+
+#: ../../fsedit.pm_.c:253
+#, c-format
+msgid "There is already a partition with mount point %s\n"
+msgstr "Jau eksistē sadaļa ar montēšanas punktu %s\n"
+
+#: ../../fsedit.pm_.c:261
+#, c-format
+msgid "Circular mounts %s\n"
+msgstr "Cikliski montēšanas punkti %s\n"
+
+#: ../../fsedit.pm_.c:273
+msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+msgstr ""
+
+#: ../../fsedit.pm_.c:355
+#, c-format
+msgid "Error opening %s for writing: %s"
+msgstr "Kļūda atverot %s ierakstīšanai: %s"
+
+#: ../../fsedit.pm_.c:437
+msgid ""
+"An error has 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 failu sistēmu "
+"veidošanai. Lūdzu pārbaudiet aparatūru, lai noskaidrotu problēmas iemeslu"
+
+#: ../../fsedit.pm_.c:452
+msgid "You don't have any partitions!"
+msgstr "Jums nav nevienas sadaļas!"
+
+#: ../../help.pm_.c:7
+msgid "Choose preferred language for install and system usage."
+msgstr "Izvēlieties vēlamo instalēšanas un sistēmas izmantošanas valodu."
+
+#: ../../help.pm_.c:10
+msgid "Choose the layout corresponding to your keyboard from the list above"
+msgstr "No saraksta izvēlieties jūsu tastatūrai atbilstošo izkārtojumu"
+
+#: ../../help.pm_.c:13
+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"
+"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).\n"
+"\n"
+"\n"
+"Select:\n"
+"\n"
+" - Automated (recommended): If you have never installed Linux before, "
+"choose this. NOTE:\n"
+" networking will not be configured during installation, use "
+"\"LinuxConf\"\n"
+" to configure it after the install completes.\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 ""
+"Izvēlieties \"Instalēt\", ja nav instalēta agrāka Linux versija,\n"
+"vai arī jūs vēlaties vienlaicīgi izmantot vairākus distributīvus\n"
+"vai versijas.\n"
+"\n"
+"Izvēlieties \"Uzlabot\", ja jūs vēlaties atjaunināt vecāku Mandrake\n"
+"Linux versiju: 5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus),\n"
+"6.1 (Helios), Gold 2000 vai 7.0 (Air).\n"
+"\n"
+"\n"
+"Izvēlieties:\n"
+"\n"
+" - Automātiska (ieteicama): Izvēlieties šo, ja jūs līdz šim ne reizi\n"
+" neesat instalējis Linux. PIEZĪME: instalēšanas laikā netiks konfigurēts\n"
+" tīkls. Lai to konfigurētu, pēc instalēšanas pabeigšanas izmantojiet\n"
+" \"LinuxConf\".\n"
+"\n"
+" - Pielāgota: Ja pietiekami labi pārzinat GNU/Linux, jums tiks dota\n"
+" iespēja izvēlēties sistēmu pielietojumu. Sīkāka informācija būs\n"
+" pieejam vēlāk.\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 izvēlēties sistēmas pielietojumu.\n"
+" Tomēr lūdzu, lūdzu, NEIZVĒLIETIES ŠO, JA JŪS NEESAT PĀRLIECINĀTS PAR\n"
+" SAVU RĪCĪBU!\n"
+
+#: ../../help.pm_.c:37
+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"
+" - 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 ""
+"Izvēlieties:\n"
+"\n"
+" - Pielāgota: Ja pietiekami labi pārzinat GNU/Linux, jums tiks dota\n"
+" iespēja izvēlēties sistēmu pielietojumu. Sīkāka informācija būs\n"
+" pieejam vēlāk.\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 izvēlēties sistēmas pielietojumu.\n"
+" Tomēr lūdzu, lūdzu, NEIZVĒLIETIES ŠO, JA JŪS NEESAT PĀRLIECINĀTS PAR\n"
+" SAVU RĪCĪBU!\n"
+
+#: ../../help.pm_.c:49
+msgid ""
+"The different choices for your machine's usage (provided, hence, that you "
+"have\n"
+"chosen either \"Custom\" or \"Expert\" as an installation class) are the\n"
+"following:\n"
+"\n"
+" - Normal: choose this if you intend to use your machine primarily for\n"
+" everyday use (office work, graphics manipulation and so on). Do not\n"
+" expect any compiler, development utility et al. installed.\n"
+"\n"
+" - Development: as its name says. Choose this if you intend to use your\n"
+" machine primarily for software development. You will then have a "
+"complete\n"
+" collection of software installed in order to compile, debug and format\n"
+" source code, or create software packages.\n"
+"\n"
+" - Server: choose this if the machine which you're installing "
+"Linux-Mandrake\n"
+" on is intended to be used as a server. Either a file server (NFS or "
+"SMB),\n"
+" a print server (Unix' lp (Line Printer) protocol or Windows style SMB\n"
+" printing), an authentication server (NIS), a database server and so on. "
+"As\n"
+" such, do not expect any gimmicks (KDE, GNOME...) to be installed.\n"
+msgstr ""
+"Dažādi varinati jūsu datora pielietojumam (pieņemot, ka jūs esat\n"
+"izvēlējies instalēšanas klasi \"Pielāgota\" vai \"Eksperta\") ir:\n"
+"\n"
+" - Normāls: izvēlēties šo, ja jūs plānojat savu datoru galvenokārt\n"
+" izmantot ikdienas vajadzībām (birojā, grafikas apstrādei un tml.).\n"
+" Neceriet, ka tiks instalēts kaut viens kompilators vai izstrādes\n"
+" programma.\n"
+"\n"
+" - Izstrādei: kā norāda nosaukums. Izvēlieties šo, ja jūs plānojat\n"
+" savu datoru galvenokārt izmantot programmatūras izstrādei. Tad jums\n"
+" būs pieejams pilnīgs programmatūras komplekts sākumkoda kompilēšanai,\n"
+" atkļūdošanai un formatēšanai, kā arī programmu paku veidošanai.\n"
+"\n"
+" - Serveris: izvēlieties šo, ja datoru, uz kura jūs instalējat\n"
+" Linux-Mandrake, ir paredzēts izmantot kā serveri. Tas var būt failu\n"
+" serveris (NFS vai SMB), drukas serveris (Unix lp (Line Printer)\n"
+" protokola vai Windows stila SMB drukāšanai), autentificēšanas serveris\n"
+" (NIS), datu bāzu servers un tml. Neceriet, ka tiks instalēti jebkādi\n"
+" izskaistinājumi (KDE, GNOME...).\n"
+
+#: ../../help.pm_.c:70
+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 vispirms mēģinās atrast vienu vai vairākus PCI\n"
+"SCSI adapterus. Ja izdosies to(s) atrast un piemeklēt draiveri(us),\n"
+"adapteri tiks pievienoti automātiski.\n"
+"\n"
+"\n"
+"Ja jūsu SCSI adapteris atrodas uz ISA plates vai PCI plates, kurai\n"
+"DrakX neprot piemeklēt draiveri, vai arī jums vispār nav SCSI adapteru,\n"
+"jums tiks uzdots atbilstošs jautājums. Ja jūsu datorā nav SCSI adapteru,\n"
+"izvēlieties \"Nē\". Ja ir vismaz viens adapteris, izvēlieties \"Jā\".\n"
+"Tad jums tiks piedāvāts draiveru saraksts, no kura jums būs jāizvēlas\n"
+"atbilstošs draiveris.\n"
+"\n"
+"\n"
+"Kad būs izvēlēts draiveris, DrakX pajautās, vai vēlaties tam\n"
+"norādīt parametrus. Vispirms ļaujiet draiverim aptaujāt ierīci:\n"
+"parasti tas darbojas bez problēmām.\n"
+"\n"
+"\n"
+"Ja tas neizdodas, izmantojiet informāciju par savu adapteri, ko\n"
+"var atrast dokumentācijā vai no Windows (ja tas ir uzstādīts jūsu\n"
+"datorā), kā tas ieteikts instalācijas rokasgrāmatā. Šie parametri\n"
+"būs jānorāda draiverim."
+
+#: ../../help.pm_.c:94
+msgid ""
+"At this point, you may choose what partition(s) to use to install\n"
+"your Linux-Mandrake system if they have been already defined (from a\n"
+"previous install of Linux or from another partitionning 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 Linux. You can select the disk for partitionning 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 ""
+"Pašlaik jūs varat izvēlēties, kurā(s) diska sadaļā(s) instalēt\n"
+"Linux-Mandrake sistēmu, ja tās jau ir izveidotas (agrākas Linux\n"
+"instalēšanas laikā vai ar citu sadaļu veidošanas rīku palīdzību). Citos\n"
+"gadījumos vispirms jāizveido diska sadaļas. Šī operācija nozīmē\n"
+"datora cietā diska apjomu loģiski sadalīt atsevišķi izmantojamās daļās.\n"
+"\n"
+"\n"
+"Ja jums ir jāveido jaunas sadaļas, izmantojiet \"Izvietot automātiski\",\n"
+"lai automātiski izveidotu Linux sadaļas. Jūs varat izvēlēties disku,\n"
+"uzklikšķinot uz \"hda\", ja tā ir pirmā IDE iekārta, \"hdb\", ja tā ir\n"
+"otrā iakārta, vai \"sda\", ja tā ir pirmā SCSI iekārta, utt.\n"
+"\n"
+"\n"
+"Divas svarīgas sadaļas ir saknes sadaļa (/), kas ir failu sistēmas\n"
+"katalogu hierarhijas sākumpunkts, un /boot, kas satur visus\n"
+"operētajsistēmas startēšanai nepieciešamos failus.\n"
+"\n"
+"\n"
+"Sakarā ar to, ka šī procesa rezultātus parasti nevar atcelt,\n"
+"nepieredzējušiem lietotājiem tas var būt biedējošs un stresa pilns\n"
+"process. Lai tā nebūtu, DiskDrake vienkāršo šo procesu. Pirms turpināt,\n"
+"pārlasiet dokumentāciju un visu labi apdomājiet.\n"
+"\n"
+"\n"
+"Jebkurai opcijai jūs varat piekļūt ar taustiņiem: pārejiet no vienas\n"
+"sadaļas uz citu ar Tab un bultiņām uz augšu/leju. Kad sadaļa ir\n"
+"izvēlēta, jūs varat izmantot:\n"
+"\n"
+"- Ctrl-c lai izveidotu jaunu sadaļu (kad ir izvēlēta tukša sadaļa)\n"
+"\n"
+"- Ctrl-d lai izdzēstu sadaļu\n"
+"\n"
+"- Ctrl-m lai norādītu montēšanas punktu\n"
+
+#: ../../help.pm_.c:131
+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 ""
+"Jebkuru jaunizveidoto sadaļu pirms tās izmantošanas ir jāformatē\n"
+"(formatēšana nozīmē failu sistēmas izveidošanu). Tagad jūs arī varat\n"
+"izvēlēties pārformatēt jau eksistējošas sadaļas, lai izdzēstu tur\n"
+"esošos datus. Piezīme: agrāk izveidotas sadaļas nav obligāti\n"
+"jāpārformatē, it seviški, ja tajās atrodas faili, ko jūs vēlaties\n"
+"saglabāt. Parasti tiek saglabātas /home un /usr/local."
+
+#: ../../help.pm_.c:139
+msgid ""
+"You may now select the group of packages you wish to\n"
+"install or upgrade.\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\n"
+"the 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\n"
+"through more than 1000 packages..."
+msgstr ""
+"Tagad jūs varat izvēlēties instalējamo vai uzlabojamo paku grupas.\n"
+"\n"
+"Pēc tam DrakX pārbaudīs, vai jums ir pietiekoši daudz vietas to visu\n"
+"instalēšanai. Ja nav vietas, jūs brīdinās par to. Ja jūs vēlaties\n"
+"turpināt neskatoties uz to, izvēlēto grupu instalēšana turpināsies,\n"
+"taču tiks izlaistas dažas mazāk noderīgas pakas. Saraksta apakšā jūs\n"
+"varat izvēlēties opciju \"Atsevišķu paku izvēle\"; šajā gadījumā jums\n"
+"vajadzēs caurskatīt vairāk nekā 1000 paku sarakstu..."
+
+#: ../../help.pm_.c:150
+msgid ""
+"If you have all the CDs in the list above, 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 ""
+"Ja jums ir visi šajā sarakstā norādītie CD, nospiediet Ok.\n"
+"Ja jums nav neviena no norādītajiem CD, nospiediet Cancel.\n"
+"Ja trūkst tikai dažu CD, sarakstā atslēdziet tos un nospiediet Ok."
+
+#: ../../help.pm_.c:155
+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 ""
+"Izvēlētās pakas pašlaik tiek instalētas. Šī operācija ilgs vairākas\n"
+"minūtes, ja vien jūs neizvēlējāties uzlabot jau esošu sistēmu, jo šajā\n"
+"gadījumā tas notiks ilgāk pat pirms sistēmas uzlabošanas uzsākšanas."
+
+#: ../../help.pm_.c:161
+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' settings, just jump to the section\n"
+"you want by clicking on it in the menu on the left. Otherwise,\n"
+"choose a mouse type in the menu which you think is the closest\n"
+"match for your mouse.\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 ""
+"Ja DrakX neizdevās atrast jūsu peli, vai arī jūs vēlaties pārbaudīt,\n"
+"kas ir izdarīts, augšā tiks parādīts peļu saraksts.\n"
+"\n"
+"\n"
+"Ja jūs piekrītat DrakX izvēlei, vienkārši pārejiet uz nepieciešamo\n"
+"sekciju, uzklikšķinot uz nosaukuma izvēlnē ekrāna kreisajā pusē. Pretējā\n"
+"gadījumā sarakstā izvēlieties to peles tipu, kas pēc jūsu domām labāk\n"
+"atbilst jūsu peles modelim.\n"
+"\n"
+"\n"
+"Ja jums ir seriāla pele, jums būs jāpasaka DrakX, kuram seriālajam portam\n"
+"tā ir pieslēgta."
+
+#: ../../help.pm_.c:176
+msgid ""
+"Please select the correct port. For example, the COM1 port under MS Windows\n"
+"is named ttyS0 under Linux."
+msgstr ""
+"Lūdzu izvēlieties pareizu portu. Piemēram, MS Windows ports COM1 Linux\n"
+"vidē tiek saukts par ttyS0."
+
+#: ../../help.pm_.c:180
+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 Linux-Mandrake 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 ""
+"Šī sekcija ir veltīta lokālā datortīkla (LAN) vai modēma konfigurēšanai.\n"
+"\n"
+"Izvēlieties \"Lokālais datortīkls\", un DrakX mēģinās jūsu datorā sameklēt\n"
+"Ethernet adapteri. PCI adapterus vajadzētu atrast un inicializēt\n"
+"automātiski.\n"
+"Tomēr, ja jūsu adapteris ir uz ISA šinas, autonoteikšana nedarbosies,\n"
+"un jums būs jāizvēlas draiveris no vēlāk parādītā saraksta.\n"
+"\n"
+"\n"
+"Tāpat kā SCSI adapteriem, jūs vispirms varat ļaut draiverim aptaujāt\n"
+"adapteri, citādi jums būs draiverim jānorāda konkrēti parametri,\n"
+"ko jūs esat uzzinājuši no savas aparatūras dokumentācijas.\n"
+"\n"
+"\n"
+"Ja jūs instalējat Linux-Mandrake sistēmu datorā, kas ir pieslēgts jau\n"
+"esošam datortīklam, tīkla administrators jums būs norādījis visu\n"
+"nepieciešamo informāciju (IP adresi, apakštīkla masku jeb vienkārši\n"
+"tīkla masku un datora nosaukumu). Ja jūs veidojat privātu datortīklu,\n"
+"piemēram, mājās, jums pašam jāizvēlas adrese.\n"
+"\n"
+"\n"
+"Izvēlieties \"Iezvanīšanās ar modēmu\", un tiks konfigurēts Interneta\n"
+"pieslēgums darbam ar modēmu. DrakX mēģinās sameklēt jūsu modēmu, bet, ja\n"
+"tas neizdosies, jums būs jānorāda ports, pie kura ir pieslēgts jūsu\n"
+"modēms."
+
+#: ../../help.pm_.c:210
+msgid ""
+"Enter:\n"
+"\n"
+" - IP address: if you don't know it, ask your network administrator or "
+"ISP.\n"
+"\n"
+"\n"
+" - Netmask: \"255.255.255.0\" is generally a good choice. If you are not\n"
+"sure, ask your network administrator or ISP.\n"
+"\n"
+"\n"
+" - Automatic IP: If your network uses bootp or dhcp protocol, select \n"
+"this option. If selected, no value is needed in \"IP address\". If you are\n"
+"not sure, ask your network administrator or ISP.\n"
+msgstr ""
+"Ievadiet:\n"
+"\n"
+" - IP adrese: ja to nezinat, pajautājiet tīkla administratoram vai ISP.\n"
+"\n"
+"\n"
+" - Tīkla maska: \"255.255.255.0\" parasti ir laba izvēle. Ja neesat\n"
+"pārliecināts, pajautājiet tīkla administratoram vai ISP.\n"
+"\n"
+"\n"
+" - Automātisks IP: Ja jūsu datortīkls izmanto bootp vai dhcpd protokolu,\n"
+"izvēlieties šo opciju. Kad tā ir izvēlēta, nav jānorāda \"IP addrese\".\n"
+"Ja neesat pārliecināts, pajautājiet tīkla administratoram vai ISP.\n"
+
+#: ../../help.pm_.c:225
+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."
+
+#: ../../help.pm_.c:229
+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."
+
+#: ../../help.pm_.c:233
+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"
+"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 pakas. Vispirms izvēlieties spoguļserveri, no kura ielādēt\n"
+"pakas, tad izvēlieties instalējamās pakas.\n"
+"\n"
+"Atcerieties, ka spoguļserveris un kriptogrāfijas pakas ir jāizvēlas\n"
+"atbilstoši jūsu valsts likumdošanai."
+
+#: ../../help.pm_.c:241
+msgid ""
+"You can now select your timezone according to where you live.\n"
+"\n"
+"\n"
+"Linux manages time in GMT or \"Greenwich Mean Time\" and translates it\n"
+"in local time according to the time zone you have selected."
+msgstr ""
+"Tagad jūs varat izvēlēties laika joslu, kurā jūs dzīvojat.\n"
+"\n"
+"\n"
+"Linux laiku rēķina pēc GMT jeb \"Grīničas Meridiāna Laika\" un pārvērš to\n"
+"par vietējo laiku atbilstoši jūsu izvēlētajai laika joslai."
+
+#: ../../help.pm_.c:248
+msgid ""
+"You may now choose which services you want to see started at boot time.\n"
+"When your mouse comes over an item, a small balloon help will popup which\n"
+"describes the role of the service.\n"
+"\n"
+"Be especially careful in this step if you intend to use your machine as a\n"
+"server: you will probably want not to start any services which you don't\n"
+"want."
+msgstr ""
+"Tagad jūs varat izvēlēties servisus, kurus jūs vēlaties startēt sistēmas\n"
+"sāknēšanas laikā. Kad pele pārvietojas pār saraksta elementu, parādās\n"
+"neliela balona palīdzību, kas paskaidro servisa lomu.\n"
+"\n"
+"Esiet īpaši uzmanīgs šajā solī, ja vēlaties sistēmu izmantot ka serveri:\n"
+"iespējams, ka nevēlaties startēt nevienu nevajadzīgu servisu."
+
+#: ../../help.pm_.c:257
+msgid ""
+"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 var izmantot daudzus printeru tipus. Katram printeru tipam\n"
+"nepieciešami atšķirīgi parametri. Tomēr ņemiet vērā, ka drukas spolētājs\n"
+"izmanto 'lp' kā noklusēto printera nosaukumu, tāpēc ir jābūt printerim\n"
+"ar šādu nosaukumu. Tomēr printerim var piešķirt vairākus nosaukumus,\n"
+"atdalot tos ar simbolu '|'. Tādējādi, ja jūs gribat saprotamāku\n"
+"nosaukumu, lieciet to pirmo, piem., \"Mans printeris|lp\".\n"
+"Printeris, kura nosaukumā ir \"lp\", būs noklusētais printeris.\n"
+"\n"
+"\n"
+"Ja printeris ir tieši pieslēgts jūsu datoram, izvēlieties\n"
+"\"Lokāls printeris\". Pēc tam jums būs janorāda, kuram portam\n"
+"printeris ir pieslēgts, kā arī jāizvēlas atbilstošs filtrs.\n"
+"\n"
+"\n"
+"Ja vēlaties izmantot printeri, kas ir pieslēgts attālam Unix serverim,\n"
+"jums ir jāizvēlas \"Attāls lpd\". Lai tas darbotos, nav nepieciešams\n"
+"lietotaja vārds un parole, taču ir jāzina printera rindas nosaukums\n"
+"uz šī servera.\n"
+"\n"
+"\n"
+"Ja vēlaties izmantot SMB printeri (kas nozīmē, ka printeris ir pieslēgts\n"
+"attālam Windows 9x/NT datoram), jums būs jānorāda tā SMB vārds\n"
+"(kas var nesakrist ar datora TCP/IP vārdu) un, iespējams, IP adrese,\n"
+"kā arī lietotāja vārds, darbagrupa un parole, lai varētu piekļūt šim\n"
+"printerim, un, protams, printera nosaukums. Tas pats attiecas arī uz\n"
+"NetWare printeri, vienīgi nav nepieciešama darbagrupas informācija."
+
+#: ../../help.pm_.c:286
+msgid ""
+"You can now enter the root password for your Linux-Mandrake\n"
+"system. The password must be entered twice to verify that both\n"
+"password entries are identical.\n"
+"\n"
+"\n"
+"Root is the administrator of the system, and is the only user\n"
+"allowed to modify the system configuration. Therefore, choose\n"
+"this password carefully! Unauthorized use of the root account can\n"
+"be extremely dangerous to the integrity of the system and its data,\n"
+"and other systems connected to it. The password should be a\n"
+"mixture of alphanumeric characters and a least 8 characters long. It\n"
+"should NEVER be written down. Do not make the password too long or\n"
+"complicated, though: you must be able to remember without too much\n"
+"effort."
+msgstr ""
+"Tagad varat ievadīt jūsu Linux-Mandrake 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 ne\n"
+"tikai jūs sistēmas integritātei un datiem, bet arī citām tai\n"
+"pieslēgtajām sistēmām. Parolei ir jābūt vismaz 8 simbolus garai burtu\n"
+"un ciparu kombinācijai. To NEKAD nevajag pierakstīt uz papīra.\n"
+"Tomēr 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."
+
+#: ../../help.pm_.c:302
+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\"."
+
+#: ../../help.pm_.c:306
+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."
+
+#: ../../help.pm_.c:310
+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 vēlaties atļaut piekļūt\n"
+"jūsu datoram. 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."
+
+#: ../../help.pm_.c:329
+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 Linux any more."
+msgstr ""
+"Ir ļoti ieteicams šeit atbildēt \"Jā\". Ja jūs vēlāk instalēsit\n"
+"Microsoft Windows, tas pārrakstīs diska sāknēšanas sektoru.\n"
+"Ja jūs nebūsit izveidojis piedāvāto sāknēšanas disketi, jūs vairs\n"
+"nevarēsit ielādēt Linux."
+
+#: ../../help.pm_.c:335
+msgid ""
+"You need to indicate where you wish\n"
+"to place the information required to boot to Linux.\n"
+"\n"
+"\n"
+"Unless you know exactly what you are doing, choose \"First sector of\n"
+"drive (MBR)\"."
+msgstr ""
+"Jums ir jānorāda, kur jūs vēlaties novietot\n"
+"Linux sāknēšanai nepieciešamo informāciju.\n"
+"\n"
+"\n"
+"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:343
+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 galvenā kanāla IDE) vai \"/dev/sda\" (pirmais\n"
+"SCSI disks)."
+
+#: ../../help.pm_.c:347
+msgid ""
+"LILO (the LInux LOader) and Grub are bootloaders: they are able to boot\n"
+"either 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 (the LInux LOader) un Grub ir sāknētāji: tie spēj sāknēt 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!"
+
+#: ../../help.pm_.c:359
+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"
+" * normal: select normal 80x25 text mode.\n"
+" * <number>: use the corresponding text mode."
+msgstr ""
+"LILO un grub galvenās opcijas ir:\n"
+" - Sāknēšanas ierīce: Norāda ierīces nosaukumu (t.i., cietā diska\n"
+"sadaļu), 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."
+
+#: ../../help.pm_.c:378
+msgid ""
+"Now it's time to configure the X Window System, which is the\n"
+"core of the 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 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."
+
+#: ../../help.pm_.c:391
+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."
+
+#: ../../help.pm_.c:395
+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ē\"."
+
+#: ../../help.pm_.c:399
+msgid ""
+"You can now select some miscellaneous options for your system.\n"
+"\n"
+" - Use hard drive optimizations: this option can improve hard disk "
+"performance\n"
+" but is only for advanced users: some buggy chipsets can ruin your data, "
+"so\n"
+" beware. Note that the kernel has a builtin blacklist of drives and\n"
+" chipsets, but if you want to avoid bad surprises, leave this option "
+"unset.\n"
+"\n"
+" - Choose security level: you can choose a security level for your\n"
+" system. Please refer to the manual for complete information. Basically: "
+"if\n"
+" you don't know, select \"Medium\" ; if you really want to have a secure\n"
+" machine, choose \"Paranoid\" but beware: IN THIS LEVEL, ROOT LOGIN AT\n"
+" CONSOLE IS NOT ALLOWED! If you want to be root, you have to login as a "
+"user\n"
+" and then use \"su\". More generally, do not expect to use your machine\n"
+" for anything but as a server. You have been warned.\n"
+"\n"
+" - Precise RAM size if needed: unfortunately, in today's PC world, there is "
+"no\n"
+" standard method to ask the BIOS about the amount of RAM present in your\n"
+" computer. As a consequence, Linux may fail to detect your amount of RAM\n"
+" correctly. If this is the case, you can specify the correct amount of "
+"RAM\n"
+" here. Note that a difference of 2 or 4 MB is normal.\n"
+"\n"
+" - Removable media automounting: if you would prefer not to manually\n"
+" mount removable media (CD-ROM, Floppy, Zip) by typing \"mount\" and\n"
+" \"umount\", select this option. \n"
+"\n"
+" - Enable NumLock at startup: if you want NumLock enabled after booting,\n"
+" select this option (Note: NumLock may or may not work under X)."
+msgstr ""
+"Tagad jūs varat izvēlēties dažādas jūsu sistēmas opcijas.\n"
+"\n"
+" - Izmantot cietā diska optimizācijas: šī opcija var uzlabot cietā diska\n"
+" 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\n"
+" 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"
+" - 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ā. Īsumā: ja jūs\n"
+" nezinat, izvēlieties \"Vidējs\"; ja vēlaties patiešām drošu sistēmu,\n"
+" izvēlieties \"Paranoisks\", taču ņemiet vērā: ŠAJĀ LĪMENĪ ROOT\n"
+" IEREĢISTRĒŠANĀS NO KONSOLES NAV ATĻAUTA! Ja jūs vēlaties būt root,\n"
+" jums ir jāiereģistrējas kā lietotājam un tad jāizmanto \"su\". Vārdu\n"
+" sakot, neceriet, ka jūs varēsit izmantot savu sistēmu kam citam,\n"
+" atskaitot servera uzdevumus. Jūs esat brīdināts.\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. Tā rezultātā Linux var neizdoties pareizi\n"
+" noteiktu 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), drukājot \"mount\" un\n"
+" \"umount\", izvēlieties šo opciju.\n"
+"\n"
+" - Ieslēgt NumLock palaišanas laikā: ja vēlaties, lai pēc sāknēšanas\n"
+" būtu ieslēgts NumLock, izvēlieties šo opciju (Piezīme: var gadīties,\n"
+" ka NumLock tomēr nebūs ieslēgts X vidē)."
+
+#: ../../help.pm_.c:428
+msgid ""
+"Your system is going to reboot.\n"
+"\n"
+"After rebooting, your new Linux Mandrake system will load automatically.\n"
+"If you want to boot into another existing operating system, please read\n"
+"the additional instructions."
+msgstr ""
+"Jūsu sistēma tiks pārstartēta.\n"
+"\n"
+"Pēc pārstartēšanas jūsu jaunā Linux Mandrake 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."
+
+#: ../../install2.pm_.c:43
+msgid "Choose your language"
+msgstr "Valodas izvēle"
+
+#: ../../install2.pm_.c:44
+msgid "Select installation class"
+msgstr "Instalēšanas klases izvēle"
+
+#: ../../install2.pm_.c:45
+msgid "Hard drive detection"
+msgstr "Cietā diska noteikšana"
+
+#: ../../install2.pm_.c:46
+msgid "Configure mouse"
+msgstr "Peles konfigurēšana"
+
+#: ../../install2.pm_.c:47
+msgid "Choose your keyboard"
+msgstr "Tastatūras izvēle"
+
+#: ../../install2.pm_.c:48 ../../install_steps_interactive.pm_.c:318
+msgid "Miscellaneous"
+msgstr "Dažādi"
+
+#: ../../install2.pm_.c:49
+msgid "Setup filesystems"
+msgstr "Failu sistēmu uzstādīšana"
+
+#: ../../install2.pm_.c:50
+msgid "Format partitions"
+msgstr "Diska formatēšana"
+
+#: ../../install2.pm_.c:51
+msgid "Choose packages to install"
+msgstr "Instalējamo paku izvēle"
+
+#: ../../install2.pm_.c:52
+msgid "Install system"
+msgstr "Sistēmas instalēšana"
+
+#: ../../install2.pm_.c:53
+msgid "Configure networking"
+msgstr "Tīkla konfigurēšana"
+
+#: ../../install2.pm_.c:54
+msgid "Cryptographic"
+msgstr "Kriptogrāfija"
+
+#: ../../install2.pm_.c:55
+msgid "Configure timezone"
+msgstr "Laika joslas konfigurēšana"
+
+#: ../../install2.pm_.c:56
+msgid "Configure services"
+msgstr "Servisu konfigurēšana"
+
+#: ../../install2.pm_.c:57
+msgid "Configure printer"
+msgstr "Printera konfigurēšana"
+
+#: ../../install2.pm_.c:58 ../../install_steps_interactive.pm_.c:652
+#: ../../install_steps_interactive.pm_.c:653
+msgid "Set root password"
+msgstr "root paroles izvēle"
+
+#: ../../install2.pm_.c:59
+msgid "Add a user"
+msgstr "Lietotāja pievienošana"
+
+#: ../../install2.pm_.c:61
+msgid "Create a bootdisk"
+msgstr "Sāknēšanas disketes radīšana"
+
+#: ../../install2.pm_.c:63
+msgid "Install bootloader"
+msgstr "Sāknētāja instalēšana"
+
+#: ../../install2.pm_.c:64
+msgid "Configure X"
+msgstr "X konfigurēšana"
+
+#: ../../install2.pm_.c:65
+msgid "Auto install floppy"
+msgstr "Auto instalēšanas diskete"
+
+#: ../../install2.pm_.c:66
+msgid "Exit install"
+msgstr "Instalēšanas beigas"
+
+#: ../../install2.pm_.c:308
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+"Jums ir nepieciešama saknes sadaļa.\n"
+"Šim nolūkam izveidojiet sadaļu (vai uzklikšķiniet uz jau esošas).\n"
+"Tad izvēlieties darbību ``Montēšanas punkts'' un norādiet, ka tas ir `/'"
+
+#: ../../install_any.pm_.c:331 ../../standalone/diskdrake_.c:61
+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 ""
+"Man neizdodas nolasīt sadaļu tabulu, priekš manis tā ir pārāk bojāta :(\n"
+"Es mēģināšu turpināt, atslēdzot sliktās sadaļas"
+
+#: ../../install_any.pm_.c:348
+msgid ""
+"DiskDrake failed to read correctly the partition table.\n"
+"Continue at your own risk!"
+msgstr ""
+"DiskDrake neizdevās pareizi nolasīt sadaļu tabulu.\n"
+"Turpiniet, ja vēlaties riskēt!"
+
+#: ../../install_any.pm_.c:370
+msgid "Searching root partition."
+msgstr "Meklēju saknes sadaļu."
+
+#: ../../install_any.pm_.c:399
+msgid "Information"
+msgstr "Informācija"
+
+#: ../../install_any.pm_.c:400
+#, c-format
+msgid "%s: This is not a root partition, please select another one."
+msgstr "%s: Šī nav saknes sadaļa, lūdzu izvēlieties citu."
+
+#: ../../install_any.pm_.c:402
+msgid "No root partition found"
+msgstr "Saknes sadaļa nav atrasta"
+
+#: ../../install_any.pm_.c:440
+msgid "Can't use broadcast with no NIS domain"
+msgstr "Nevar izmantot apraidi, ja nav norādīts NIS domēns"
+
+#: ../../install_any.pm_.c:602
+msgid "Error reading file $f"
+msgstr "Kļūda nolasot failu $f"
+
+#: ../../install_steps.pm_.c:75
+msgid ""
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Atklāta kļūda, bet es nezinu, kā ar to pareizi apieties.\n"
+"Turpiniet, ja vēlaties riskēt."
+
+#: ../../install_steps.pm_.c:174
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "Dublēts montēšanas punkts %s"
+
+#: ../../install_steps.pm_.c:318
+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 ""
+
+#: ../../install_steps.pm_.c:385
+#, c-format
+msgid "Welcome to %s"
+msgstr "Jūs sveic %s"
+
+#: ../../install_steps.pm_.c:737
+msgid "No floppy drive available"
+msgstr "Nav nevienas diskešu iekārtas"
+
+#: ../../install_steps_auto_install.pm_.c:18 ../../install_steps_gtk.pm_.c:125
+#: ../../install_steps_stdio.pm_.c:26
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Uzsāku soli `%s'\n"
+
+#: ../../install_steps_graphical.pm_.c:259 ../../install_steps_gtk.pm_.c:249
+msgid "You must have a swap partition"
+msgstr "Jums ir nepieciešama swap sadaļa"
+
+#: ../../install_steps_graphical.pm_.c:261 ../../install_steps_gtk.pm_.c:251
+msgid ""
+"You don't have a swap partition\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+"Jums nav swap sadaļas\n"
+"\n"
+"Vai tomēr turpināt?"
+
+#: ../../install_steps_graphical.pm_.c:287
+msgid "Choose the size you want to install"
+msgstr "Izvēlietis apjomu, ko vēlaties instalēt"
+
+#: ../../install_steps_graphical.pm_.c:334
+msgid "Total size: "
+msgstr "Kopējais apjoms: "
+
+#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:447
+#: ../../standalone/rpmdrake_.c:136
+#, c-format
+msgid "Version: %s\n"
+msgstr "Versija: %s\n"
+
+#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:448
+#: ../../standalone/rpmdrake_.c:137
+#, c-format
+msgid "Size: %d KB\n"
+msgstr "Apjoms: %d KB\n"
+
+#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:360
+msgid "Choose the packages you want to install"
+msgstr "Izvēlieties pakas, ko vēlaties instalēt"
+
+#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:363
+msgid "Info"
+msgstr "Info"
+
+#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:368
+#: ../../install_steps_interactive.pm_.c:129 ../../standalone/rpmdrake_.c:161
+msgid "Install"
+msgstr "Instalēt"
+
+#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:533
+#: ../../install_steps_interactive.pm_.c:382
+msgid "Installing"
+msgstr "Instalēju"
+
+#: ../../install_steps_graphical.pm_.c:499 ../../install_steps_gtk.pm_.c:539
+msgid "Please wait, "
+msgstr "Lūdzu uzgaidiet, "
+
+#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:541
+msgid "Time remaining "
+msgstr "Atlikušais laiks"
+
+#: ../../install_steps_graphical.pm_.c:502 ../../install_steps_gtk.pm_.c:542
+msgid "Total time "
+msgstr "Kopējais laiks"
+
+#: ../../install_steps_graphical.pm_.c:507 ../../install_steps_gtk.pm_.c:551
+#: ../../install_steps_interactive.pm_.c:382
+msgid "Preparing installation"
+msgstr "Sagatavoju instalēšanu"
+
+#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:566
+#, c-format
+msgid "Installing package %s"
+msgstr "Instalēju paku %s"
+
+#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:607
+#: ../../install_steps_gtk.pm_.c:611
+msgid "Go on anyway?"
+msgstr "Tomēr turpināt?"
+
+#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:607
+msgid "There was an error ordering packages:"
+msgstr "Paku kārtošanas laikā atklāta kļūda:"
+
+#: ../../install_steps_graphical.pm_.c:577
+#: ../../install_steps_interactive.pm_.c:997
+msgid "Use existing configuration for X11?"
+msgstr "Vai izmantot jau esošo X11 konfigurāciju?"
+
+#: ../../install_steps_gtk.pm_.c:154
+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:195
+msgid "You don't have any windows partitions!"
+msgstr "Jums nav nevienas windows sadaļas!"
+
+#: ../../install_steps_gtk.pm_.c:197
+msgid "You don't have any enough room for Lnx4win"
+msgstr "Jums nav pietiekoši daudz vietas priekš Lnx4win"
+
+#: ../../install_steps_gtk.pm_.c:213
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX now needs to resize your Windows partition. Be careful: this operation "
+"is\n"
+"dangerous. If you have not already done so, you should first exit the\n"
+"installation, run scandisk under Windows (and optionally run defrag), then\n"
+"restart the installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+"UZMANĪBU!\n"
+"\n"
+"DrakX tagad ir jāizmaina Windows sadaļas izmērs. Esiet uzmanīgs: šī\n"
+"operācija ir bīstama. Ja jūs to vēl neesat izdarījis, vispirms no Windows\n"
+"šo sadaļu pārbaudiet ar scandisk (un papildus palaidiet arī defrag), tad\n"
+"atkārtoti sāciet instalāciju. Bez tam ir jāizveido datu rezerves kopija.\n"
+"Ja esat pārliecināts, spiediet Ok."
+
+#: ../../install_steps_gtk.pm_.c:232
+msgid "Automatic resizing failed"
+msgstr "Automātiska izmēra maiņa neizdevās"
+
+#: ../../install_steps_gtk.pm_.c:261
+msgid "Which partition do you want to use to put Linux4Win?"
+msgstr "Kuru sadaļu vēlaties izmantot Linux4Win novietošanai?"
+
+#: ../../install_steps_gtk.pm_.c:280
+msgid "Choose the sizes"
+msgstr "Izvēlieties izmērus"
+
+#: ../../install_steps_gtk.pm_.c:282
+msgid "Root partition size in MB: "
+msgstr "Saknes sadaļas izmērs (MB): "
+
+#: ../../install_steps_gtk.pm_.c:284
+msgid "Swap partition size in MB: "
+msgstr "Swap sadaļas izmērs (MB): "
+
+#: ../../install_steps_gtk.pm_.c:316
+#, 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:318
+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 paku daudzumu.\n"
+"\n"
+"Zems procentu līmenis instalēs tikai vissvarīgākās pakas;\n"
+"100% līmenī tiks instalētas visas izvēlētās pakas."
+
+#: ../../install_steps_gtk.pm_.c:323
+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 pakām.\n"
+"\n"
+"Ja vēlaties instalēt mazāk, procentuāli izvēlieties instalējamo paku\n"
+"daudzumu. Zems procentu līmenis instalēs tikai vissvarīgākās pakas;\n"
+"%d%% līmenis instalēs tik daudz paku, cik ir iespējams."
+
+#: ../../install_steps_gtk.pm_.c:329
+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:331
+msgid "Percentage of packages to install"
+msgstr "Instalējamo paku procentuālais daudzums"
+
+#: ../../install_steps_gtk.pm_.c:372
+msgid "Automatic dependencies"
+msgstr "Automātiskas atkarības"
+
+#: ../../install_steps_gtk.pm_.c:425 ../../standalone/rpmdrake_.c:101
+msgid "Expand Tree"
+msgstr "Izvērst koku"
+
+#: ../../install_steps_gtk.pm_.c:426 ../../standalone/rpmdrake_.c:102
+msgid "Collapse Tree"
+msgstr "Sakļaut koku"
+
+#: ../../install_steps_gtk.pm_.c:427
+msgid "Toggle between flat and group sorted"
+msgstr "Pārslēgties starp nesakārtotu un sakārtotu pa grupām"
+
+#: ../../install_steps_gtk.pm_.c:445
+msgid "Bad package"
+msgstr "Slikta paka"
+
+#: ../../install_steps_gtk.pm_.c:446
+#, c-format
+msgid "Name: %s\n"
+msgstr "Nosaukums: %s\n"
+
+#: ../../install_steps_gtk.pm_.c:449
+#, c-format
+msgid "Importance: %s\n"
+msgstr "Svarīgums: %s\n"
+
+#: ../../install_steps_gtk.pm_.c:457
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Kopējais izmērs: %d / %d MB"
+
+#: ../../install_steps_gtk.pm_.c:467
+msgid "This is a mandatory package, it can't be unselected"
+msgstr "Šī ir obligāta paka, no tās nevar atteikties"
+
+#: ../../install_steps_gtk.pm_.c:469
+msgid "You can't unselect this package. It is already installed"
+msgstr "Jūs nevarat atteikties no šīs pakas. Tā jau ir instalēta"
+
+#: ../../install_steps_gtk.pm_.c:473
+msgid ""
+"This package must be upgraded\n"
+"Are you sure you want to deselect it?"
+msgstr ""
+"Šo paku ir nepieciešams uzlabot\n"
+"Vai tiešām vēlaties atteikties no tās?"
+
+#: ../../install_steps_gtk.pm_.c:476
+msgid "You can't unselect this package. It must be upgraded"
+msgstr "Jūs nevarat atteikties no šīs pakas. To ir nepieciešams uzlabot"
+
+#: ../../install_steps_gtk.pm_.c:489
+#, fuzzy
+msgid ""
+"You can't select this package as there is not enough space left to install it"
+msgstr "Jūs nevarat atteikties no šīs pakas. Tā jau ir instalēta"
+
+#: ../../install_steps_gtk.pm_.c:492
+msgid "The following packages are going to be installed/removed"
+msgstr "Tiks instalētas/noņemtas sekojošas pakas"
+
+#: ../../install_steps_gtk.pm_.c:501
+msgid "You can't select/unselect this package"
+msgstr "Jūs varat izvēlēties/atteikties no šīs pakas"
+
+#: ../../install_steps_gtk.pm_.c:536
+msgid "Estimating"
+msgstr "Aprēķinu"
+
+#: ../../install_steps_gtk.pm_.c:548 ../../interactive.pm_.c:84
+#: ../../interactive.pm_.c:223 ../../interactive_newt.pm_.c:49
+#: ../../interactive_newt.pm_.c:98 ../../interactive_stdio.pm_.c:27
+#: ../../my_gtk.pm_.c:201 ../../my_gtk.pm_.c:459
+msgid "Cancel"
+msgstr "Atsaukt"
+
+#: ../../install_steps_gtk.pm_.c:561
+#, c-format
+msgid "%d packages"
+msgstr "%d pakas"
+
+#: ../../install_steps_gtk.pm_.c:561
+msgid ", %U MB"
+msgstr ", %U MB"
+
+#: ../../install_steps_gtk.pm_.c:592
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Nomainiet Cd-Rom!\n"
+"\n"
+"Lūdzu ielieciet iekārtā Cd-Rom \"%s\", kad tas ir izdarīts, nospiediet Ok\n"
+"Ja jums nav šī diska, nospiediet Cancel, lai neinstalētu no šī Cd-Rom."
+
+#: ../../install_steps_gtk.pm_.c:611
+msgid "There was an error installing packages:"
+msgstr "Paku instalēšanas laikā atklāta kļūda:"
+
+#: ../../install_steps_interactive.pm_.c:40
+msgid "An error occurred"
+msgstr "Atklāta kļūda"
+
+#: ../../install_steps_interactive.pm_.c:57
+msgid "Please, choose a language to use."
+msgstr "Lūdzu izvēlieties izmantojamo valodu."
+
+#: ../../install_steps_interactive.pm_.c:72
+#: ../../standalone/keyboarddrake_.c:22
+msgid "Keyboard"
+msgstr "Tastatūra"
+
+#: ../../install_steps_interactive.pm_.c:73
+msgid "Please, choose your keyboard layout."
+msgstr "Lūdzu izvēlieties jūsu tastatūras izkārtojumu."
+
+#: ../../install_steps_interactive.pm_.c:81
+msgid "You can choose other languages that will be available after install"
+msgstr "Jūs varat izvēlēties citas valodas, kas būs pieejamas pēc instalēšanas"
+
+#: ../../install_steps_interactive.pm_.c:91
+msgid "Root Partition"
+msgstr "Saknes sadaļa"
+
+#: ../../install_steps_interactive.pm_.c:92
+msgid "What is the root partition (/) of your system?"
+msgstr "Kura ir jūsu sistēmas saknes sadaļa (/)?"
+
+#: ../../install_steps_interactive.pm_.c:100
+#: ../../install_steps_interactive.pm_.c:140
+msgid "Install Class"
+msgstr "Instalēšanas klase"
+
+#: ../../install_steps_interactive.pm_.c:100
+msgid "Which installation class do you want?"
+msgstr "Kuru instalēšanas klasi vēlaties?"
+
+#: ../../install_steps_interactive.pm_.c:102
+msgid "Install/Upgrade"
+msgstr "Instalēt/Uzlabot"
+
+#: ../../install_steps_interactive.pm_.c:102
+msgid "Is this an install or an upgrade?"
+msgstr "Šī ir instalēšana vai uzlabošana?"
+
+#: ../../install_steps_interactive.pm_.c:110
+msgid "Automated"
+msgstr "Automātisks"
+
+#: ../../install_steps_interactive.pm_.c:112
+#: ../../install_steps_interactive.pm_.c:124
+msgid "Customized"
+msgstr "Pielāgota"
+
+#: ../../install_steps_interactive.pm_.c:113
+#: ../../install_steps_interactive.pm_.c:124
+msgid "Expert"
+msgstr "Eksperta"
+
+#: ../../install_steps_interactive.pm_.c:122
+msgid ""
+"Are you sure you are an expert? \n"
+"You will be allowed to make powerfull but dangerous things here."
+msgstr ""
+"Vai esam pārliecināts, ka esat eksperts? \n"
+"Šeit jūs varēsit veikt būtiskas, bet bīstamas lietas."
+
+#: ../../install_steps_interactive.pm_.c:129
+msgid "Upgrade"
+msgstr "Uzlabot"
+
+#: ../../install_steps_interactive.pm_.c:135
+msgid "Normal"
+msgstr "Normāls"
+
+#: ../../install_steps_interactive.pm_.c:136
+msgid "Development"
+msgstr "Izstrādei"
+
+#: ../../install_steps_interactive.pm_.c:137
+msgid "Server"
+msgstr "Serveris"
+
+#: ../../install_steps_interactive.pm_.c:141
+msgid "Which usage is your system used for ?"
+msgstr "Kāds ir jūsu sistēmas pielietojums ?"
+
+#: ../../install_steps_interactive.pm_.c:152
+msgid "Please, choose the type of your mouse."
+msgstr "Lūdzu izvēlieties jūsu peles tipu."
+
+#: ../../install_steps_interactive.pm_.c:160 ../../standalone/mousedrake_.c:38
+msgid "Mouse Port"
+msgstr "Peles ports"
+
+#: ../../install_steps_interactive.pm_.c:161
+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:172
+msgid "Configuring IDE"
+msgstr "Konfigurēju IDE"
+
+#: ../../install_steps_interactive.pm_.c:172
+msgid "IDE"
+msgstr "IDE"
+
+#: ../../install_steps_interactive.pm_.c:182
+msgid "no available partitions"
+msgstr "nav pieejamu sadaļu"
+
+#: ../../install_steps_interactive.pm_.c:184
+#, c-format
+msgid "(%dMB)"
+msgstr "(%dMB)"
+
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Please choose a partition to use as your root partition."
+msgstr "Lūdzu izvēlieties sadaļu, ko izmantot kā saknes sadaļu."
+
+#: ../../install_steps_interactive.pm_.c:198
+msgid "Choose the mount points"
+msgstr "Izvēlieties montēšanas punktus"
+
+#: ../../install_steps_interactive.pm_.c:210
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr "Lai sadaļu tabulas izmaiņas stātos spēkā, jums jāpārstartē dators"
+
+#: ../../install_steps_interactive.pm_.c:236
+msgid "Choose the partitions you want to format"
+msgstr "Izvēlieties sadaļas, ko vēlaties formatēt"
+
+#: ../../install_steps_interactive.pm_.c:240
+msgid "Check bad blocks?"
+msgstr "Pārbaudīt sliktos blokus?"
+
+#: ../../install_steps_interactive.pm_.c:248
+msgid "Formatting partitions"
+msgstr "Formatēju sadaļas"
+
+#: ../../install_steps_interactive.pm_.c:252
+#, c-format
+msgid "Creating and formatting file %s"
+msgstr "Veidoju un formatēju failu %s"
+
+#: ../../install_steps_interactive.pm_.c:255
+msgid "Not enough swap to fulfill installation, please add some"
+msgstr "Instalēšanas pabeigšanai nepietiek swap, palieliniet swap"
+
+#: ../../install_steps_interactive.pm_.c:261
+msgid "Looking for available packages"
+msgstr "Meklēju pieejamās pakas"
+
+#: ../../install_steps_interactive.pm_.c:267
+msgid "Finding packages to upgrade"
+msgstr "Meklēju uzlabojamās pakas"
+
+#: ../../install_steps_interactive.pm_.c:284
+msgid "Your system has not enough space left for installation or upgrade"
+msgstr "Jūsu sistēmā nav pietiekoši daudz vietas instalēšanai vai uzlabošanai"
+
+#: ../../install_steps_interactive.pm_.c:317
+msgid "Package Group Selection"
+msgstr "Paku grupu izvēle"
+
+#: ../../install_steps_interactive.pm_.c:320
+msgid "Individual package selection"
+msgstr "Atsevišķu paku izvēle"
+
+#: ../../install_steps_interactive.pm_.c:360
+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 ""
+"Ja jums ir visi šajā sarakstā norādītie CD, nospiediet Ok.\n"
+"Ja jums nav neviena no norādītajiem CD, nospiediet Cancel.\n"
+"Ja trūkst tikai dažu CD, sarakstā atslēdziet tos un nospiediet Ok."
+
+#: ../../install_steps_interactive.pm_.c:363
+#, c-format
+msgid "Cd-Rom labeled \"%s\""
+msgstr "Cd-Rom ar nosaukumu \"%s\""
+
+#: ../../install_steps_interactive.pm_.c:391
+msgid ""
+"Installing package %s\n"
+"%d%%"
+msgstr ""
+"Instalēju paku %s\n"
+"%d%%"
+
+#: ../../install_steps_interactive.pm_.c:400
+msgid "Post-install configuration"
+msgstr "Pēcinstalēšanas konfigurēšana"
+
+#: ../../install_steps_interactive.pm_.c:410
+msgid "Keep the current IP configuration"
+msgstr "Atstāt esošo IP konfigurāciju"
+
+#: ../../install_steps_interactive.pm_.c:411
+msgid "Reconfigure network now"
+msgstr "Tūlīt pārkonfigurēt tīklu"
+
+#: ../../install_steps_interactive.pm_.c:412
+msgid "Do not set up networking"
+msgstr "Neuzstādīt tīklu"
+
+#: ../../install_steps_interactive.pm_.c:415
+#: ../../install_steps_interactive.pm_.c:420
+msgid "Network Configuration"
+msgstr "Tīkla konfigurācija"
+
+#: ../../install_steps_interactive.pm_.c:416
+msgid "Local networking has already been configured. Do you want to:"
+msgstr "Lokālais tīkls jau konfigurēts. Vai vēlaties:"
+
+#: ../../install_steps_interactive.pm_.c:421
+msgid "Do you want to configure a local network for your system?"
+msgstr "Vai vēlaties konfigurēt lokālo tīklu priekš jūsu sistēmas?"
+
+#: ../../install_steps_interactive.pm_.c:427
+msgid "no network card found"
+msgstr "tīkla karte nav atrasta"
+
+#: ../../install_steps_interactive.pm_.c:449
+msgid "Modem Configuration"
+msgstr "Modēma konfigurēšana"
+
+#: ../../install_steps_interactive.pm_.c:450
+msgid ""
+"Do you want to configure a dialup connection with modem for your system?"
+msgstr ""
+"Vai vēlaties konfigurēt iezvanīšanas tīklu un modēmu priekš jūsu sistēmas?"
+
+#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:463
+#, c-format
+msgid "Configuring network device %s"
+msgstr "Konfigurēju tīkla iekārtu %s"
+
+#: ../../install_steps_interactive.pm_.c:464
+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 ""
+"Lūdzu ievadiet šī datora IP konfigurāciju.\n"
+"Visi dati jāievada kā IP adreses ar punktiem atdalītu decimālu\n"
+"skaitļu veidā (piemēram, 1.2.3.4)."
+
+#: ../../install_steps_interactive.pm_.c:467
+msgid "Automatic IP"
+msgstr "Automātisks IP"
+
+#: ../../install_steps_interactive.pm_.c:467
+msgid "IP address:"
+msgstr "IP adrese:"
+
+#: ../../install_steps_interactive.pm_.c:467
+msgid "Netmask:"
+msgstr "Tīkla maska:"
+
+#: ../../install_steps_interactive.pm_.c:468
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
+
+#: ../../install_steps_interactive.pm_.c:474 ../../printerdrake.pm_.c:89
+msgid "IP address should be in format 1.2.3.4"
+msgstr "IP adreses formātam jābūt 1.2.3.4"
+
+#: ../../install_steps_interactive.pm_.c:492
+msgid "Configuring network"
+msgstr "Konfigurēju tīklu"
+
+#: ../../install_steps_interactive.pm_.c:493
+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 ""
+"Lūdzu ievadiet datora vārdu.\n"
+"Datora vārdam ir jābūt pilnīgi kvalificētam datora vārdam,\n"
+"piemēram ``mybox.mylab.myco.com''.\n"
+"Jūs varat ievadīt arī vārtejas IP adresi, ja tāda ir"
+
+#: ../../install_steps_interactive.pm_.c:497
+msgid "DNS server:"
+msgstr "DNS serveris:"
+
+#: ../../install_steps_interactive.pm_.c:497
+msgid "Gateway device:"
+msgstr "Vārtejas iekārta:"
+
+#: ../../install_steps_interactive.pm_.c:497
+msgid "Gateway:"
+msgstr "Vārteja:"
+
+#: ../../install_steps_interactive.pm_.c:497
+msgid "Host name:"
+msgstr "Datora vārds:"
+
+#: ../../install_steps_interactive.pm_.c:510
+msgid "Try to find a modem?"
+msgstr "Vai mēģināt atrast modēmu?"
+
+#: ../../install_steps_interactive.pm_.c:521
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Lūdzu izvēlieties, kuram seriālajam portam ir pieslēgts modēms."
+
+#: ../../install_steps_interactive.pm_.c:527
+msgid "Dialup options"
+msgstr "Iezvanīšanās opcijas"
+
+#: ../../install_steps_interactive.pm_.c:528
+msgid "Connection name"
+msgstr "Pieslēguma nosaukums"
+
+#: ../../install_steps_interactive.pm_.c:529
+msgid "Phone number"
+msgstr "Telefona numurs"
+
+#: ../../install_steps_interactive.pm_.c:530
+msgid "Login ID"
+msgstr "Lietotāja ID"
+
+#: ../../install_steps_interactive.pm_.c:532
+msgid "Authentication"
+msgstr "Autentifikācija"
+
+#: ../../install_steps_interactive.pm_.c:532
+msgid "CHAP"
+msgstr "CHAP"
+
+#: ../../install_steps_interactive.pm_.c:532
+msgid "PAP"
+msgstr "PAP"
+
+#: ../../install_steps_interactive.pm_.c:532
+msgid "Script-based"
+msgstr "Izmantojot skriptu"
+
+#: ../../install_steps_interactive.pm_.c:532
+msgid "Terminal-based"
+msgstr "Izmantojot termināli"
+
+#: ../../install_steps_interactive.pm_.c:533
+msgid "Domain name"
+msgstr "Domēna vārds"
+
+#: ../../install_steps_interactive.pm_.c:535
+msgid "First DNS Server"
+msgstr "Pirmais DNS serveris"
+
+#: ../../install_steps_interactive.pm_.c:536
+msgid "Second DNS Server"
+msgstr "Otrais DNS serveris"
+
+#: ../../install_steps_interactive.pm_.c:549
+msgid ""
+"You have now the possibility to download software aimed for encryption.\n"
+"\n"
+"WARNING:\n"
+"\n"
+"Due to different general requirements applicable to these software and "
+"imposed\n"
+"by various jurisdictions, customer and/or end user of theses software "
+"should\n"
+"ensure that the laws of his/their jurisdiction allow him/them to download, "
+"stock\n"
+"and/or use these software.\n"
+"\n"
+"In addition customer and/or end user shall particularly be aware to not "
+"infringe\n"
+"the laws of his/their jurisdiction. Should customer and/or end user do not\n"
+"respect the provision of these applicable laws, he/they will incure serious\n"
+"sanctions.\n"
+"\n"
+"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
+"liable\n"
+"for special, indirect or incidental damages whatsoever (including, but not\n"
+"limited to loss of profits, business interruption, loss of commercial data "
+"and\n"
+"other pecuniary losses, and eventual liabilities and indemnification to be "
+"paid\n"
+"pursuant to a court decision) arising out of use, possession, or the sole\n"
+"downloading of these software, to which customer and/or end user could\n"
+"eventually have access after having sign up the present agreement.\n"
+"\n"
+"\n"
+"For any queries relating to these agreement, please contact \n"
+"Mandrakesoft, Inc.\n"
+"2400 N. Lincoln Avenue Suite 243\n"
+"Altadena California 91001\n"
+"USA"
+msgstr ""
+"Tagad jums ir iespēja ielādēt šifrēšanai nepieciešamās programmas.\n"
+"\n"
+"BRĪDINĀJUMS:\n"
+"\n"
+"Sakarā ar to, ka uz šo programmu izmantošanu attiecas dažādas vispārējas\n"
+"prasības un dažāda likumdošana, šo programmu saņēmējam un/vai gala\n"
+"lietotājam ir jāpārliecinās, ka viņa likumdošana ļauj viņam ielādēt,\n"
+"glabāt un/vai izmantot šīs programmas.\n"
+"\n"
+"Bez tam saņēmējam un/vai gala lietotājam ir jābūt īpaši uzmanīgam, lai\n"
+"nepārkāptu šo likumdošanu. Ja saņēmējs un/vai gala lietotājs neievēros\n"
+"atbilstošos likumus, pret viņu tiks pielietotas nopietnas sankcijas.\n"
+"\n"
+"Mandrakesoft vai tā ražotāji un/vai piegādātāji nekādā gadījumā nebūs\n"
+"atbildīgi par tiešiem, netiešiem vai nejaušiem bojājumiem (ieskaitot, bet\n"
+"neaprobežojoties ar ienākumu zaudēšanu, komercdarbības apturēšanu,\n"
+"komerciālu datu zaudēšanu un citiem finansiāliem zaudējumiem, un iespējamu\n"
+"atbildību un atlīdzinājumu, kas būtu jāmaksā saskaņā ar tiesas spriedumu),\n"
+"kas varētu rasties sakarā ar programmu lietošanu, glabāšanu vai vienkāršu\n"
+"ielādēšanu, kurām saņēmējs un/vai gala lietotājs būs spējīgs piekļūt\n"
+"pēc šīs vienošanās apstiprināšanas.\n"
+"\n"
+"\n"
+"Ja jums ir jebkādi jautājumi sakarā ar šo vienošanos, lūdzu sazinieties ar\n"
+"Mandrakesoft, Inc.\n"
+"2400 N. Lincoln Avenue Suite 243\n"
+"Altadena California 91001\n"
+"USA"
+
+#: ../../install_steps_interactive.pm_.c:580
+msgid "Choose a mirror from which to get the packages"
+msgstr "Izvēlieties spoguļserveri, no kura ņemt pakas"
+
+#: ../../install_steps_interactive.pm_.c:588
+msgid "Contacting the mirror to get the list of available packages"
+msgstr "Pieslēdzos spoguļserverim, lai saņemtu pieejamo paku sarakstu"
+
+#: ../../install_steps_interactive.pm_.c:592
+msgid "Please choose the packages you want to install."
+msgstr "Lūdzu izvēlieties pakas, ko vēlaties instalēt"
+
+#: ../../install_steps_interactive.pm_.c:606
+msgid "Which is your timezone?"
+msgstr "Kāda ir jūsu laika josla?"
+
+#: ../../install_steps_interactive.pm_.c:607
+msgid "Is your hardware clock set to GMT?"
+msgstr "Vai datora pulkstenis rāda GMT laiku?"
+
+#: ../../install_steps_interactive.pm_.c:652
+msgid "No password"
+msgstr "Bez paroles"
+
+#: ../../install_steps_interactive.pm_.c:657
+msgid "Use shadow file"
+msgstr "Izmantot shadow failu"
+
+#: ../../install_steps_interactive.pm_.c:657
+msgid "shadow"
+msgstr "shadow"
+
+#: ../../install_steps_interactive.pm_.c:658
+msgid "MD5"
+msgstr "MD5"
+
+#: ../../install_steps_interactive.pm_.c:658
+msgid "Use MD5 passwords"
+msgstr "Izmantot MD5 paroles"
+
+#: ../../install_steps_interactive.pm_.c:660
+msgid "Use NIS"
+msgstr "Izmantot NIS"
+
+#: ../../install_steps_interactive.pm_.c:660
+msgid "yellow pages"
+msgstr "dzeltenās lapas"
+
+#: ../../install_steps_interactive.pm_.c:666
+#, c-format
+msgid "This password 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)"
+
+#: ../../install_steps_interactive.pm_.c:673
+msgid "Authentification NIS"
+msgstr "Autentifikācijas NIS"
+
+#: ../../install_steps_interactive.pm_.c:674
+msgid "NIS Domain"
+msgstr "NIS domēns"
+
+#: ../../install_steps_interactive.pm_.c:674
+msgid "NIS Server"
+msgstr "NIS serveris"
+
+#: ../../install_steps_interactive.pm_.c:699
+#: ../../standalone/adduserdrake_.c:36
+msgid "Accept user"
+msgstr "Apstiprināt lietotāju"
+
+#: ../../install_steps_interactive.pm_.c:699
+#: ../../standalone/adduserdrake_.c:36
+msgid "Add user"
+msgstr "Pievienot lietotāju"
+
+#: ../../install_steps_interactive.pm_.c:700
+#: ../../standalone/adduserdrake_.c:37
+#, c-format
+msgid "(already added %s)"
+msgstr "(jau pievienots %s)"
+
+#: ../../install_steps_interactive.pm_.c:700
+#: ../../standalone/adduserdrake_.c:37
+#, c-format
+msgid ""
+"Enter a user\n"
+"%s"
+msgstr ""
+"Ievadiet lietotāju\n"
+"%s"
+
+#: ../../install_steps_interactive.pm_.c:702
+#: ../../standalone/adduserdrake_.c:39
+msgid "Real name"
+msgstr "Vārds un uzvārds"
+
+#: ../../install_steps_interactive.pm_.c:703 ../../printerdrake.pm_.c:84
+#: ../../printerdrake.pm_.c:109 ../../standalone/adduserdrake_.c:40
+msgid "User name"
+msgstr "Lietotāja vārds"
+
+#: ../../install_steps_interactive.pm_.c:708
+#: ../../standalone/adduserdrake_.c:45
+msgid "Shell"
+msgstr "Čaula"
+
+#: ../../install_steps_interactive.pm_.c:710
+#: ../../standalone/adduserdrake_.c:47
+msgid "Icon"
+msgstr "Ikona"
+
+#: ../../install_steps_interactive.pm_.c:720
+#: ../../standalone/adduserdrake_.c:57
+msgid "This password is too simple"
+msgstr "Šī parole ir pārāk vienkārša"
+
+#: ../../install_steps_interactive.pm_.c:721
+#: ../../standalone/adduserdrake_.c:58
+msgid "Please give a user name"
+msgstr "Lūdzu ievadiet lietotāja vārdu"
+
+#: ../../install_steps_interactive.pm_.c:722
+#: ../../standalone/adduserdrake_.c:59
+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 `_'"
+
+#: ../../install_steps_interactive.pm_.c:723
+#: ../../standalone/adduserdrake_.c:60
+msgid "This user name is already added"
+msgstr "Šāds lietotāja vārds jau ir pievienots"
+
+#: ../../install_steps_interactive.pm_.c:747
+msgid "First floppy drive"
+msgstr "Pirmā diskešu iekārta"
+
+#: ../../install_steps_interactive.pm_.c:748
+msgid "Second floppy drive"
+msgstr "Otrā diskešu iekārta"
+
+#: ../../install_steps_interactive.pm_.c:749
+msgid "Skip"
+msgstr "Izlaist"
+
+#: ../../install_steps_interactive.pm_.c:755
+msgid ""
+"A custom bootdisk provides a way of booting into your Linux system without\n"
+"depending on the normal bootloader. This is useful if you don't want to "
+"install\n"
+"LILO (or grub) on your system, or another operating system removes LILO, or "
+"LILO doesn't\n"
+"work with your hardware configuration. A custom bootdisk can also be used "
+"with\n"
+"the Mandrake rescue image, making it much easier to recover from severe "
+"system\n"
+"failures. Would you like to create a bootdisk for your system?"
+msgstr ""
+"Pielāgotā sāknēšanas diskete piedāvā veidu, kā sāknēt jūsu Linux sistēmu\n"
+"neatkarīgi no parastā sāknētāja. Tas ir noderīgi, ja jūs nevēlaties savā\n"
+"sistēmā uzstādīt LILO (vai grub), vai kāda cita operētājsistēma izdzēš\n"
+"LILO, vai arī LILO nedarbojas ar jūsu dzelžu konfigurāciju. Pielāgoto\n"
+"sāknēšanas disketi var izmantot arī kopā ar Mandrake glabšanas attēlu,\n"
+"atvieglojot atjaunošanu pēc smagiem sistēmas bojājumiem. Vai vēlaties\n"
+"izveidot jūsu sistēmai pielāgotu sāknēšanas disketi?"
+
+#: ../../install_steps_interactive.pm_.c:764
+msgid "Sorry, no floppy drive available"
+msgstr "Diemžēl nav pieejama neviena diskešu iekārta"
+
+#: ../../install_steps_interactive.pm_.c:767
+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:772
+#, c-format
+msgid "Insert a floppy in drive %s"
+msgstr "Ielieciet disketi iekārtā %s"
+
+#: ../../install_steps_interactive.pm_.c:773
+msgid "Creating bootdisk"
+msgstr "Gatavoju sāknēšanas disketi"
+
+#: ../../install_steps_interactive.pm_.c:785 ../../standalone/drakboot_.c:55
+msgid "Installation of LILO failed. The following error occured:"
+msgstr "LILO instalēšana neizdevās. Atklāta šāda kļūda:"
+
+#: ../../install_steps_interactive.pm_.c:806
+msgid "Do you want to use SILO?"
+msgstr "Vai vēlaties izmantot SILO?"
+
+#: ../../install_steps_interactive.pm_.c:817
+msgid "SILO main options"
+msgstr "SILO galvenās opcijas"
+
+#: ../../install_steps_interactive.pm_.c:830
+msgid ""
+"Here are the following entries in SILO.\n"
+"You can add some more or change the existing ones."
+msgstr ""
+"Ir izveidoti sekojoši SILO ieraksti.\n"
+"Jūs varat pievienot jaunus vai izmainīt esošos."
+
+#: ../../install_steps_interactive.pm_.c:858
+msgid "Partition"
+msgstr "Sadaļa"
+
+#: ../../install_steps_interactive.pm_.c:878
+msgid "This label is already in use"
+msgstr "Šis nosaukums jau ir izmantots"
+
+#: ../../install_steps_interactive.pm_.c:891
+msgid "Installation of SILO failed. The following error occured:"
+msgstr "SILO instalēšana neizdevās. Atklāta šāda kļūda:"
+
+#: ../../install_steps_interactive.pm_.c:901
+msgid "Preparing bootloader"
+msgstr "Sagatavoju sāknētāju"
+
+#: ../../install_steps_interactive.pm_.c:909
+msgid "Do you want to use aboot?"
+msgstr "Vai vēlaties izmantot aboot?"
+
+#: ../../install_steps_interactive.pm_.c:912
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Kļūda, instalējot aboot, \n"
+"vai instalēt piespiedu kārtā pat tad, ja tiks iznīcināta pirmā sadaļa?"
+
+#: ../../install_steps_interactive.pm_.c:929
+msgid "Proxies configuration"
+msgstr "Proxy serveru konfigurācija"
+
+#: ../../install_steps_interactive.pm_.c:930
+msgid "HTTP proxy"
+msgstr "HTTP proxy"
+
+#: ../../install_steps_interactive.pm_.c:931
+msgid "FTP proxy"
+msgstr "FTP proxy"
+
+#: ../../install_steps_interactive.pm_.c:937
+msgid "Proxy should be http://..."
+msgstr "Proxy būtu jābūt http://..."
+
+#: ../../install_steps_interactive.pm_.c:938
+msgid "Proxy should be ftp://..."
+msgstr "Proxy būtu jābūt ftp://..."
+
+#: ../../install_steps_interactive.pm_.c:948 ../../standalone/draksec_.c:20
+msgid "Welcome To Crackers"
+msgstr "Sveiciens hakeriem"
+
+#: ../../install_steps_interactive.pm_.c:949 ../../standalone/draksec_.c:21
+msgid "Poor"
+msgstr "Vājš"
+
+#: ../../install_steps_interactive.pm_.c:950 ../../standalone/draksec_.c:22
+msgid "Low"
+msgstr "Zems"
+
+#: ../../install_steps_interactive.pm_.c:951 ../../standalone/draksec_.c:23
+msgid "Medium"
+msgstr "Vidējs"
+
+#: ../../install_steps_interactive.pm_.c:952 ../../standalone/draksec_.c:24
+msgid "High"
+msgstr "Augsts"
+
+#: ../../install_steps_interactive.pm_.c:953 ../../standalone/draksec_.c:25
+msgid "Paranoid"
+msgstr "Paranoisks"
+
+#: ../../install_steps_interactive.pm_.c:966
+msgid "Miscellaneous questions"
+msgstr "Dažādi jautājumi"
+
+#: ../../install_steps_interactive.pm_.c:967
+msgid "(may cause data corruption)"
+msgstr "(var izraisīt datu bojājumus)"
+
+#: ../../install_steps_interactive.pm_.c:967
+msgid "Use hard drive optimisations?"
+msgstr "Izmantot cietā diska optimizācijas?"
+
+#: ../../install_steps_interactive.pm_.c:968 ../../standalone/draksec_.c:46
+msgid "Choose security level"
+msgstr "Izvēlieties drošības līmeni?"
+
+#: ../../install_steps_interactive.pm_.c:969
+#, c-format
+msgid "Precise RAM size if needed (found %d MB)"
+msgstr "Ja nepieciešams, precizējiet RAM apjomu (atrasti %d MB)"
+
+#: ../../install_steps_interactive.pm_.c:970
+msgid "Removable media automounting"
+msgstr "Nomaināmu datu nesēju automontēšana"
+
+#: ../../install_steps_interactive.pm_.c:972
+msgid "Clean /tmp at each boot"
+msgstr "Iztīrīt /tmp katras sāknēšanas laikā"
+
+#: ../../install_steps_interactive.pm_.c:975
+msgid "Enable multi profiles"
+msgstr "Atļaut multi profilus"
+
+#: ../../install_steps_interactive.pm_.c:977
+msgid "Enable num lock at startup"
+msgstr "Ieslēgt num lock palaišanas laikā"
+
+#: ../../install_steps_interactive.pm_.c:980
+msgid "Give the ram size in MB"
+msgstr "Norādiet atmiņas apjomu Mb"
+
+#: ../../install_steps_interactive.pm_.c:982
+msgid "Can't use supermount in high security level"
+msgstr "Nevar izmantot supermount augstā drošības līmenī"
+
+#: ../../install_steps_interactive.pm_.c:1002
+msgid ""
+"DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
+"By default, the 3.3 server is used because it works on more graphic cards.\n"
+"\n"
+"Do you want to try XFree 4.0?"
+msgstr ""
+"DrakX ģenerēs konfigurācijas failus gan priekš XFree 3.3, gan priekš\n"
+"XFree 4.0. Noklusēti tiek izmantots 3.3 serveris, jo tas darbojas ar\n"
+"vairāk grafiskajām kartēm.\n"
+"\n"
+"Vai vēlaties pamēģināt XFree 4.0?"
+
+#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1167
+msgid "Try to find PCI devices?"
+msgstr "Vai mēģināt atrast PCI ierīces?"
+
+#: ../../install_steps_interactive.pm_.c:1034
+msgid "Do you want to generate an auto install floppy for linux replication?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1036
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Ielieciet tukšu disketi iekārtā %s"
+
+#: ../../install_steps_interactive.pm_.c:1044
+msgid "Creating auto install floppy"
+msgstr "Sagatavoju auto instalēšanas disketi"
+
+#: ../../install_steps_interactive.pm_.c:1068
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Daži soļi vēl nav izpildīti.\n"
+"\n"
+"Vai tiešām tagad vēlaties iziet?"
+
+#: ../../install_steps_interactive.pm_.c:1075
+msgid ""
+"Congratulations, installation is complete.\n"
+"Remove the boot media and press return to reboot.\n"
+"\n"
+"For information on fixes which are available for this release of "
+"Linux-Mandrake,\n"
+"consult the Errata available from http://www.linux-mandrake.com/.\n"
+"\n"
+"Information on configuring your system is available in the post\n"
+"install chapter of the Official Linux-Mandrake User's Guide."
+msgstr ""
+"Apsveicam, instalēšana ir pabeigta.\n"
+"Izņemiet instalēšanas disku un nospiediet ievadu, lai pārstartētu.\n"
+"\n"
+"Lai uzzinātu par kļūdu labojumiem, kas pieejami šai Linux-Mandrake\n"
+"versijai, paņemiet Errata failu no http://www.linux-mandrake.com/.\n"
+"\n"
+"Informāciju par jūsu sistēmas konfigurēšanu var atrast Oficiālās\n"
+"Linux-Mandrake Lietotāja Rokasgrāmatas pēcinstalēšanas jautājumiem\n"
+"veltītajā nodaļā."
+
+#: ../../install_steps_interactive.pm_.c:1084
+msgid "Shutting down"
+msgstr "Sistēma tiek aizvērta"
+
+#: ../../install_steps_interactive.pm_.c:1096
+#, c-format
+msgid "Installing driver for %s card %s"
+msgstr "Instalēju draiveri %s kartei %s"
+
+#: ../../install_steps_interactive.pm_.c:1097
+#, c-format
+msgid "(module %s)"
+msgstr "(modulis %s)"
+
+#: ../../install_steps_interactive.pm_.c:1107
+#, c-format
+msgid "Which %s driver should I try?"
+msgstr "Kuru %s draiveri man izmēģināt?"
+
+#: ../../install_steps_interactive.pm_.c:1115
+#, c-format
+msgid ""
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. Would you like to "
+"specify\n"
+"extra options for it or allow the driver to probe your machine for the\n"
+"information it needs? Occasionally, probing will hang a computer, but it "
+"should\n"
+"not cause any damage."
+msgstr ""
+"Dažos gadījumos %s draiverim ir jānorāda papildus informācija, lai tas\n"
+"darbotos pareizi, kaut gan parasti bez tā var iztikt. Vai jūs vēlaties\n"
+"norādīt papildus opcijas, vai arī ļausiet draiverim aptaujāt jūsu datoru,\n"
+"lai sameklētu nepieciešamo informāciju? Dažos gadījumos aptaujāšana var\n"
+"uzkārt jūsu datoru, bet nekad nevar to sabojāt."
+
+#: ../../install_steps_interactive.pm_.c:1120
+msgid "Autoprobe"
+msgstr "Automātiska aptaujāšana"
+
+#: ../../install_steps_interactive.pm_.c:1120
+msgid "Specify options"
+msgstr "Norādīt opcijas"
+
+#: ../../install_steps_interactive.pm_.c:1124
+#, c-format
+msgid "You may now provide its options to module %s."
+msgstr "Jūs varat norādīt opcijas modulim %s."
+
+#: ../../install_steps_interactive.pm_.c:1130
+#, 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 modulim %s nepieciešamās opcijas.\n"
+"Opciju formāts ir ``nosaukums=vērtība nosaukums2=vērtība2 ...''.\n"
+"Piemēram, ``io=0x300 irq=7''"
+
+#: ../../install_steps_interactive.pm_.c:1133
+msgid "Module options:"
+msgstr "Moduļa opcijas:"
+
+#: ../../install_steps_interactive.pm_.c:1143
+#, c-format
+msgid ""
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
+msgstr ""
+"Moduļa %s ielāde neizdevās.\n"
+"Vai vēlaties mēģināt vēlreiz ar citiem parametriem?"
+
+#: ../../install_steps_interactive.pm_.c:1156
+msgid "Try to find PCMCIA cards?"
+msgstr "Vai mēģināt atrast PCMCIA kartes?"
+
+#: ../../install_steps_interactive.pm_.c:1157
+msgid "Configuring PCMCIA cards..."
+msgstr "Konfigurēju PCMCIA kartes..."
+
+#: ../../install_steps_interactive.pm_.c:1157
+msgid "PCMCIA"
+msgstr "PCMCIA"
+
+#: ../../install_steps_interactive.pm_.c:1176
+#, c-format
+msgid "Found %s %s interfaces"
+msgstr "Atradu %s %s interfeisus"
+
+#: ../../install_steps_interactive.pm_.c:1177
+msgid "Do you have another one?"
+msgstr "Vai datorā ir vēl kāds?"
+
+#: ../../install_steps_interactive.pm_.c:1178
+#, c-format
+msgid "Do you have any %s interfaces?"
+msgstr "Vai datorā ir kāds %s interfeiss?"
+
+#: ../../install_steps_interactive.pm_.c:1180 ../../interactive.pm_.c:79
+#: ../../my_gtk.pm_.c:458 ../../printerdrake.pm_.c:124
+msgid "No"
+msgstr "Nē"
+
+#: ../../install_steps_interactive.pm_.c:1180 ../../interactive.pm_.c:79
+#: ../../my_gtk.pm_.c:458
+msgid "Yes"
+msgstr "Jā"
+
+#: ../../install_steps_interactive.pm_.c:1181
+msgid "See hardware info"
+msgstr "Apskatīt dzelžu informāciju"
+
+#: ../../install_steps_interactive.pm_.c:1197
+msgid "Bringing up the network"
+msgstr "Pieslēdzu tīklu"
+
+#: ../../install_steps_interactive.pm_.c:1202
+msgid "Bringing down the network"
+msgstr "Atslēdzu tīklu"
+
+#: ../../install_steps_newt.pm_.c:21
+#, c-format
+msgid "Linux-Mandrake Installation %s"
+msgstr "Linux-Mandrake instalēšana %s"
+
+#: ../../install_steps_newt.pm_.c:32
+msgid ""
+" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+msgstr " <Tab>/<Alt-Tab> pāriet | <Space> izvēlēties | <F12> uz nākamo ekrānu"
+
+#: ../../install_steps_newt.pm_.c:43
+#, c-format
+msgid ""
+"You can now partition your %s hard drive\n"
+"When you are done, don't forget to save using `w'"
+msgstr ""
+"Tagad jūs varat sadalīt diska iekārtu %s\n"
+"Kad esat pabeiguši, neaizmirstiet saglabāt, izmantojot `w'"
+
+#: ../../interactive.pm_.c:244
+msgid "Please wait"
+msgstr "Lūdzu uzgaidiet"
+
+#: ../../interactive_stdio.pm_.c:35
+#, c-format
+msgid "Ambiguity (%s), be more precise\n"
+msgstr "Nenoteiktība (%s), esiet precīzāks\n"
+
+#: ../../interactive_stdio.pm_.c:36 ../../interactive_stdio.pm_.c:51
+#: ../../interactive_stdio.pm_.c:70
+msgid "Bad choice, try again\n"
+msgstr "Slikta izvēle, pamēģiniet vēlreiz\n"
+
+#: ../../interactive_stdio.pm_.c:39
+#, c-format
+msgid " ? (default %s) "
+msgstr " ? (noklusēti %s) "
+
+#: ../../interactive_stdio.pm_.c:52
+#, c-format
+msgid "Your choice? (default %s) "
+msgstr "Jūsu izvēle? (noklusēti %s) "
+
+#: ../../interactive_stdio.pm_.c:71
+#, c-format
+msgid "Your choice? (default %s enter `none' for none) "
+msgstr "Jūsu izvēle? (noklusēti %s ievadiet `none', ja nav) "
+
+#: ../../keyboard.pm_.c:89 ../../keyboard.pm_.c:116
+msgid "Czech"
+msgstr "Čehijas"
+
+#: ../../keyboard.pm_.c:90 ../../keyboard.pm_.c:103 ../../keyboard.pm_.c:117
+msgid "German"
+msgstr "Vācijas"
+
+#: ../../keyboard.pm_.c:91 ../../keyboard.pm_.c:120
+msgid "Dvorak"
+msgstr "Dvoraka"
+
+#: ../../keyboard.pm_.c:92 ../../keyboard.pm_.c:122
+msgid "Spanish"
+msgstr "Spānijas"
+
+#: ../../keyboard.pm_.c:93 ../../keyboard.pm_.c:123
+msgid "Finnish"
+msgstr "Somijas"
+
+#: ../../keyboard.pm_.c:94 ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:124
+msgid "French"
+msgstr "Francijas"
+
+#: ../../keyboard.pm_.c:95 ../../keyboard.pm_.c:143
+msgid "Norwegian"
+msgstr "Norvēģijas"
+
+#: ../../keyboard.pm_.c:96
+msgid "Polish"
+msgstr "Polijas"
+
+#: ../../keyboard.pm_.c:97 ../../keyboard.pm_.c:148
+msgid "Russian"
+msgstr "Krievijas"
+
+#: ../../keyboard.pm_.c:98 ../../keyboard.pm_.c:157
+msgid "UK keyboard"
+msgstr "Apvienotās Karalistes"
+
+#: ../../keyboard.pm_.c:99 ../../keyboard.pm_.c:102 ../../keyboard.pm_.c:158
+msgid "US keyboard"
+msgstr "ASV tastatūra"
+
+#: ../../keyboard.pm_.c:106
+msgid "Armenian (old)"
+msgstr "Armēnijas (vecā)"
+
+#: ../../keyboard.pm_.c:107
+msgid "Armenian (typewriter)"
+msgstr "Armēnijas (rakstāmmašīna)"
+
+#: ../../keyboard.pm_.c:108
+msgid "Armenian (phonetic)"
+msgstr "Armēnijas (fonētiskā)"
+
+#: ../../keyboard.pm_.c:111
+msgid "Belgian"
+msgstr "Beļģijas"
+
+#: ../../keyboard.pm_.c:112
+msgid "Bulgarian"
+msgstr "Bulgārijas"
+
+#: ../../keyboard.pm_.c:113
+msgid "Brazilian (ABNT-2)"
+msgstr "Brazīlijas (ABNT-2)"
+
+#: ../../keyboard.pm_.c:114
+msgid "Swiss (German layout)"
+msgstr "Šveices (vācu izvietojums)"
+
+#: ../../keyboard.pm_.c:115
+msgid "Swiss (French layout)"
+msgstr "Šveices (franču izvietojums)"
+
+#: ../../keyboard.pm_.c:118
+msgid "German (no dead keys)"
+msgstr "Vācijas (bez mēmajiem taustiņiem)"
+
+#: ../../keyboard.pm_.c:119
+msgid "Danish"
+msgstr "Dānijas"
+
+#: ../../keyboard.pm_.c:121
+msgid "Estonian"
+msgstr "Igaunijas"
+
+#: ../../keyboard.pm_.c:125
+msgid "Georgian (\"Russian\" layout)"
+msgstr "Gruzijas (\"krievu\" izvietojums)"
+
+#: ../../keyboard.pm_.c:126
+msgid "Georgian (\"Latin\" layout)"
+msgstr "Gruzijas (\"latīņu\" izvietojums)"
+
+#: ../../keyboard.pm_.c:127
+msgid "Greek"
+msgstr "Grieķijas"
+
+#: ../../keyboard.pm_.c:128
+msgid "Hungarian"
+msgstr "Ungārijas"
+
+#: ../../keyboard.pm_.c:129
+msgid "Croatian"
+msgstr "Horvātijas"
+
+#: ../../keyboard.pm_.c:130
+msgid "Israeli"
+msgstr "Izraēlas"
+
+#: ../../keyboard.pm_.c:131
+msgid "Israeli (Phonetic)"
+msgstr "Izraēlas (fonētiskā)"
+
+#: ../../keyboard.pm_.c:134
+msgid "Icelandic"
+msgstr "Islandes"
+
+#: ../../keyboard.pm_.c:135
+msgid "Italian"
+msgstr "Itālijas"
+
+#: ../../keyboard.pm_.c:136
+msgid "Latin American"
+msgstr "Latīņamerikas"
+
+#: ../../keyboard.pm_.c:137
+msgid "Dutch"
+msgstr "Dānijas"
+
+#: ../../keyboard.pm_.c:138
+#, fuzzy
+msgid "Lithuanian AZERTY (old)"
+msgstr "Lietuvas AZERTY"
+
+#: ../../keyboard.pm_.c:140
+#, fuzzy
+msgid "Lithuanian AZERTY (new)"
+msgstr "Lietuvas AZERTY"
+
+#: ../../keyboard.pm_.c:141
+msgid "Lithuanian \"number row\" QWERTY"
+msgstr "Lietuvas \"numuru rinda\" QWERTY"
+
+#: ../../keyboard.pm_.c:142
+msgid "Lithuanian \"phonetic\" QWERTY"
+msgstr "Lietuvas \"fonētiskā\" QWERTY"
+
+#: ../../keyboard.pm_.c:144
+msgid "Polish (qwerty layout)"
+msgstr "Polijas (qwerty izvietojums)"
+
+#: ../../keyboard.pm_.c:145
+msgid "Polish (qwertz layout)"
+msgstr "Polijas (qwertz izvietojums)"
+
+#: ../../keyboard.pm_.c:146
+msgid "Portuguese"
+msgstr "Portugāles"
+
+#: ../../keyboard.pm_.c:147
+msgid "Canadian (Quebec)"
+msgstr "Kanādas (Kvebeka)"
+
+#: ../../keyboard.pm_.c:149
+msgid "Russian (Yawerty)"
+msgstr "Krievijas (Yawerty)"
+
+#: ../../keyboard.pm_.c:150
+msgid "Swedish"
+msgstr "Zviedrijas"
+
+#: ../../keyboard.pm_.c:151
+msgid "Slovenian"
+msgstr "Slovēnijas"
+
+#: ../../keyboard.pm_.c:152
+msgid "Slovakian"
+msgstr "Slovākijas"
+
+#: ../../keyboard.pm_.c:153
+msgid "Thai keyboard"
+msgstr "Tai tastatūra"
+
+#: ../../keyboard.pm_.c:154
+msgid "Turkish (traditional \"F\" model)"
+msgstr "Turcijas (tradicionālais \"F\" modelis)"
+
+#: ../../keyboard.pm_.c:155
+msgid "Turkish (modern \"Q\" model)"
+msgstr "Turcijas (modernais \"Q\" modelis)"
+
+#: ../../keyboard.pm_.c:156
+msgid "Ukrainian"
+msgstr "Ukrainas"
+
+#: ../../keyboard.pm_.c:159
+msgid "US keyboard (international)"
+msgstr "ASV tastatūra (starptautiskā)"
+
+#: ../../keyboard.pm_.c:160
+msgid "Yugoslavian (latin layout)"
+msgstr "Dienvidslāvijas (latīņu izvietojums)"
+
+# 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.
+#
+#: ../../lilo.pm_.c:176
+#, c-format
+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 ""
+"Juus sveic LILO, opereetaajsisteemu izveeles programma!\n"
+"\n"
+"Lai redzeetu visas iespeejamaas izveeles, nospiediet <TAB>.\n"
+"\n"
+"Lai ielaadeetu vienu no taam, ierakstiet nosaukumu un nospiediet <ENTER> vai "
+"gaidiet %d sekundes, liidz saaksies nokluseetaa ielaade.\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
+# 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
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../lilo.pm_.c:431
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Juus sveic GRUB, opereetaajsisteemu izveeles programma!"
+
+#: ../../lilo.pm_.c:432
+#, c-format
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr "Izmantojiet taustiņus %c un %c, lai izvēlētos vajadzīgo ierakstu."
+
+#: ../../lilo.pm_.c:433
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr "Nospiediet ievadu, lai sāknētu izvēlēto OS, 'e', lai rediģētu"
+
+#: ../../lilo.pm_.c:434
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "komandas pirms sāknēšanas, vai 'c', lai izsauktu komandrindu."
+
+#: ../../lilo.pm_.c:435
+#, c-format
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "Izdalītais ieraksts tiks sāknēts pēc %d sekundēm."
+
+#: ../../lilo.pm_.c:439
+msgid "not enough room in /boot"
+msgstr ""
+
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../lilo.pm_.c:518
+msgid "Desktop"
+msgstr "Darba virsma"
+
+#: ../../lilo.pm_.c:518
+msgid "Start Menu"
+msgstr "Start Menu"
+
+#: ../../mouse.pm_.c:21
+msgid "Sun - Mouse"
+msgstr "Sun - pele"
+
+#: ../../mouse.pm_.c:23
+msgid "Apple ADB Mouse"
+msgstr "Apple ADB pele"
+
+#: ../../mouse.pm_.c:24
+msgid "Apple ADB Mouse (2 Buttons)"
+msgstr "Apple ADB pele (2 pogas)"
+
+#: ../../mouse.pm_.c:25
+msgid "Apple ADB Mouse (3+ Buttons)"
+msgstr "Apple ADB pele (3+ pogas)"
+
+#: ../../mouse.pm_.c:26
+msgid "Apple USB Mouse"
+msgstr "Apple USB pele"
+
+#: ../../mouse.pm_.c:27
+msgid "Apple USB Mouse (2 Buttons)"
+msgstr "Apple USB pele (2 pogas)"
+
+#: ../../mouse.pm_.c:28
+msgid "Apple USB Mouse (3+ Buttons)"
+msgstr "Apple USB pele (3+ pogas)"
+
+#: ../../mouse.pm_.c:30
+msgid "Generic Mouse (PS/2)"
+msgstr "Parasta pele (PS/2)"
+
+#: ../../mouse.pm_.c:31
+msgid "Logitech MouseMan/FirstMouse (ps/2)"
+msgstr "Logitech MouseMan/FirstMouse (PS/2)"
+
+#: ../../mouse.pm_.c:32
+msgid "Generic 3 Button Mouse (PS/2)"
+msgstr "Parasta 3 pogu pele (PS/2)"
+
+#: ../../mouse.pm_.c:33
+msgid "ALPS GlidePoint (PS/2)"
+msgstr "ALPS GlidePoint (PS/2)"
+
+#: ../../mouse.pm_.c:34
+msgid "Logitech MouseMan+/FirstMouse+ (PS/2)"
+msgstr "Logitech MouseMan+/FirstMouse+ (PS/2)"
+
+#: ../../mouse.pm_.c:35
+msgid "Kensington Thinking Mouse (PS/2)"
+msgstr "Kensington Thinking Mouse (PS/2)"
+
+#: ../../mouse.pm_.c:36
+msgid "ASCII MieMouse (PS/2)"
+msgstr "ASCII MieMouse (PS/2)"
+
+#: ../../mouse.pm_.c:37
+msgid "Genius NetMouse (PS/2)"
+msgstr "Genius NetMouse (PS/2)"
+
+#: ../../mouse.pm_.c:38
+msgid "Genius NetMouse Pro (PS/2)"
+msgstr "Genius NetMouse Pro (PS/2)"
+
+#: ../../mouse.pm_.c:39
+msgid "Genius NetScroll (PS/2)"
+msgstr "Genius NetScroll (PS/2)"
+
+#: ../../mouse.pm_.c:40
+msgid "Microsoft IntelliMouse (PS/2)"
+msgstr "Microsoft IntelliMouse (PS/2)"
+
+#: ../../mouse.pm_.c:41
+msgid "ATI Bus Mouse"
+msgstr "ATI Bus pele"
+
+#: ../../mouse.pm_.c:42
+msgid "Microsoft Bus Mouse"
+msgstr "Microsoft Bus pele"
+
+#: ../../mouse.pm_.c:43
+msgid "Logitech Bus Mouse"
+msgstr "Logitech Bus pele"
+
+#: ../../mouse.pm_.c:44
+msgid "USB Mouse"
+msgstr "USB pele"
+
+#: ../../mouse.pm_.c:45
+msgid "USB Mouse (3 buttons or more)"
+msgstr "USB pele (3 vai vairākas pogas)"
+
+#: ../../mouse.pm_.c:47
+msgid "No Mouse"
+msgstr "Nav peles"
+
+#: ../../mouse.pm_.c:48
+msgid "Microsoft Rev 2.1A or higher (serial)"
+msgstr "Microsoft Rev 2.1A vai jaunāka (seriāla)"
+
+#: ../../mouse.pm_.c:49
+msgid "Logitech CC Series (serial)"
+msgstr "Logitech CC Series (seriāla)"
+
+#: ../../mouse.pm_.c:50
+msgid "Logitech MouseMan+/FirstMouse+ (serial)"
+msgstr "Logitech MouseMan+/FirstMouse+ (seriāla)"
+
+#: ../../mouse.pm_.c:51
+msgid "ASCII MieMouse (serial)"
+msgstr "ASCII MieMouse (seriāla)"
+
+#: ../../mouse.pm_.c:52
+msgid "Genius NetMouse (serial)"
+msgstr "Genius NetMouse (seriāla)"
+
+#: ../../mouse.pm_.c:53
+msgid "Microsoft IntelliMouse (serial)"
+msgstr "Microsoft IntelliMouse (seriāla)"
+
+#: ../../mouse.pm_.c:54
+msgid "MM Series (serial)"
+msgstr "MM Series (seriāla)"