aboutsummaryrefslogtreecommitdiffstats
path: root/initscripts.spec
blob: 98661c76491f1f246cae1f834a74cf10a0b99f71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
Summary: The inittab file and the /etc/init.d scripts
Name: initscripts
Version: 8.66
# ppp-watch is GPLv2+, everything else is GPLv2
License: GPLv2 and GPLv2+
Group: System Environment/Base
Release: 1
Source: initscripts-%{version}.tar.bz2
BuildRoot: /%{_tmppath}/%{name}-%{version}-%{release}-root
Requires: mingetty, /bin/awk, /bin/sed, mktemp, e2fsprogs >= 1.15
Requires: /sbin/sysctl, syslog
Requires: /sbin/fuser, /bin/grep
Requires: /sbin/pidof
Requires: module-init-tools
Requires: util-linux >= 2.10s-11, mount >= 2.11l
Requires: bash >= 3.0, SysVinit >= 2.85-38
Requires: /sbin/ip, /sbin/arping, net-tools
Requires: /etc/redhat-release, dev
Requires: ethtool >= 1.8-2, /sbin/runuser
Requires: udev >= 115-1
Requires: popt >= 1.12-2
Requires: cpio, findutils
Conflicts: mkinitrd < 4.0, kernel < 2.6.12, mdadm < 2.6.4-3
Conflicts: ypbind < 1.6-12, psacct < 6.3.2-12, kbd < 1.06-19, lokkit < 0.50-14
Conflicts: dhclient < 3.0.3-7
Conflicts: tcsh < 6.13-5
Conflicts: xorg-x11, glib2 < 2.11.1-2
Conflicts: alsa-utils < 1.0.14-0.5.rc2.fc7
# http://bugzilla.redhat.com/show_bug.cgi?id=252973
Conflicts: nut < 2.2.0
Obsoletes: rhsound sapinit
Obsoletes: hotplug
Prereq: /sbin/chkconfig, /usr/sbin/groupadd, /bin/sed, coreutils
BuildRequires: glib2-devel popt-devel gettext pkgconfig

%description
The initscripts package contains the basic system scripts used to boot
your Red Hat or Fedora system, change runlevels, and shut the system down
cleanly.  Initscripts also contains the scripts that activate and
deactivate most network interfaces.

%prep
%setup -q

%build
make

%install
rm -rf $RPM_BUILD_ROOT
make ROOT=$RPM_BUILD_ROOT SUPERUSER=`id -un` SUPERGROUP=`id -gn` mandir=%{_mandir} install

%find_lang %{name}

%ifnarch s390 s390x
rm -f \
 $RPM_BUILD_ROOT/etc/sysconfig/network-scripts/ifup-ctc \
 $RPM_BUILD_ROOT/etc/sysconfig/network-scripts/ifup-iucv \
 $RPM_BUILD_ROOT/etc/udev/rules.d/55-ccw.rules \
 $RPM_BUILD_ROOT/lib/udev/ccw_init
%else
rm -f \
 $RPM_BUILD_ROOT/etc/rc.d/rc.sysinit.s390init \
 $RPM_BUILD_ROOT/etc/sysconfig/init.s390
%endif

%pre
/usr/sbin/groupadd -g 22 -r -f utmp

%post
touch /var/log/wtmp /var/run/utmp /var/log/btmp
chown root:utmp /var/log/wtmp /var/run/utmp /var/log/btmp
chmod 664 /var/log/wtmp /var/run/utmp
chmod 600 /var/log/btmp

/sbin/chkconfig --add netfs
/sbin/chkconfig --add network
/sbin/chkconfig --add netconsole

# Handle converting prefdm back to respawn
if fgrep -q "x:5:once:/etc/X11/prefdm -nodaemon" /etc/inittab ; then
    sed --in-place=.rpmsave 's|^x:5:once:/etc/X11/prefdm -nodaemon|x:5:respawn:/etc/X11/prefdm -nodaemon|g' /etc/inittab
fi

%preun
if [ $1 = 0 ]; then
  /sbin/chkconfig --del netfs
  /sbin/chkconfig --del network
  /sbin/chkconfig --del netconsole
fi

%triggerun -- initscripts < 7.62
/sbin/chkconfig --del random
/sbin/chkconfig --del rawdevices
exit 0

%clean
rm -rf $RPM_BUILD_ROOT

%files -f %{name}.lang
%defattr(-,root,root)
%dir /etc/sysconfig/network-scripts
%config(noreplace) %verify(not md5 mtime size) /etc/adjtime
%config(noreplace) /etc/sysconfig/init
%config(noreplace) /etc/sysconfig/netconsole
%config(noreplace) /etc/sysconfig/readonly-root
/etc/sysconfig/network-scripts/ifdown
/sbin/ifdown
%config /etc/sysconfig/network-scripts/ifdown-post
/etc/sysconfig/network-scripts/ifup
/sbin/ifup
%dir /etc/sysconfig/console
%dir /etc/sysconfig/modules
%dir /etc/sysconfig/networking
%dir /etc/sysconfig/networking/devices
%dir /etc/sysconfig/networking/profiles
%dir /etc/sysconfig/networking/profiles/default
%config /etc/sysconfig/network-scripts/network-functions
%config /etc/sysconfig/network-scripts/network-functions-ipv6
%config /etc/sysconfig/network-scripts/init.ipv6-global
%config /etc/sysconfig/network-scripts/ifcfg-lo
%config /etc/sysconfig/network-scripts/ifup-ipx
%config /etc/sysconfig/network-scripts/ifup-post
%config /etc/sysconfig/network-scripts/ifdown-ppp
%config /etc/sysconfig/network-scripts/ifdown-sl
%config /etc/sysconfig/network-scripts/ifup-ppp
%config /etc/sysconfig/network-scripts/ifup-sl
%config /etc/sysconfig/network-scripts/ifup-routes
%config /etc/sysconfig/network-scripts/ifdown-routes
%config /etc/sysconfig/network-scripts/ifup-plip
%config /etc/sysconfig/network-scripts/ifup-plusb
%config /etc/sysconfig/network-scripts/ifup-bnep
%config /etc/sysconfig/network-scripts/ifdown-bnep
%config /etc/sysconfig/network-scripts/ifup-eth
%config /etc/sysconfig/network-scripts/ifdown-eth
%config /etc/sysconfig/network-scripts/ifup-ipv6
%config /etc/sysconfig/network-scripts/ifdown-ipv6
%config /etc/sysconfig/network-scripts/ifup-ipsec
%config /etc/sysconfig/network-scripts/ifdown-ipsec
%config /etc/sysconfig/network-scripts/ifup-sit
%config /etc/sysconfig/network-scripts/ifdown-sit
%config /etc/sysconfig/network-scripts/ifup-tunnel
%config /etc/sysconfig/network-scripts/ifdown-tunnel
%config /etc/sysconfig/network-scripts/ifup-aliases
%config /etc/sysconfig/network-scripts/ifup-ippp
%config /etc/sysconfig/network-scripts/ifdown-ippp
%config /etc/sysconfig/network-scripts/ifup-wireless
/etc/sysconfig/network-scripts/ifup-isdn
/etc/sysconfig/network-scripts/ifdown-isdn
/etc/sysconfig/network-scripts/net.hotplug
%ifarch s390 s390x
%config /etc/sysconfig/network-scripts/ifup-ctc
%config /etc/sysconfig/network-scripts/ifup-iucv
%endif
%config(noreplace) /etc/networks 
/etc/rwtab
%dir /etc/rwtab.d
/etc/statetab
%dir /etc/statetab.d
%config(noreplace) /etc/event.d/*
/etc/udev/rules.d/*
%config /etc/X11/prefdm
%config(noreplace) /etc/inittab
%dir /etc/rc.d
%dir /etc/rc.d/rc[0-9].d
%config(missingok) /etc/rc.d/rc[0-9].d/*
/etc/rc[0-9].d
/etc/rc
%dir /etc/rc.d/init.d
/etc/rc.local
/etc/rc.sysinit
%config /etc/rc.d/init.d/*
%config /etc/rc.d/rc
%config(noreplace) /etc/rc.d/rc.local
%config /etc/rc.d/rc.sysinit
%config(noreplace) /etc/sysctl.conf
%config /etc/profile.d/lang.sh
%config /etc/profile.d/lang.csh
/usr/sbin/sys-unconfig
/sbin/setsysfont
/bin/doexec
/bin/ipcalc
/bin/usleep
%attr(4755,root,root) /usr/sbin/usernetctl
/sbin/consoletype
/sbin/fstab-decode
/sbin/genhostid
/sbin/getkey
%attr(2755,root,root) /sbin/netreport
/sbin/initlog
/lib/udev/rename_device
/lib/udev/console_init
/lib/udev/console_check
%ifarch s390 s390x
/lib/udev/ccw_init
%endif
/sbin/service
/sbin/ppp-watch
%{_mandir}/man*/*
%dir %attr(775,root,root) /var/run/netreport
%dir /etc/ppp
%dir /etc/ppp/peers
%config /etc/ppp/ip-up
%config /etc/ppp/ip-down
%config /etc/ppp/ip-up.ipv6to4
%config /etc/ppp/ip-down.ipv6to4
%config /etc/ppp/ipv6-up
%config /etc/ppp/ipv6-down
%config /etc/initlog.conf
%dir /etc/NetworkManager
%dir /etc/NetworkManager/dispatcher.d
/etc/NetworkManager/dispatcher.d/00-netreport
%doc sysconfig.txt sysvinitfiles ChangeLog static-routes-ipv6 ipv6-tunnel.howto ipv6-6to4.howto changes.ipv6 COPYING
/var/lib/stateless
%ghost %attr(0600,root,utmp) /var/log/btmp
%ghost %attr(0664,root,utmp) /var/log/wtmp
%ghost %attr(0664,root,utmp) /var/run/utmp

%changelog
* Tue Mar 11 2008 Bill Nottingham <notting@redhat.com> - 8.66-1
- use upstart to start rhgb (#433156, <cdahlin@ncsu.edu>)

* Mon Mar 10 2008 Bill Nottingham <notting@redhat.com> - 8.65-1
- Add a serial console udev/upstart handler (#434764, indirectly)
- Add some upstart notification for sysv scripts (modified from <cjdahlin@ncsu.edu>, #431231)
- Handle _rnetdev correctly (#435358, <pjones@redhat.com>)
- various minor speedups (<arjan@infradead.org>)
- translation updates: el, fr
- disable network by default, in favor of NetworkManager

* Tue Feb 26 2008 Bill Nottingham <notting@redhat.com> - 8.64-1
- Add a console_init udev helper to do console initialization
- add /sbin/pidof requirement (#434863)

* Fri Feb  1 2008 Bill Nottingham <notting@redhat.com> - 8.63-1
- don't start RAID arrays in rc.sysinit, that's done by udev (corollary of #429604)
- add a NetworkManager-dispatcher script that does netreport on interface changes
- use udev rules to set the clock, avoiding issues with modular rtcs (#290731)

* Mon Jan 21 2008 Bill Nottingham <notting@redhat.com> - 8.62-1
- rc.d/rc.sysinit: fix syntax error (#429556)
- migrate sr@Latn -> sr@latin (<kmilos@gmail.com>)

* Fri Jan 18 2008 Bill Nottingham <notting@redhat.com> - 8.61-1
- use lvm, not lvm.static (#429222)
- ifup-eth: don't do something odd if we find a mac address that
  matches the user-set MACADDR (#251415)
- rc.sysinit: fix root fs check to catch 'rw,ordered,noatime,etc.' properly
  (#334171)
- rc.sysinit: Use proper invocations for authconfig, system-config-network
  (#426372, #428202)
- service: handle unreadable scripts (#427767)
- initscripts.spec: add requirements for stateless
- fix perms on /etc/profile.d (#407531, <ville.skytta@iki.fi>)
- rename_device: handle quoted HWADDR, etc. in ifcfg scripts (#351291)
- minor stateless fixes
- Makefile cleanups (from OLPC, <cscott@cscott.net>)
- translation updates: fr, ru, nb
- don't endelessly loop on ifdown (#390271)
- rc.sysinit: - fix encrypted swap partitions with random key
  (<harald@redhat.com>)

* Tue Oct  9 2007 Bill Nottingham <notting@redhat.com> - 8.60-1
- don't chvt with rhgb - just kill it when needed

* Mon Oct  8 2007 Bill Nottingham <notting@redhat.com> - 8.59-1
- rc.sysinit: fix rhgb check
- prefdm: add wdm section (#248087)
- init.d/functions, halt: clean up some extraneous delays (#219816)
- ifup-wireless: set mode before bringing link up (#254046, <linville@redhat.com>)
- translation updates: pt_BR, hr

* Fri Oct  5 2007 Bill Nottingham <notting@redhat.com> - 8.58-1
- revert kernel conflict so that xen can still work (#319401)
- rename_device, 60-net.rules: only suggest an interface name (part of #264901)
- require newer udev for persistent net rules (part of #264901)
- don't hang if someone puts a dangling pipe in /etc/rhgb/temp (#251219)
- genhostid: fix for 64-bit systems (#306811)
- more bash matching fixes (#220087)
- translation updates: is, nb

* Tue Sep 25 2007 Bill Nottingham <notting@redhat.com> - 8.57-1
- work around upstream bash changes (#220087, modified from <nvigier@mandriva.com>)
- init.d/network: add Should-Start for firewall services
- ifup-eth: handle arp_ip_target separately (#288151, <agospoda@redhat.com>)
- rc.sysinit: remove rc.serial support - should be udev rules
- rc.sysinit: remove acpi module loading - now supported by the kernel automatically
- fix en_GB translation (#271201)
- translation updates: as, bn_IN, bg, ca, cs, de, el, es, fi, gu, hi, it, ja, ko, kn, ml,
  mr, nb, nl, pa, pl, pt, pt_BR, ro, sl, sr, sr@Latn, sv, ta, te, zh_CN

* Wed Aug 29 2007 Bill Nottingham <notting@redhat.com> - 8.56-1 
- rename_device: fix open() call
- rc.sysinit: optimize out some excess greps (<harald@redhat.com>)
- halt: support newer nut syntax, conflict with old versions (#252973, <tsmetana@redhat.com>)
- fix buildreq from popt -> popt-devel
 - newer popt is in /lib|/lib64 - require it, and link dynamically
- rc.sysinit: added support for cryptsetup-uuids (bug #242078, <harald@redhat.com>)
- netconsole: fix status(), assorted other cleanups
- translation updates: fr, ro, sk

* Fri Jul 27 2007 Bill Nottingham <notting@redhat.com>
- add /etc/networks (#239602)
- rc.sysinit: fix quotacheck, remove obsolete convertquota (#249003, <tometzky@batory.org.pl>)
- rc.sysinit: add gfs2 to the 'don't mount here' list (#248985)
- netfs: check for rpcbind, not portmap (#245595)
- ifup-eth: set 'primary' later for bonding devices (#236897, <agospoda@redhat.com>)
- translation updates: cy, en_GB, mk, ml, ms, pl, sk, ta, zh_CN

* Tue Jul 17 2007 Nils Philippsen <nphilipp@redhat.com>
- avoid calling unicode_start unnecessarily often during startup/shutdown which
  causes certain monitor/video card combos to flicker heavily (#237839)

* Tue May 15 2007 Bill Nottingham <notting@redhat.com> 8.54-1
- translation updates: as, bg, cs, ja, ms
- redirect bogus errors from cryptsetup to /dev/null <karsten@redhat.com>

* Thu Apr 19 2007 Bill Nottingham <notting@redhat.com> 8.53-1
- init.d/halt: use sound saving wrapper from alsa-utils, conflict with
  older versions (#236916)
- usernetctl: drop user gid (#229372)
- translation updates: ta, pt_BR, nb, as, hi, de

* Mon Apr 16 2007 Bill Nottingham <notting@redhat.com> 8.52-1
- lang.sh: fix locales where SYSFONT is not the default (#229996)
- ifup-wireless: properly quote arguments (#234756)
- readonly-root: add options for mounting state (#234916)
- rwtab: updates (#219339, <law@redhat.com>)
- add netconsole init script (#235952)
- disable link checking when PERSISTENT_DHCLIENT is set (#234075)
- restore file context on /etc/resolv.conf (#230776, <dwalsh@redhat.com>)
- ifup-post: only use the first address (#230157, <michal@harddata.com>)
- ifup-ipsec: allow overriding of my_identifier (#229343, <cmadams@hiwaay.net>)
- ifup-wireless: set link up before itweaking wireless parameters (#228253)
- rc.sysinit: restorecon on mount points when relabeling (#220322)
- init.ipv6-global: cleanup & optimize sysctl usage (#217595)
- ifup-eth: support ETHTOOL_OPTS on bridge devices (#208043, <bbaetz@acm.org>)
- network-functions-ipv6: as we don't use NETWORKING_IPV6, silence errors (#195845)
- fix description (#229919)
- translation updates

* Fri Feb 23 2007 Bill Nottingham <notting@redhat.com> 8.51-1
- fix 'Fedora Fedora' in rc.sysinit
- halt: use kexec -x to not shut down network (#223932, <mchristi@redhat.com>)
- network_functions: fix is_bonding_device logic (#229643)
- translation updates: nb

* Mon Feb 19 2007 Bill Nottingham <notting@redhat.com> 8.50-1
- lang.csh, lang.sh: if $LANG is set, don't override it (#229102)
- initlog.1: fix man page formatting (<esr@thyrsus.com>)
- network-functions: simplify bonding test (#215887, <herbert.xu@redhat.com>)
- fix ifup-post when lookup fails (#220318, <hiroshi.fujishima+redhat@gmail.com>)
- add bridging docs (#221412, <markmc@redhat.com>)
- release bonding slaves properly (#220525)
- fix ppp-watch with ONBOOT=yes (#216749)
- support VLAN_PLUS_VID_NO_PAD (#222975, #223011)
- remove NETWORKING_IPV6; to disable, use a modprobe rule
- translation updates: ms, de, el, pt_BR, fi, bs, sr, it, ko

* Tue Dec 19 2006 Bill Nottingham <notting@redhat.com> 8.49-1
- rc.sysinit: remove raidautorn (#219226)
- ifup-eth: set MACADDR, MTU before initializing bonding slaves, etc (#218792)
- translation updates: mr, ms, hi, te, ml

* Tue Nov 28 2006 Bill Nottingham <notting@redhat.com> 8.48-1
- add a step to rename any temporarily renamed devices (#208740, #214817)
- make sure network modules don't get accidentally reloaded (#211474)
- rc.sysinit: fix dmraid test (#216334)
- init.d/halt: don't unmount network filesystems
- ipsec: Add a way to manually manage racoon.conf (#159343, <mitr@redhat.com>)
- sysconfig.txt: Document ~/.i18n (#199323, <mitr@redhat.com>)
- some translation updates

* Mon Nov  6 2006 Bill Nottingham <notting@redhat.com> 8.47-1
- lang.{sh,csh}: handle sinhalese as well in CJKI clauses (#212438)
- rc.sysinit: add '--auto=yes' to mdadm invocation (#213671)
- rename_device: fix incorrect handling of .bak files
- mount tmpfs with -n (#213132)
- various SUBCHANNELS related s390 fixage (#204803)
- lang.{sh,csh}: support iso-8859-8 (#212738, <matan@svgalib.org>)

* Fri Oct 27 2006 Bill Nottingham <notting@redhat.com> 8.46-1
- ifup-eth: restorecon on moved lease file
- rc.sysinit: handle "nodmraid" and "nompath" command line options (#209377, <pjones@redhat.com>)
- revert early-login support (#210836, essentially)
- blacklist CJKI on the virtual console (#120819)
- rc.sysinit: use dmraid.static (#211297)
- use sysfs interface for bonding (#202443, <agospoda@redhat.com>)
- use /etc/statetab, /etc/statetab.d for local state (#211839, <markmc@redhat.com>)
- fix or_IN and similar locales (#212219)
- use SUBCHANNELS as the primary key for s390 network devices (#204803)
- translation updates

* Fri Oct  6 2006 Bill Nottingham <notting@redhat.com> 8.45-1
- lang.csh/lang.sh - do *not* stty iutf8; too much chaos with SIGTTOU
  (reverts: #186961; fixes #209469)
- translation updates: ms

* Wed Oct  4 2006 Bill Nottingham <notting@redhat.com> 8.44-1
- separate tmpfs-usage for state from readonly-root
- set keymap correctly in non-utf8 locale (#167363)
- setsysfont: run unicode_stop if in non-unicode locale
- lang.csh/lang.sh: set iutf8 if appropriate (#186961)
- lang.csh/lang.sh: handle non-utf8 locales correctly (#200100)
- rc.sysinit: redirect stderr from setsysfont (#209204, indirectly)
- rwtab: fix iscsi file location (#208864)
- translation updates: el, da, as, or
- fix stateless updates (#206331, <law@redhat.com>)

* Wed Sep 27 2006 Bill Nottingham <notting@redhat.com> 8.43-1
- move ccwgroup initialization to a udev rule (should fix #199139,
  #199655, #169161)
- init.d/functions: don't write to gdmfifo
- remove unused-since-RHL-7 consolechars code, update docs (#206106)
- stateless updates (#206331, <law@redhat.com>)
- translation updates (el, ms, hr, sl)

* Thu Sep 21 2006 Bill Nottingham <notting@redhat.com> 8.42-1
- run rc.sysinit, /etc/rc in monitor mode (part of #184340)
- use a better check for 'native' services (#190989, #110761, adapted
  from <matthias@rpmforge.net>)
  
* Tue Sep 19 2006 Bill Nottingham <notting@redhat.com> 8.41-1
- fix network ipv6 hang (#207137, others)
- rc.sysinit: change blkid.tab path to /etc/blkid/blkid.tab
- rename_device: reset DEVPATH also when renaming (#206884, <phil@fifi.org>)
- sysconfig.txt: clarify onboot/onparent usage

* Fri Sep 15 2006 Bill Nottingham <notting@redhat.com> 8.40-1
- translation updates
- rename_device: use '__tmpXXXX' instead of 'devXXXX' as a temporary device
  name to avoid any realistic namespace clashes
- rc.sysinit: set default affinity if specified on commandline (#203359)
- always pass path to '.' (#206035)
- run setsysfont, loadkeys always when /dev/tty{0,1} exist (#150769)
- allow going to a shell when system is shut down cleanly (from <dwalsh@redhat.com>)

* Tue Sep  5 2006 Bill Nottingham <notting@redhat.com> 8.39-1
- translation updates
- Handle partitions on multipath/dmraid better (<pjones@redhat.com>)
- make /dev/mapper/control ourselves (<pjones@redhat.com>)
- init.d/network: simplify 'status' call
- fix actual 169.254 networks (#203591)
- rc.sysinit: don't run vgscan (#191879)
- init.d/halt: don't umount /dev/root<foo> (<oblin@mandriva.com>)
- rc.sysinit: catch more dmraid errors (#200683)
- support 'tmp' option in /etc/crypttab (#201382, <mitr@redhat.com>,
  <lv@lekv.de>)
- IPv6 updates (<pb@bieringer.de>, includes a fix for #143452)

* Tue Aug  1 2006 Bill Nottingham <notting@redhat.com> 8.38-1
- translation updates
- bring down bonding slaves on ifdown (#199706)
- support LINKDELAY for dhcp (#191137)
- netfs: run multipath on netdev devices (#180977)
- halt: use /proc/mounts instead of /etc/mtab (#198426, <mitr@redhat.com>)
- rc.sysinit: fix getkey race (#191453, <mitr@redhat.com>)
- spec cleanups (#188614, <kloczek@rudy.mif.pg.gda.pl>)
- support aliases on vlan (#193133, <mitr@redhat.com>)
- clean up ifcfg file handling (<mitr@redhat.com>, <michal@harddata.com>)
- GRE and IPIP tunnel support (#168990, <mitr@redhat.com>,
  <razvan.vilt@linux360.ro>, <aaron.hope@unh.edu>, <sean@enertronllc.com>)
- rc.sysinit: don't format encrypted swap always (#127378)
- don't try to add routes to alias devices (#199825, #195656)

* Fri Jul 21 2006 Bill Nottingham <notting@redhat.com> 8.37-1
- update translations

* Fri Jul 21 2006 Bill Nottingham <notting@redhat.com> 8.36-1
- rework automatic swapon - only run if AUTOSWAP=yes, and fix errors
  (#198695, #196179, #196208)
- redo single so it starts last in runlevel 1, and doesn't kill/start
  services itself
- add configurable delay for killproc() (#198429, <jorton@redhat.com>)
- fix loop in rename_device (#199242, <markmc@redhat.com>)
- rc.sysinit: stateless updates (#197972, <law@redhat.com>)
- support for copying dhcp leases from initramfs (#198601, <markmc@redhat.com>)
- readonly-root: SELinux works now in the kernel, allow it
- init.d/network: don't bring down network if root is on a network device
- init.d/halt: don't use -i to halt; causes problems with iscsi
- add support for routing rule-$device (#132252, <mitr@redhat.com>)
- fix rhgb output (#192604, <tonynelson@georgeanelson.com>)
- fix crypttab options for LUKS (#197656, <mitr@redhat.com>)
- ipsec: various fixes & new features (#150682, #168972, <mitr@redhat.com>, <alex@milivojevic.org>)
- ipsec: add check for IKE_METHOD (#197576, <john_smyth@mail.ru>)
- rename_device: ignore alias devices, fix race (#186355)
- ifup/ifdown: don't mark as %config
- rwtab: some additions/cleanup

* Mon Jun 12 2006 Bill Nottingham <notting@redhat.com> 8.35-1
- readonly root enhancments (modified from <law@redhat.com>, #193164)
- encrypted swap, non-root filesystem support (#127378, <mitr@redhat.com, <redhat@flyn.org>)
- clarify killproc usage (#193711, <mitr@redhat.com>)
- document BRIDGE= (#192576, <mitr@redhat.com>)
- rc.sysinit: allow for sulogin instead of automatic relabeling (<dwalsh@rehdat.com>)

* Tue May 23 2006 Bill Nottingham <notting@redhat.com> 8.34-1
- link glib2 dynamically now that it's in /lib, conflict with older
  versions
- handle cups specially when cleaning /var (#189168)
- remove ifdown-aliases (<mitr@redhat.com>)
- ifup-ipsec: fix key handling when only one of AH or ESP is used
  (#166257, <mituc@iasi.rdsnet.ro>)
- IPv6 updates, including RFC 3041 support (<pb@bieringer.de>)
- routing fixes, add METRIC support for default routes (#124045, <mitr@redhat.com>)
- fix handling of mount points with white space (#186713, <mitr@redhat.com>)

* Thu Apr 20 2006 Bill Nottingham <notting@redhat.com> 8.33-1
- support for readonly root
- rc.sysinit: remove call to zfcpconf.sh - that should be udev rules
- ifup*: add NETWORKDELAY and LINKDELAY (#176851, <mitr@redhat.com>)
- rc.sysinit: remove obsolete initrd code (<pjones@redhat.com>)

* Mon Apr 10 2006 Bill Nottingham <notting@redhat.com> 8.32-1
- netfs: fix redirect (#187505)
- rc.sysinit add forcequotacheck (#168118, <mitr@redhat.com>)
- functions/pidof: various fixes (#182623, others <mitr@redhat.com>)
- add support for DHCP on bridges (#125259, <mitr@redhat.com>,
  anders@kaseorg.com>)
- rc.sysinit: use pidof, not killall (#185429, <pjones@redhat.com>)
- ppp fixes (#129195, #163950, #92023, <mitr@redhat.com>, <avi@argo.co.il>)
- ifup/ifdown: unset $WINDOW (#174336, <mitr@redhat.com>)

* Fri Mar 17 2006 Bill Nottingham <notting@redhat.com> 8.31.2-1
- add udev helper to rename network devices on device creation

* Tue Mar 14 2006 Bill Nottingham <notting@redhat.com> 8.31.1-1
- fix context of /dev/pts (#185436)
- translation updates

* Sun Mar  5 2006 Bill Nottingham <notting@redhat.com> 8.31-1
- fix kexec support (<jmoyer@redhat.com>)
- translation updates

* Tue Feb 28 2006 Bill Nottingham <notting@redhat.com> 8.30-1
- hotplug: don't cause modules to be reloaded on ifdown/rmmod (#179809)
- fix endless loops in ifup/ifdown (#177792, #182466)
- fix enabling of enforcing SELinux mode after relabel (#181893)
- remove debugging code from ifup-bnep
- add /proc, /sys mounting back to rc.sysinit
  Note: booting without an initrd is deprecated
- translation updates

* Tue Feb 14 2006 Peter Jones <pjones@redhat.com> 8.29-1
- scrub another possible error message from dmraid output

* Mon Feb 13 2006 Bill Nottingham <notting@redhat.com> 8.28-1
- kill nash-hotplug before starting udev (<pjones@redhat.com>)
- silence warnings on /dev/pts remount (<pjones@redhat.com>)
- more translation updates

* Mon Feb 13 2006 Bill Nottingham <notting@redhat.com> 8.27-1
- translation updates
- lang.sh: revert fix for #176832, it's broken
- ifup-aliases fixes (<pjones@redhat.com>,<mitr@redhat.com>)

* Tue Feb  7 2006 Bill Nottingham <notting@redhat.com> 8.26-1
- revert "rc.sysinit: don't mount usbfs, libusb no longer uses it" change
- add some ugly hacks to make sure net hotplug doesn't run after unclean
  shutdown (#177795)
- don't mount /sys and /proc in rc.sysinit - the initrd already does
  (<pjones@redhat.com>)
- halt: try to unmount tmpfs filesystems before swapoff (#174000,
  <mitr@redhat.com>)

* Thu Feb  2 2006 Bill Nottingham <notting@redhat.com> 8.25-1
- ifup: don't run the arping check if the address is already on the device

* Wed Feb  1 2006 Bill Nottingham <notting@redhat.com> 8.24-1
- init.d/functions: fix sendmail startup
- sysconfig.txt: fix typos (<mitr@redhat.com>)

* Tue Jan 31 2006 Peter Jones <pjones@redhat.com> 8.23-1
- rc.sysinit: do a better job of not activating already active dmraids

* Tue Jan 31 2006 Bill Nottingham <notting@redhat.com> 8.22-1
- remove references to /usr/X11R6/bin (#177938)
- rc.sysinit: fix SELinux message formatting (#178532)
- rc.sysinit: clean cvs as well (#178539, <ville.skytta@iki.fi>)
- init.d/halt: move halt.local so that it runs before /  is remounted r/o (#179314)
- rc.sysinit: don't activate already active dmraids (<pjones@redhat.com>)
- rc.sysinit: don't mount usbfs, libusb no longer uses it
- init.d/functions: Add -p to status() (#134363, <mitr@redhat.com>)
- init.d/functions: Separate /var/run/*.pid handling and pidof calls
  to private functions (#63440, <mitr@redhat.com>)
- init.d/functions: update for current LSB, including -p pidfile
  (#99325, #134363, <mitr@redhat.com>, <tobias.burnus@physik.fu-berlin.de>)
- getkey: various cleanups, add man page (#54481, <mitr@redhat.com>)
- lang.sh: don't always call consoletype (<laroche@redhat.com>)

* Fri Jan 20 2006 Bill Nottingham <notting@redhat.com> 8.21-1
- move handling of network hotplug events here, add appropriate udev
  rules, obsolete hotplug
- get rid of some path lookups (#178321, <mclasen@redhat.com>)
- get hwaddrs from sysfs as opposed to ip | sed
- translation updates
- lang.sh: don't run unicode_start for subshells (#176832)
- halt: ignore sysfs but not /sys<otherstuff> (#177612, <bnocera@redhat.com>)
- add service(8) man page (#44857) <mitr@redhat.com>

* Wed Dec 21 2005 Bill Nottingham <notting@redhat.com> 8.20-1
- remove kmodule. udev handles module loading now
- require appropriate udev

* Thu Dec 15 2005 Bill Nottingham <notting@redhat.com> 8.19-1
- Require syslog, for alternate implementations thereof (#172885)
- Fix fsck invocation for weeding out netdev devices (#175803)

* Fri Dec  2 2005 Bill Nottingham <notting@redhat.com> 8.18-1
- use new dhclient file paths, add appropriate conflict (#169164)
	
* Wed Oct  5 2005 Bill Nottingham <notting@redhat.com> 8.17-1
- make sure corefile limiting works for user processes as well
  (#166511, <ville.skytta@iki.fi>)
- ifup-routes: handle no EOF in the route file (#156972)
- rc.sysinit: tweak mesage (#156972)
- ifdown-eth: clean up error message (#135167)
- rc.sysinit: call kpartx on multipath devices (#160227)
- ifup-eth: move wireless options before bridge options (#122801)
- ifup-wireless: silence error (#90601)
- init.d/functions: change translated string (#54682)

* Tue Sep 27 2005 Than Ngo <than@redhat.com> 8.16-1
- fix typo bug

* Mon Sep 26 2005 Than Ngo <than@redhat.com> 8.15-1
- support proper dial-in configuration, thanks to Peter Bieringer (#158380)

* Thu Sep 22 2005 Bill Nottingham <notting@redhat.com>
- kmodule: don't probe for uninteresting devices. speeds things up
- network-functions: deal with broken networks better (#168947)
- rc.sysinit: automatically reboot if labels are really out of date
  (<dwalsh@redhat.com>)
- network-functions: throw out nameif error messages
- rc.sysinit: use multipath.static (#168321)
- rc.sysinit: use ignorelocking (#168195)

* Mon Sep 12 2005 Bill Nottingham <notting@redhat.com> 8.14-1
- fix usage of the module blacklist (#168020)

* Fri Sep  9 2005 Bill Nottingham <notting@redhat.com> 8.13-1
- fix on-boot relabelling (<dwalsh@redhat.com>)

* Mon Aug 22 2005 Bill Nottingham <notting@redhat.com> 8.12-1
- ifup-eth: fix interface renaming (#158774)
- rc.sysinit: use modprobe, not insmod (#159120, <tmus@tmus.dk>)
- remove workaround for the fonts-not-initialized-on-secondary-consoles
  problem (fixed in 2.6.12-rc4 and later)
- setsysfont: correctly bracket systfontacm (#159706)
- rc.sysinit: always use udevsend, even if no modules (#160987)
- ifdown-aliases: add 'cd' to the proper dir (#161170)
- add diskdump restore support (<tuchida@redhat.com>),
  conflict with appropriate diskdumputils
- rc.sysinit: dmraid/multipath support
  - remove LVM1 support
- init.d/functions: handle odd quoting in args (#161316, <stransky@redhat.com>)
- ifup-wireless: set rate in quotes (#163123)
- handle lvm & fsck for network block devices (#148764,
  <alewis@redhat.com>)
- initlog: fix invalid free calls,  (#165033), (#163973,<dwalsh@redhat.com>)
- sysconfig.txt: remove hdparm docs, since the code isn't there (#162962)
- updated translations: ms, ja, ko, et, zh_CN, zh_TW, sr, ar

* Tue May 10 2005 Bill Nottingham <notting@redhat.com> 8.11-1
- fix mis-bringup of interfaces due to accidentally matched HWADDR
  (a.k.a. ONBOOT=no not working) (#153669, #157252)
- support automatic relabeling later if rebooted w/o SELinux
  (<dwalsh@redhat.com>)
- rc.sysinit: fix fixfiles invocation (#157182)
- btmp should be 0600 (#156900)
- translation updates: fr, bg, ru, mk, pa, es

* Fri Apr 29 2005 Bill Nottingham <notting@redhat.com> 8.10-1
- fix hang on stale GDM sockets (#156355)

* Wed Apr 27 2005 Bill Nottingham <notting@redhat.com> 8.09-1
- rc.sysinit: clean up screen sockets (#155969)
- functions: use pidof -c in various functions
- ifup-ppp: fix static routes with ppp demand dialing (#20142,
  <ohrn+redhat@chalmers.se>)
- add btmp support (#155537)
- don't send dhcp hostname (revert of fix for #149667)
- more early-login modifications (<mclasen@redhat.com>)
- functions: fix echo (#155270)

* Mon Apr 18 2005 Karsten Hopp <karsten@redhat.de> 8.08-3
- fix ifup-routes script (#155195)

* Mon Apr 18 2005 Florian La Roche <laroche@redhat.com>
- fix strstr call in rc.sysinit

* Fri Apr 15 2005 Bill Nottingham <notting@redhat.com> 8.08-1
- update translation base
- automatically send hostname for DHCP if it's available and not
  overridden (#149667)
- load user-defined module scripts from /etc/sysconfig/modules at
  boot (#123927)
- halt: reverse sort the mount list, avoiding errors
  (#147254, <jamesodhunt@hotmail.com>)
- ifup-wireless: add SECURITYMODE (#145407)
- network-functions: don't error out if hotplug doesn't exist (#140008)
- ifup: always return errors on trying to bring up nonexistent devices (#131461)
- ifup: fix error message (#143674)
- rc.sysinit: add a autorelabel boot target (#154496)
- prefdm: if something else is specified as $DISPLAYMANAGER, try that (#147304)
- remove support for the old firewall type
- network: optimize some (#138557, <drepper@redhat.com>)
- prefdm: fix prefdm arg handling (#154312, <khc@pm.waw.pl>)
- gdm early-login support (adapted from <rstrode@redhat.com>)
- ifup-routes: make sure commented lines are handled correctly (#154353,
  #114548, <link@pobox.com>)
- some sysconfig.txt updates (<link@pobox.com>, <jvdias@redhat.com>)
- rc.sysinit: fix restorecon invocation (#153100)
- initlog: free some of the more egregious memory leaks (#85935)
- initlog: fix potential memory overread (#153685, <in-redhat@baka.org>)
- remove some conflicts, %post scripts, etc. that were only relelvant
  for upgrades from pre-7.0
- other minor fixes, see ChangeLog

* Thu Mar 31 2005 Bill Nottingham <notting@redhat.com> 8.07-1
- bring back initlog for third-party scripts until a new framework is
  in place

* Wed Mar 30 2005 Bill Nottingham <notting@redhat.com> 8.06-1
- handle alternate VLAN naming schemes (#115001, <kas@informatics.muni.cz>)
- ifup-ipsec: handle non-ascii keys (#150552)
- add proper ipsec route (#146169, #140654)
- add a restorecon for /tmp to rc.sysinit
- document ONHOTPLUG in sysconfig.txt
- fix mistranslation (#151120)
- don't return 1 for stopping a process if it isn't running at all
- don't explicitly set fwd polices for ipsec traffic. Let setkey
  handle it.

* Mon Mar  7 2005 Bill Nottingham <notting@redhat.com> 8.05-1
- ipv6 cleanups (<pb@bieringer.de>)
- rc.sysinit: fix rngd check (#130350)
  ... then turn it off entirely
- rc.sysinit: get rid of duplicate date printout (#149795)
- ifdown: handle being called on down devices better
- handle saved resolv.conf on all device types
- fix network-functions cleanup
- netfs: fix _netdev unmounting (#147610, <alewis@redhat.com>)
- dhcp release cleanups (<jvdias@redhat.com>)
- ifup-bnep: bluetooth update <dwmw2@infradead.org>
- more ipsec stuff (#147001, <ckjohnson@gwi.net>)

* Wed Jan 19 2005 Bill Nottingham <notting@redhat.com> 8.04-1
- split out ifup/ifdown general case to ifup/ifdown-eth;
  add ifup/ifdown-bnep (<dwmw2@redhat.com>)
- ifup-ipsec: add fwd policies (#145507)
- fix multiple scsi_hostadapter loads (#145432)
- enable syncookies in sysctl.conf (#145201)

* Wed Jan 12 2005 Bill Nottingham <notting@redhat.com> 8.03-1
- use udevsend to handle hotplug events (requires recent udev)
- remove pump, dhcpcd support
- fix ONxxx (#136531, <cww@redhat.com>)
- fix various fgreps to not catch commented lines (#136531, expanded
  from <cww@redhat.com>)
- set ETHTOOL_OPTS on addressless devices (#144682, <mpoole@redhat.com>)
- kill dhcp client even if BOOTOPROTO is now static (#127726, others)
- replace the use of route/ifconfig with ip in IPv6 code, remove support
  for ipv6calc (<pb@bierenger.de>, <pekkas@netcore.fi>)
- fix quoting in daemon() (#144634)
- make sysctl be silent (#144483)
  
* Mon Jan  3 2005 Bill Nottingham <notting@redhat.com> 8.02-1
- remove initlog, minilogd
- add a flag to kmodule for use with kudzu's socket mode, use it
- change setting of IPv6 default route (#142308, <pb@bieringer.de>)
- netfs: don't unmount NFS root FS (#142169)

* Mon Dec  6 2004 Bill Nottingham <notting@redhat.com> 8.01-1
- further bootup noise reductions
- rc.d/rc.sysinit: do implicit unicode conversion on keymap

* Mon Nov 29 2004 Bill Nottingham <notting@redhat.com> 8.00-1
- fix previous fix (#139656)

* Wed Nov 24 2004 Bill Nottingham <notting@redhat.com> 7.99-1
- clear and repopulate mtab before mounting other filesystems (#139656)
- remove more devfs compat

* Tue Nov 23 2004 Bill Nottingham <notting@redhat.com> 7.98-1
- various kmodule speedups
- rc.d/init.d/netfs: don't mount GFS (#140281)
- fix various minilogd bogosities (#106338)

* Mon Nov 15 2004 Karsten Hopp <karsten@redhat.de> 7.97-1 
- configure CTC protocol if CTCPROT is set (#133088)

* Mon Nov 15 2004 Bill Nottingham <notting@redhat.com>
- fix check_link_down to still check negotiation if link is
  listed as "up" on entering (#110164, <dbaron@dbaron.org>)

* Thu Nov 11 2004 Karsten Hopp <karsten@redhat.de> 7.96-1 
- parse OPTIONS for QETH, CTC, LCS interfaces (#136256, mainframe)

* Tue Nov  9 2004 Bill Nottingham <notting@redhat.com>
- fix typo (#134787, <bnocera@redhat.com>)

* Sun Nov  7 2004 Bill Nottingham <notting@redhat.com> 7.95-1
- various translation updates

* Tue Nov  2 2004 Bill Nottingham <notting@redhat.com>
- take an axe to rc.sysinit:
  - remove delay on unclean startup
  - remove hdparm code
  - remove LVM1 code
  - remove old raidtab code in favor of mdadm
  - remove support for old isapnp tools
  - move all block device mangling before fsck. run fsck *once*, not twice
  - some more LC_ALL=C stuff

* Sun Oct 31 2004 Florian La Roche <laroche@redhat.com>
- /etc/rc.d/rc: use "LC_ALL=C grep" for small speedup
- /etc/rc.d/rc.sysinit:
	- do not read udev.conf, this seems to be all in the start_udev script
	- fix detection of "nomodules" kernel command line option
	- read /proc/cmdline earlier and convert rhgb to use that, too
	- load_module(): change redirection to /dev/null
	- some checks for RHGB_STARTED="" looked strange
- /etc/sysconfig/network-scripts/ifup-ppp:
	- remove a call to basename with shell builtins
- /etc/sysconfig/network-scripts/network-functions:
	- remove some calls to basename/sed with shell builtins

* Wed Oct 27 2004 Bill Nottingham <notting@redhat.com> 7.93.2-1
- fix prefdm fallback to installed display managers (#137274)
- fix incorrect rhgb temporary path (#137391)

* Mon Oct 18 2004 Bill Nottingham <notting@redhat.com> 7.93-1
- translation updates
- fix handling of GATEWAYDEV (#133575, <pekkas@netcore.fi>)

* Sun Oct 17 2004 Bill Nottingham <notting@redhat.com> 7.91-1
- rc.d/rc.sysinit: remove devlabel call
- mdadm support, now that raidtools is gone (#126636, #88785)
- call ipv6to4 scripts in /etc/ppp/(ip-up|ip-down) (#124390, <dwmw2@redhat.com>)
- cleanup a couple of nits that could affect bug #134754
- make sure we return to rhgb after fsck (#133966, #112839, #134449)
- automatically reboot when fsck calls for it, instead of requiring
  manual intervention (#117641 and duplicates)
- ifup-wireless: fix key for open vs. restricted (#135235, <dax@gurulabs.com>)
- translation updates

* Fri Oct 08 2004 Karsten Hopp <karsten@redhat.de> 7.90-1 
- fix portname for LCS devices

* Fri Oct 08 2004 Bill Nottingham <notting@redhat.com>
- remove sysconfig/rawdevices, as initscript is removed

* Thu Oct 07 2004 Florian La Roche <Florian.LaRoche@redhat.de>
- change /etc/sysctl.conf to not allow source routed packets per default

* Fri Oct  6 2004 Bill Nottingham <notting@redhat.com> - 7.88-1
- fix requires

* Tue Oct  5 2004 Dan Walsh <dwalsh@redhat.com> - 7.87-1
- Change SELinux relabel to not remount / 

* Mon Oct  4 2004 Bill Nottingham <notting@redhat.com>
- use runuser instead of su; require it
- init.d/halt: use right file name for random seed (#134432)

* Fri Oct  1 2004 Bill Nottingham <notting@redhat.com> - 7.86-1
- use /etc/hotplug/blacklist to blacklist modules in hardware init (#132719)
- filter indic locales on the console (#134198)

* Wed Sep 29 2004 Bill Nottingham <notting@redhat.com> - 7.85-1
- ifup, network-functions: fix worked-by-accident shell quoting
- lang.csh: remove setting of dspmbyte (#89549, <mitr@redhat.com>)
- SELinux fixes
- clean up prefdm
- init.d/functions: export LC_MESSAGES (#133786)
- allow daemon to coredump if requested (#130175)
- network-functions: be more liberal in what we accept for link types (#90602, #127984)
- fix overzealousness with -range aliases (#65415)
- rc.sysinit: use s-c-keyboard, not kbdconfig (#133929)
- fix checkpid logic, clean up potential errors (#134030)
- translation updates

* Wed Sep 22 2004 Bill Nottingham <notting@redhat.com> - 7.84-1
- only start udev once

* Wed Sep 22 2004 Jeremy Katz <katzj@redhat.com> - 7.83-1
- conflict with old udev
- use udev if it's present

* Tue Sep 21 2004 Bill Nottingham <notting@redhat.com>
- don't mount usbfs without usb. also, at least be consistent in filesystem type

* Fri Sep 17 2004 Bill Nottingham <notting@redhat.com> - 7.82-1
- fix handling of nonexistent devices (#132839)
- rhgb enhancements (<veillard@redhat.com>, #132665)
- initscripts.spec: require nash (#132513)
- translation updates

* Tue Sep 14 2004 Karsten Hopp <karsten@redhat.de> 7.81-1 
- load iucv device config after /etc/sysconfig/network so that
  GATEWAY doesn't get overwritten

* Fri Sep 10 2004 Bill Nottingham <notting@redhat.com> - 7.80-1
- fix IPv6 6to4 & NAT (#118928, <pb@bieringer.de>, <pekkas@netcore.fi>)

* Fri Sep 10 2004 Karsten Hopp <karsten@redhat.com> - 7.79-1
- load ctc device config after /etc/sysconfig/network so that
  GATEWAY doesn't get overwritten

* Wed Sep  8 2004 Dan Walsh <dwalshg@redhat.com> - 7.78-2
- fix setting SELinux contexts on udev-created-in-initrd devices
- Let restorecon check if selinux is enabled.

* Wed Sep  8 2004 Bill Nottingham <notting@redhat.com> - 7.78-1
- set SELinux contexts on udev-created-in-initrd devices, if necessary

* Wed Sep  1 2004 Bill Nottingham <notting@redhat.com> - 7.77-1
- mount usbfs (#131347)
- start any automatic raid devices
- remove triggers for ancient releases, bulletproof remaining ones (#131356)

* Wed Sep  1 2004 Jeremy Katz <katzj@redhat.com> - 7.76-1
- udev uses UDEV_TMPFS now 

* Wed Sep 01 2004 Karsten Hopp <karsten@redhat.de> 7.75-1 
- fix sysfs configuration of qeth and lcs network interfaces
  (eth, tr, hsi)

* Mon Aug 30 2004 Karsten Hopp <karsten@redhat.de> 7.74-1 
- fix support for LCS portnumbers (mainframe)

* Fri Aug 27 2004 Jason Vas Dias  <jvdias@redhat.com> 7.73-1
- Add support for running the DHCPv6 client to ifup 
- (new DHCPV6C=yes/no ifcfg-${IF} variable) + update sysconfig.txt 

* Fri Aug 27 2004 Bill Nottingham <notting@redhat.com> 7.72-1
- flip the kernel conflict to a Requires:

* Thu Aug 26 2004 Karsten Hopp <karsten@redhat.de> 7.71-1
- ifcfg-iucv/ctc: drop REMIP and use GATEWAY instead

* Thu Aug 26 2004 Bill Nottingham <notting@redhat.com> 7.70-1
- autoload hardware modules on startup
- minor fsck cleanup (#115028, <leonard-rh-bugzilla@den.ottolander.nl>)
- ifup: support STP bridging (#123324)
- rc.sysinit: do a SELinux relabel if forced
- rc.sysinit: remove devfs compat and the remaining 2.4 compat
- ifup-wireless: support multiple keys (#127957)
- fix firmware loading (#129155, <bnocera@redhat.com>)
	
* Tue Aug 24 2004 Karsten Hopp <karsten@redhat.de> 7.68-1 
- execute zfcfconf.sh if available (mainframe)

* Mon Aug 20 2004 Jason Vas Dias <jvdias@redhat.com> 7.67-1
- fix change_resolv_conf: if pre-existing /etc/resolv.conf
- non-existent or empty, replace with new file contents.

* Fri Aug 20 2004 Jason Vas Dias <jvdias@redhat.com> 7.66-1
- Allow users to use generic /etc/dhclient.conf if per-device
- /etc/dhclient-${DEVICE}.conf is non-existent or empty

* Fri Aug 20 2004 Jason Vas Dias <jvdias@redhat.com> 7.66-1
- Preserve "options" settings in resolv.conf (bug 125712)

* Fri Aug 20 2004 Jeremy Katz <katzj@redhat.com> - 7.65-1
- look at /etc/udev/udev.conf, not /etc/sysconfig/udev (#130431)

* Fri Aug 20 2004 Bill Nottingham <notting@redhat.com> 7.64-1
- rc.d/rc.sysinit: check for dev file too (#130350)
	
* Thu Aug 19 2004 Than Ngo <than@redhat.com> 7.63-1
- allow CBCP with own number (#125710)

* Thu Aug 19 2004 Bill Nottingham <notting@redhat.com> 7.62-1
- fix up resolv.conf munging (#129921)
- use rngd if available
- run start_udev if necessary (#120605)
- readonly root updates (#129893, <markmc@redhat.com>)
- ifup-wireless: quote key (#129930)
- remove rawdevices (#130048)
- handle binfmt_misc in rc.sysinit for the case where it's built in (#129954)
- remove mkkerneldoth
- don't remove linguas in lang.* (part of #9733)
- fix nfs unmounting (#129765)
- fix URL (#129433)

* Tue Aug 11 2004 Jason Vas Dias <jvdias@redhat.com> 7.61-1
- fix for bug 120093: add PERSISTENT_DHCLIENT option to ifcfg files

* Tue Aug  3 2004 Karsten Hopp <karsten@redhat.de> 7.60-1 
- write peerid into sysfs for IUCV devices (mainframe)

* Tue Aug  3 2004 Bill Nottingham <notting@redhat.com>
- don't remove /dev/mapper/control - nash will do it if it has to (#127115)

* Fri Jul 30 2004 Jason Vas Dias <jvdias@redhat.com> 7.60-1
- fix for bug 125712: add 'change_resolv.conf' function

* Tue Jul 27 2004 Bill Nottingham <notting@redhat.com>
- rc.d/init.d/network: don't bring interfaces down twice (#127487)

* Wed Jul 14 2004 Bill Nottingham <notting@redhat.com>
- fix bonding + no IP (#127285)
- wrap second LVM initialization in vgscan check to avoid extraneous messages (#127639)

* Wed Jul  7 2004 Bill Nottingham <notting@redhat.com>
- move random stuff to rc.sysinit/halt; move all swap to after this.
  prereq of bug #123278

* Fri Jul  2 2004 Bill Nottingham <notting@redhat.com> 7.59-1
- set context on ICE directory after making it (#127099, <concert@europe.com>)
- don't mount GFS filesystems in rc.sysinit

* Tue Jun 29 2004 Bill Nottingham <notting@redhat.com> 7.58-1
- rc.d/rc.sysinit: hack: make ICE directory on boot (#86480)
- set devicetype for xDSL (#126194)
- ignore locking failures when starting lvm volumes (#126192, <radu@primit.ro>)
- unset LC_MESSAGES for rhgb (#126020, <ynakai@redhat.com>)
- bonding fixes
- setsysfont: remove error (#100559)
- remove duplicate setting of network routes (#125450)
- vlan fixes (#107504, <hrunting@texas.net>)
- ifup-aliases: remove bogus route setting (#120908)

* Tue May 25 2004 Bill Nottingham <notting@redhat.com> 7.57-1
- readonly root fixes (<alexl@redhat.com>)

* Tue May 25 2004 Karsten Hopp <karsten@redhat.de> 7.56-1 
- special TYPE for qeth devices to differenciate them from ethX

* Mon May 24 2004 Bill Nottingham <notting@redhat.com>
- fix pppd vs. ppp typo in conflicts (#123680)

* Fri May 21 2004 Bill Nottingham <notting@redhat.com>
- fix bridging confusing module order (#122848, <luto@myrealbox.com>)
- rc.d/rc.sysinit: don't mount cifs (#122501)

* Tue May 18 2004 Karsten Hopp <karsten@redhat.de> 7.55-1 
- add support for ccwgroup devices on mainframe

* Thu May 13 2004 Than Ngo <than@redhat.com> 7.54-1
- add patch to enable PIE build of usernetctl

* Fri May  7 2004 Jeremy Katz <katzj@redhat.com> - 7.53-1
- little lvm tweak (#121963)

* Tue May  4 2004 Bill Nottingham <notting@redhat.com> 7.52-1
- ipv4 addresses are ints, not longs (#122479)

* Tue May  4 2004 Bill Nottingham <notting@redhat.com> 7.51-1
- get rid of LVM error when no volumes are defined (#121197)
- fix selinux short-circuit test (#121143, <michal@harddata.com>)
- /dev/mapper/control is a special file, check it accordingly (#121963)
- support ETHTOOL_OPTS on bonding slaves (#119430, <hrunting@texas.net>)
- handle multiple spaces correctly in rc.sysinit, network-functions
  (#118583, <pallas@kadan.cz>)
- cleanup fd leaks, mem leaks, other bogosities
  (#119987, <linux_4ever@yahoo.com>)
- rc.d/init.d/network: remove ipv6 bogosity (#114128)
- translation updates

* Fri Apr 16 2004 Bill Nottingham <notting@redhat.com> 7.50-1
- fix LVM issues in rc.sysinit (#120458, #119975)
- deal with fixed racoon parser
- translation updates from translators
- fix USB loading (#120911)

* Fri Mar 26 2004 Bill Nottingham <notting@redhat.com> 7.49-1
- use alsa for mixer saving in halt
- don't umount /proc in halt (#118880)
- various translation updates from translators

* Wed Mar 17 2004 Bill Nottingham <notting@redhat.com> 7.48-1
- disable enforcing in emergency mode for now, relabel some commonly
  mislabeled files on boot

* Wed Mar 17 2004 Bill Nottingham <notting@redhat.com> 7.47-1
- translation: catch more input strings (#106285, <mitr@volny.cz>)
- remove autologin from prefdm (#108969)
- return to rhgb after ./unconfigured (#109807, <jkeating@j2solutions.net>)
- handle iso15 in setsysfont (#110243)
- clean up samba & vmware in rc.sysinit (#113104)
- some sysconfig.txt documentation (#110427, #118063)
- fix bug in umount-on-halt (#113088, <giardina@airlab.elet.polimi.it>)
- handle CIFS in netfs (#115691)
- make sure hotplug isn't stuck unset (#116666, <aoliva@redhat.com>)
- handle network fs better in rc.sysinit (#111290)
- nomodules applies to usb/firewire too (#113278)
- ipsec fix (#116922, <felipe_alfaro@linuxmail.org>)
- make sure rc exits cleanly (#117827, <enrico.scholz@informatik.tu-chemnitz.de>)
- fsck root FS from initrd, for dynamic majors (#117575, <sct@redhat.com>)

* Mon Feb 23 2004 Tim Waugh <twaugh@redhat.com>
- Use ':' instead of '.' as separator for chown.

* Mon Feb  2 2004 Bill Nottingham <notting@redhat.com> 7.46-1
- some more rc.sysinit tweaks and refactoring

* Fri Jan 30 2004 Bill Nottingham <notting@redhat.com> 7.45-1
- fix rc.sysinit typo
- rc.d/init.d/network: clear out environment (#113937, #111584)

* Wed Jan 28 2004 Bill Nottingham <notting@redhat.com> 7.44-1
- NFSv4 support (<chucklever@bigfoot.com>, <steved@redhat.com>)
- handle 2.6-style 'install ethX ...' lines correctly
- mount sysfs by default
- time to clean up the cruft. remove:
  - boot-time depmod
  - linking of /boot/System.map to /boot/System.map-`uname -r`
  - /var/log/ksyms.X
  - libredhat-kernel support

* Fri Jan  16 2004 Dan Walsh <dwalsh@redhat.com> 7.43-2
- Remove selinux run_init code from service script.  It is no longer needed.

* Fri Dec  5 2003 Jeremy Katz <katzj@redhat.com> 7.43-1
- basic lvm2 support

* Tue Oct 28 2003 Bill Nottingham <notting@redhat.com> 7.42-1
- show rhgb details on service failures

* Wed Oct 22 2003 Bill Nottingham <notting@redhat.com> 7.41-1
- tweak some rhgb interactions (#100894, #107725)
- fix dvorak keymap loading (#106854)

* Wed Oct 22 2003 Than Ngo <than@redhat.com> 7.40-1
- add better fix to support nickname (#105785)

* Wed Oct 22 2003 Than Ngo <than@redhat.com> 7.39-1
- add support nickname (#105785)

* Fri Oct 17 2003 Bill Nottingham <notting@redhat.com> 7.38-1
- rhgb updates, now pass 'rhgb' to use it, instead of passing 'nogui'
  to disable it

* Fri Oct 10 2003 Bill Nottingham <notting@redhat.com> 7.37-1
- bridging updates (#104421, <dwmw2@redhat.com>)

* Wed Oct  8 2003 Bill Nottingham <notting@redhat.com> 7.36-1
- mount /dev/pts before starting rhgb

* Wed Oct  1 2003 Bill Nottingham <notting@redhat.com> 7.35-1
- load acpi modules on startup if necessary
- fix typo in ipsec comments & sysconfig.txt

* Mon Sep 15 2003 Than Ngo <than@redhat.com> 7.34-1
- use upsdrvctl to start the shutdown process

* Mon Sep 15 2003 Bill Nottingham <notting@redhat.com> 7.33-1
- ipsec fixes (#104227, <harald@redhat.com>)
- ppp fixes (#104128, #97845, #85447)

* Thu Sep 11 2003 Bill Nottingham <notting@redhat.com> 7.32-1
- fix ip calls for some device names (#104187)
- ipsec fixes

* Fri Sep  5 2003 Bill Nottingham <notting@redhat.com> 7.31-1
- fix bonding + dhcp (#91399)
- fix typo (#103781)
- sysconfig/network-scripts/ifup: fix use of local

- fix shutdown with NFS root (#100556, <Julian.Blake@cern.ch>)
- remove /var/run/confirm when done with /etc/rc (#100898)
- ipcalc: fix some memory handling (#85478, <miked@ed.ac.uk>)
- handle sorting > 10 network devices (#98209)
- unset ONPARENT after use (#101384)
- random other fixes
- bridging support (<dwmw2@redhat.com>)

* Fri Aug 15 2003 Bill Nottingham <notting@redhat.com> 7.30-1
- IPv6 updates (#86210, #91375, <pekkas@netcore.fi>)

* Fri Aug  8 2003 Bill Nottingham <notting@redhat.com> 7.29-1
- setsysfont: don't echo to /dev/console (#102004)
- fix ethernet device renaming deadlock (#101566)
- consoletype: don't return 'vt' on vioconsole (#90465)
- ifup: fix short-circuit (#101445)

* Fri Jul 18 2003 Nalin Dahyabhai <nalin@redhat.com>
- ifup-routes: pass the interface name to handle_file() so that we don't try
  to use the routes file's name as an interface name

* Wed Jul  9 2003 Bill Nottingham <notting@redhat.com> 7.28-1
- switch from $CONFIG.keys to keys-$CONFIG

* Tue Jul  8 2003 Bill Nottingham <notting@redhat.com> 7.27-1
- add a check to consoletype for the current foreground console
- use it when running unicode_start (#98753)

* Wed Jul  2 2003 Bill Nottingham <notting@redhat.com> 7.26-1
- ipsec support (see sysconfig.txt, ifup-ipsec)
- read $CONFIG.keys, for non-world-readable keys
- allow default window size for routes to be set with WINDOW= (#98112)
- support setting device options with ethtool opts
- fix s390 bootup spew (#98078)
- support renaming interfaces with nameif based on hwaddr

* Mon Jun 23 2003 Bill Nottingham <notting@redhat.com> 7.25-1
- fix DNS punching in the case of other rules for the DNS server
  (#97686, <martin@zepler.org>)
- initlog, ppp-watch, and usernetctl tweaks (<linux_4ever@yahoo.com>)
- fix grep for mingetty (#97188)
- fix rhgb-client bad syntax
- change network device searching, use correct naming, fix route issues
  (<harald@redhat.com>)
- other random tweaks

* Fri May 23 2003 Bill Nottingham <notting@redhat.com> 7.24-1
- now even still yet more tweaks for graphical boot

* Thu May 22 2003 Bill Nottingham <notting@redhat.com> 7.23-1
- even still yet more tweaks for graphical boot

* Tue May 20 2003 Bill Nottingham <notting@redhat.com> 7.22-1
- still yet more tweaks for graphical boot

* Tue May 20 2003 Bill Nottingham <notting@redhat.com> 7.21-1
- yet more tweaks for graphical boot

* Fri May  2 2003 Bill Nottingham <notting@redhat.com> 7.20-1
- more tweaks for graphical boot

* Wed Apr 30 2003 Bill Nottingham <notting@redhat.com> 7.18-1
- some tweaks for graphical boot

* Mon Apr 21 2003 Florian La Roche <Florian.LaRoche@redhat.de>
- initscripts-s390.patch: remove not needed parts about PNP=
- inittab.390: sync with normal version
- rc.sysinit: remove two further calls to /sbin/consoletype with $CONSOLETYPE

* Fri Apr 18 2003 Florian La Roche <Florian.LaRoche@redhat.de>
- sysconfig/init.s390: set LOGLEVEL=3 as for other archs
- rc.d/init.d/network, rc.d/rc: change confirmation mode to
  not use an environment variable
- rc.d/init.d/functions: make strstr() even shorter, remove old
  "case" version that has been already commented out
- rc.d/rc.sysinit:
	- no need to set NETWORKING=no, it is not used/exported
	- do not export BOOTUP
	- delete two "sleep 1" calls that wants to add time to go
	  into confirmation mode. There is enough time to press a
	  key anyway or use "confirm" in /proc/cmdline.
	- read /proc/cmdline into a variable
	- use strstr() to search in /proc/cmdline
	- add "forcefsck" as possible option in /proc/cmdline
	- while removing lock files, no need to call `basename`
	- add unamer=`uname -r` and reduce number of forks
	- do not fork new bash to create /var/log/ksyms.0

* Thu Apr 03 2003 Karsten Hopp <karsten@redhat.de> 7.15-1
- Mainframe has no /dev/ttyX devices and no mingetty, don't 
  initialize them. This gave error messages during startup

* Mon Mar 17 2003 Nalin Dahyabhai <nalin@redhat.com>
- init.d/network: don't advertise "probe: true" in the header if we don't
  recognize "probe" as an argument

* Wed Mar 12 2003 Bill Nottingham <notting@redhat.com> 7.14-1
* - do not handle changed chain name; change was reverted

* Tue Feb 25 2003 Bill Nottingham <notting@redhat.com> 7.13-1
- handle 7.x SYSFONTACM settings in setsysfont (#84183)

* Mon Feb 24 2003 Bill Nottingham <notting@redhat.com> 7.12-1
- handle changed chain name
- init vts used in all cases

* Fri Feb 21 2003 Bill Nottingham <notting@redhat.com> 7.10-1
- handle LANGUAGE specially for zh_CN.GB18030 and gdm (#84773)

* Thu Feb 20 2003 Bill Nottingham <notting@redhat.com> 7.09-1
- initialize two ttys past # of mingettys (for GDM)
- fix zeroconf route
- redhat-config-network writes $NAME.route for some static routes
  (e.g., ppp); handle that (#84193)

* Tue Feb 18 2003 Bill Nottingham <notting@redhat.com> 7.08-1
- load keybdev & mousedev even if hid is already loaded/static
- run fewer scripts through action (#49670, #75279, #81531)

* Mon Feb 10 2003 Bill Nottingham <notting@redhat.com> 7.07-1
- fix nicknames & profiles (#82246)
- fix check_device_down (#83780, <pzb@datstacks.com>)
- vlan fixes (<tis@foobar.fi>)
- fix groff macros (#83531, <tsekine@sdri.co.jp>)
- various updated translations
- fix checkpid for multiple pids (#83401)

* Fri Jan 31 2003 Bill Nottingham <notting@redhat.com> 7.06-1
- 802.1Q VLAN support (<tis@foobar.fi>, #82593)
- update translations

* Thu Jan 30 2003 Bill Nottingham <notting@redhat.com> 7.05-1
- fix syntax error in rc.sysinit when there are fsck errors
- fix zh_TW display on console (#82235)

* Wed Jan 15 2003 Bill Nottingham <notting@redhat.com> 7.04-1
- tweak some translatable strings
- fix for rc.sysinit on machines that pass arguments to mingetty
  (<nalin@redhat.com>)

* Tue Jan 14 2003 Bill Nottingham <notting@redhat.com> 7.03-1
- move system font setting sooner (<milan.kerslager@pslib.cz>)
- fix link checking for dhcp, use both ethtool and mii-tool
- fix CJK text on the console, and locale-archive held open
  on shutdown
- IPv6 updates <pekkas@netcore.fi>, <pb@bieringer.de>
- speedup tweaks (<drepper@redhat.com>)
- use glib2 for ppp-watch (#78690, <kisch@mindless.com>)
- add zeroconf route (#81738)
- fix ifup-ppp for dial-on-demand, and onboot (<goeran@uddeborg.pp.se>)
- tweak raidtab parsing, don't worry about not-in-fstab RAID devices
  (#71087, #78467, <aja@mit.edu>)
- don't automatically bring up aliases if 'ONPARENT=no' is set (#78992)
- getkey cleanups/tweaks (#76071, <ben@enchantedforest.org>)
- rework halt_get_remaining (#76831, <michal@harddata.com>)
- ipcalc: fix calculation of /32 addresses (#76646)
- various other tweaks and fixes

* Fri Dec 20 2002 Bill Nottingham <notting@redhat.com> 7.01-1
- %%config(noreplace) inittab

* Tue Dec 17 2002 Nalin Dahyabhai <nalin@redhat.com>
- add a "nofirewire" option to /etc/rc.sysinit, analogous to "nousb"

* Tue Dec 17 2002 Bill Nottingham <notting@redhat.com> 7.00-1
- tweaks for potential GUI bootup
- loop checking for network link state, don't unilterally wait five
  seconds

* Fri Dec 14 2002 Karsten Hopp <karsten@redhat.de> 6.99-1
- remove call to /sbin/update for S/390, too

* Wed Dec 11 2002 Bill Nottingham <notting@redhat.com> 6.98-1
- remove call to /sbin/update
- fix netprofile

* Mon Dec  2 2002 Bill Nottingham <notting@redhat.com> 6.97-1
- IPv6 update (<pekkas@netcore.fi>, <pb@bieringer.de>)
- devlabel support (<Gary_Lerhaupt@Dell.com>)
- do lazy NFS umounts

* Tue Nov 19 2002 Florian La Roche <Florian.LaRoche@redhat.de>
- correctly remove non-packaged files for mainframe

* Tue Nov 12 2002 Bill Nottingham <notting@redhat.com> 6.96-1
- fix various static-routes brokeness (#74317, #74318, #74320, #76619,
  #75604)
- fix handling of SYSFONTACM in setsysfont (#75662)
- fix lang.csh for CJK (#76908, <ynakai@redhat.com>)
- IPv6 update (<pekkas@netcore.fi>, <pb@bieringer.de>)
- other minor tweaks

* Mon Sep 16 2002 Than Ngo <than@redhat.com>
- owns directory /etc/ppp/peers (bug #74037)

* Wed Sep  4 2002 Bill Nottingham <notting@redhat.com> 6.95-1
- fix syntax error in duplicate route removal section of ifup

* Wed Sep  4 2002 Nalin Dahyabhai <nalin@redhat.com> 6.94-1
- fix syntax error calling unicode_start when SYSFONTACM isn't set

* Mon Sep  2 2002 Bill Nottingham <notting@redhat.com>
- fix calling of unicode_start in lang.{sh,csh}
- ipv6 tweak

* Wed Aug 28 2002 Bill Nottingham <notting@redhat.com>
- don't infinite loop on ifdown
- remove disabling of DMA; this can cause problems
- move swap startup to after LVM (#66588)

* Tue Aug 20 2002 Bill Nottingham <notting@redhat.com>
- don't cycle through eth0-eth9 on dhcp link check (#68127)
- don't retry indefinitely on ppp startup
- activate network profile passed on kernel commandline via netprofile=
- fix iptables invocations again
- translation refresh

* Wed Aug 14 2002 Bill Nottingham <notting@redhat.com>
- fix silly typo in rc.sysinit
- increase timeout for link to 5 seconds (#70545)

* Tue Aug 13 2002 Bill Nottingham <notting@redhat.com>
- require /etc/redhat-release (#68903)
- fix tty2-tty6 (sort of)
- fix iptables invocations (#70807, #71201, #68368)
- other minor tweaks

* Wed Jul 24 2002 Bill Nottingham <notting@redhat.com>
- fix unicode checks in rc.sysinit, lang.{sh,csh} to handle UTF-8@euro

* Tue Jul 16 2002 Bill Nottingham <notting@redhat.com>
- use iptables, not ipchains

* Tue Jul 16 2002 Florian La Roche <Florian.LaRoche@redhat.de>
- /sbin/service: set PATH before calling startup scripts
  HOME and TERM are also set during bootup, but they should not make
  a difference for well-written daemons.

* Mon Jul 15 2002 Bill Nottingham <notting@redhat.com>
- fix boot-time cleanup of /var
- update po files

* Thu Jul 11 2002 Florian La Roche <Florian.LaRoche@redhat.de>
- /etc/init.d/functions:
	daemon(): avoid starting another bash
	killproc(): avoid starting another bash for the default case
- do not call "insmod -p" before loading the "st" module

* Tue Jul 09 2002 Florian La Roche <Florian.LaRoche@redhat.de>
- allow an option for ups poweroff  #68123
- change grep for ONBOOT=  #63903
- allow building with a cross-compiler  #64362,#64255
- faster check in network-functions:check_default_route()
- better checks for backup files
- drastically reduce the number of consoletype invocations
- do not export "GATEWAY" in network-functions
- code cleanups in rc.sysinit

* Fri Jul 05 2002 Florian La Roche <Florian.LaRoche@redhat.de>
- rc.sysinit: do not load raid modules unless /etc/raidtab exists
- many cleanups for more consistent shell programming and also
  many smaller speedups within network scripts, no un-necessary sourcing
  of files etc
- nearly re-code /etc/rc.d/rc

* Thu Jun 27 2002 Bill Nottingham <notting@redhat.com>
- a couple minor unicode tweaks in rc.sysinit

* Wed Jun 26 2002 Bill Nottingham <notting@redhat.com>
- move /proc/bus/usb mount, in case USB is in the initrd

* Wed Jun 26 2002 Preston Brown <pbrown@redhat.com>
- don't try to set wireless freq/channel when in Managed mode

* Wed Jun 26 2002 Florian La Roche <Florian.LaRoche@redhat.de>
- start some sh coding cleanups
- change to /etc/init.d/functions
- eliminate some un-necessary PATH settings
- eliminate some TEXTDOMAIN settings

* Wed Jun 12 2002 Bill Nottingham <notting@redhat.com> 6.78-1
- fix UTF-8 checks

* Wed Jun 05 2002 Than Ngo <than@redhat.com> 6.77-1
- fixed a bug in setting defaultgateway

* Thu May 30 2002 Bill Nottingham <notting@redhat.com> 6.76-1
- call unicode_start in lang.{sh,csh}, setsysfont when necessary

* Tue May 28 2002 Bill Nottingham <notting@redhat.com> 6.75-1
- add check for link for dhcp back in

* Fri Apr 19 2002 Bill Nottingham <notting@redhat.com> 6.67-1
- fix silly cut&paste bug in hdparm settings in initscripts

* Mon Apr 15 2002 Trond Eivind Glomsrød <teg@redhat.com> 6.65-1
- Update translations

* Sun Apr 14 2002 Bill Nottingham <notting@redhat.com> 6.64-1
- make sure chatdbg is set before using it (#63448, <Bertil@Askelid.com>)
- allow tweaking of more devices with hdparm (#53511), and
  tweak non-disk devices iff they explicitly have a config file
  for that device (#56575, #63415)
- some translation updates

* Fri Apr 12 2002 Bill Nottingham <notting@redhat.com> 6.63-1
- ipcalc cleanups (#58410)
- quit stripping binaries
- do LVM init after RAID init too (#63238)
- export all locale variables (#56142)
- run sysctl -p after network init as well

* Tue Apr 09 2002 Bill Nottingham <notting@redhat.com> 6.62-1
- delete X/VNC locks on startup (#63035)
- shut up DMA disabling, move it to after ide-scsi (#62873, #62956)
- use full path to /sbin/ifconfig (#59457)
- /sbin/service: change to root directory before staring/stopping;
  also sanitize environment
		
* Tue Apr 02 2002 Bill Nottingham <notting@redhat.com> 6.61-1
- when disabling DMA, don't use things in /usr

* Thu Mar 28 2002 Bill Nottingham <notting@redhat.com> 6.60-1
- disable DMA on CD-ROMs at bootup

* Wed Mar 27 2002 Bill Nottingham <notting@redhat.com> 6.59-1
- add local hook to halt

* Fri Mar 15 2002 Than Ngo <than@redhat.com> 6.58-1
- fix usernetctl for working with neat

* Thu Mar 14 2002 Bill Nottingham <notting@redhat.com> 6.57-1
- update translations

* Tue Mar 12 2002 Bill Nottingham <notting@redhat.com> 6.56-1
- use nameif for interfaces where we don't agree on HWADDR with the
  config file (<harald@redhat.com>)
- LSB support tweaks

* Tue Mar 12 2002 Mike A. Harris  <mharris@redhat.com> 6.55-1
- Removed process accounting stuff from rc.sysinit and halt scripts as it is
  now handled by the psacct initscript in the psacct package

* Thu Feb 28 2002 Bill Nottingham <notting@redhat.com>
- conflict with older psacct

* Fri Feb 22 2002 Bill Nottingham <notting@redhat.com>
- fix invocation of need_hostname (#58946), a couple other minor tweaks

* Tue Feb 12 2002 Mike A. Harris  <mharris@redhat.com>
- rc.sysinit: changed /var/log/pacct to /var/account/pacct for FHS 2.2 compliance

* Wed Jan 30 2002 Bill Nottingham <notting@redhat.com>
- run /bin/setfont, not /usr/bin/setfont (kbd)
- lots-o-random bugfixes/tweaks (see ChangeLog)

* Thu Jan 17 2002 Michael K. Johnson <johnsonm@redhat.com>
- Added support for libredhat-kernel.so.* symlink handling

* Wed Nov  7 2001 Than Ngo <than@redhat.com>
- fix bug in setting netmask on s390/s390x (bug #55421)
  nmbd daemon works now ;-)

* Fri Nov  2 2001 Than Ngo <than@redhat.com>
- fixed typo bug ifup-ippp

* Mon Oct 29 2001 Than Ngo <than@redhat.com>
- fix bug in channel bundling if MSN is missed
- support DEBUG option
	
* Wed Sep 19 2001 Than Ngo <than@redhat.com>
- don't show user name by DSL connection

* Sat Sep  8 2001 Bill Nottingham <notting@redhat.com>
- don't run hwclock --adjust on a read-only filesystem

* Thu Sep  6 2001 Than Ngo <than@redhat.com>
* update initscripts-s390.patch for s390/s390x

* Wed Sep  5 2001 Bill Nottingham <notting@redhat.com>
- translation updates
- quota and hwclock tweaks (<pbrown@redhat.com>)

* Mon Sep  3 2001 Bill Nottingham <notting@redhat.com>
- fix severe alias problems (#52882)

* Mon Sep  3 2001 Than Ngo <than@redhat.com>
- don't start pppbind if encapsulation is rawip (bug #52491)

* Sun Sep  2 2001 Than Ngo <than@redhat.com>
- add ISDN patches from pekkas@netcore.fi and pb@bieringer.de (bug #52491)
- fix handling of ISDN LSZ Compresssion

* Thu Aug 30 2001 Than Ngo <than@redhat.com>
- po/de.po: fix typo bug, lo instead 1o

* Wed Aug 29 2001 David Sainty <dsainty@redhat.com>
- fix ifdown for multiple dhcpcd interfaces

* Wed Aug 29 2001 Than Ngo <than@redhat.com>
- fix ISDN dial on demand bug
- fix typo bug in network-functions

* Tue Aug 28 2001 Nalin Dahyabhai <nalin@redhat.com>
- document /etc/sysconfig/authconfig

* Tue Aug 28 2001 Bill Nottingham <notting@redhat.com> 6.31-1
- message un-tweaks (<johnsonm@redhat.com>)
- make getkey more useful, fix some of the autofsck stuff (<johnsonm@redhat.com>)

* Mon Aug 27 2001 Bill Nottingham <notting@redhat.com>
- autofsck support, archive modules/symbol info (<johnsonm@redhat.com>)

* Mon Aug 27 2001 Than Ngo <than@redhat.com>
- fix some typo bugs in ifup-ippp <ubeck@c3pdm.com>

* Fri Aug 24 2001 Bill Nottingham <notting@redhat.com>
- sort output of halt_get_remaining (#52180)
- fix bad translation (#52503)

* Wed Aug 22 2001 Bill Nottingham <notting@redhat.com>
- fix ifup-wireless (#52135)

* Wed Aug 22 2001 Than Ngo <than@redhat.com>
- fix return code of isdnctrl (bug #52225)

* Tue Aug 21 2001 Than Ngo <than@redhat.com>
- fix Bringing up isdn device again. It works now correct.

* Tue Aug 21 2001 Than Ngo <than@redhat.com>
- fix shutdown/Bringing up isdn device

* Mon Aug 20 2001 Nalin Dahyabhai <nalin@redhat.com>
- fix syntax error in lang.csh
- set codeset by echoing to /dev/tty instead of /proc/self/fd/15

* Sun Aug 19 2001 Bill Nottingham <notting@redhat.com>
- fix a broken call to check_device_down
- make all loopback addresses have host scope, not global scope.
  Fixes #49374, possibly others

* Wed Aug 15 2001 Bill Nottingham <notting@redhat.com>
- add is_available() network function, use it; cleans up ugly modprobe
  error messages
- update translation info
- fix #51787

* Wed Aug 15 2001 Bernhard Rosenkraenzer <bero@redhat.com>
- adjust s390 patch
- fix up ifup-ctc and mkkerneldoth.s390 (both are s390 specific)

* Mon Aug 13 2001 Yukihiro Nakai <ynakai@redhat.com>
- don't display Chinese Korean if we aren't on a pty

* Sat Aug 11 2001 Florian La Roche <Florian.LaRoche@redhat.de>
- adjust s390 patches to current sources

* Fri Aug 10 2001 Bill Nottingham <notting@redhat.com>
- use GDM_LANG if it's set in lang.sh/lang.csh (#51432, <otaylor@redhat.com>)

* Fri Aug 10 2001 Than Ngo <than@redhat.com>
- don't set MSN if it' empty (it's now optional)
- don't give login name as a cmdline-option (Bug #23066)
- remove peer device file if ppp connection is down
- fix channel bundling

* Thu Aug  9 2001 Bill Nottingham <notting@redhat.com>
- require SysVinit (#51335)

* Wed Aug  8 2001 Bill Nottingham <notting@redhat.com>
- tweak raittab grep slightly (#51231)
- allow resetting of default route for DHCP addresses (#48994)
- save resolv.conf in ifup-ppp for restoration by ifdown-post (#50759)
- when munging firewall rules for dns, only allow dest ports 1025-65535 (#44038, #40833)
- allow shell characters in ppp names (#43719)
- allow setting DHCP arguments, just kill dhcpcd instead of using -k (#46492)
- behave sanely if ifup called when dhcpcd is running (#49392, #51038)

* Mon Aug  6 2001 Bill Nottingham <notting@redhat.com>
- honor HOTPLUG=no if running under hotplug (#47483)
- use awk, not grep, for modprobe -c checks (#49616)
- don't print ugly messages for the case where the device doesn't exist,
  and there is no alias (i.e., PCMCIA ONBOOT=yes (#various))
- run kbdconfig in /.unconfigured mode (#43941)
- use a bigger buffer size argument to dmesg (#44024)
- detach loopback devices on shutdown (#43919, #45826)

* Thu Aug  2 2001 Bill Nottingham <notting@redhat.com>
- fix halt_get_remaining() (#50720)

* Tue Jul 31 2001 Bill Nottingham <notting@redhat.com>
- mount all FS types r/o at halt (#50461)
- don't use mii-tool at all (#various)

* Thu Jul 26 2001 Bill Nottingham <notting@redhat.com>
- don't use kbd commands in setsysfont now that we've switched back to
  console-tools (#50075)
- sleep in check_link_down; some devices require it
- only bring link down if check_link_down fails

* Wed Jul 25 2001 Bill Nottingham <notting@redhat.com>
- set link up before checking with mii-tool (#49949)

* Tue Jul 24 2001 Bill Nottingham <notting@redhat.com>
- update netdev stuff to use _netdev
- IPv6 updates (<pekkas@netcore.fi>)
- fix downing of devices with static IPs (#49777, #49783)
- put ifcfg-lo back in the package

* Fri Jul 20 2001 Preston Brown <pbrown@redhat.com> 6.06
- updates for quota

* Tue Jul 17 2001 Bill Nottingham <notting@redhat.com>
- own some more directories
- use -O nonetdev, require mount package that understands this
- fix do_netreport when called as non-root
- remove ip addresses from interfaces on ifdown
- oops, fix ifup/ifdown

* Mon Jul 16 2001 Than Ngo <than@redhat.com>
- fix country_code for ISDN

* Tue Jul  9 2001 Bill Nottingham <notting@redhat.com>
- fix '--check'
- prereq sh-utils (#43065)
- fix some invocations of reboot/halt (#45966)
- fix typo in ifup-wireless
- don't muck with /etc/issue each boot
- big IPv6 update (<pekkas@netcore.fi>)

* Fri Jul  6 2001 Trond Eivind Glomsrød <teg@redhat.com>
- Add new directories required by new network tool

* Thu Jul 05 2001 Karsten Hopp <karsten@redhat.de>
- disable hwclock on S390 (no such executable)
- Fix up kernel versioning on binary-only modules (S390)
- don't use newt scripts on S390 console

* Sat Jul 01 2001 Trond Eivind Glomsrød <teg@redhat.com>
- reenable pump, but make sure dhcpcd is the default. This
  way, upgrades of systems without dhcpcd has a better chance at
  working.

* Thu Jun 28 2001 Trond Eivind Glomsrød <teg@redhat.com>
- Disable pump completely

* Wed Jun 27 2001 Than Ngo <than@redhat.com>
- fix pap/chap authentication for syncppp
- support ippp options
	
* Mon Jun 25 2001 Bill Nottingham <notting@redhat.com>
- add ifup-wireless

* Fri Jun 22 2001 Than Ngo <than@redhat.com>
- add support xDSL

* Thu Jun 21 2001 Bill Nottingham <notting@redhat.com>
- more networking script fixes (#45364)
- add stuff for unmounting /initrd

* Thu Jun 21 2001 Than Ngo <than@redhat.com>
- add support ISDN

* Wed Jun 20 2001 Bill Nottingham <notting@redhat.com>
- fix extremely broken new network scripts

* Wed Jun 20 2001 Bill Nottingham <notting@redhat.com>
- bump version to 5.89
- make it build

* Thu May 17 2001 Bill Nottingham <notting@redhat.com>
- don't run ifup ppp0 if ppp-watch gets SIGINT (#40585, ak@cave.hop.stu.neva.ru)
- fix do_netreport (#37716, #39603 <crlf@aeiou.pt>)

* Wed May 16 2001 Nalin Dahyabhai <nalin@redhat.com>
- copyright: GPL -> license: GPL
- fix a syntax error in lang.csh
- skip commented-out i18n configuration lines in lang.csh

* Fri May 11 2001 Preston Brown <pbrown@redhat.com>
- new network-scripts infrastructure; ifcfg-lo moved to /etc/sysconfig/networking

* Wed May  2 2001 Bernhard Rosenkraenzer <bero@redhat.com> 5.86-1
- support kbd in setsysfont
- bzip2 source

* Wed Apr 25 2001 Florian La Roche <Florian.LaRoche@redhat.de>
- add further s390 changes:
	- ifup-iucv
	- mkkerneldoth.s390

* Tue Apr 24 2001 Than Ngo <than@redhat.com>
- add shutdown UPS into halt (bug #34312)

* Sat Apr  7 2001 Preston Brown <pbrown@redhat.com>
- broke out kernel.h updater from rc.sysinit into /sbin/mkkerneldoth

* Fri Apr  6 2001 Bill Nottingham <notting@redhat.com>
- be a little more careful in do_netreport (#34933)

* Tue Apr  3 2001 Bill Nottingham <notting@redhat.com>
- set umask explicitly to 022 in /etc/init.d/functions

* Mon Apr  2 2001 Bill Nottingham <notting@redhat.com>
- fix segfault in usernetctl (#34353)

* Mon Mar 26 2001 Bill Nottingham <notting@redhat.com>
- don't print errors in /etc/init.d/network if kernel.hotplug doesn't exist

* Thu Mar 22 2001 Erik Troan <ewt@redhat.com>
- take advantage of new swapon behaviors

* Wed Mar 14 2001 Bill Nottingham <notting@redhat.com>
- add cipe interfaces last (#31597)

* Tue Mar 13 2001 Bill Nottingham <notting@redhat.com>
- fix typo in ifup (#31627)
- update translation source

* Tue Mar 13 2001 Nalin Dahyabhai <nalin@redhat.com>
- fix typo in rc.sysinit
- fix ifup-routes not setting DEVICE properly

* Mon Mar 12 2001 Preston Brown <pbrown@redhat.com>
- Work properly with new quota utilities

* Mon Mar  5 2001 Bill Nottingham <notting@redhat.com>
- IPv6 fixes (#30506)
- make static-routes handling more sane and consistent (#29500, #29549)
- handle multiple USB controllers *correctly*

* Wed Feb 28 2001 Nalin Dahyabhai <nalin@redhat.com>
- usernetctl, ppp-watch: cleanups
- netreport: use O_NOFOLLOW
- ifup-ppp: let ppp-watch watch over demand-dialed connections (#28927)

* Tue Feb 27 2001 Bill Nottingham <notting@redhat.com>
- don't run isapnp on isapnp-enabled 2.4 kernels (part of #29450)
- disable hotplug during network initscript
- don't munge wireless keys in ifup; that will be done with the
  PCMCIA wireless stuff
- run sndconfig --mungepnp for non-native-isapnp soundcards
- don't explicitly kill things in init.d/single, init will do it
- don't explicitly load usb-storage; mount the usbdevfs before initializing
  host controller modules

* Wed Feb 21 2001 Bill Nottingham <notting@redhat.com>
- initialize multiple USB controllers if necessary

* Wed Feb 21 2001 Nalin Dahyabhai <nalin@redhat.com>
- close extra file descriptors before exec()ing commands in initlog

* Mon Feb 19 2001 Bill Nottingham <notting@redhat.com>
- fix some substitions in init.d/functions (fixes various killproc issues)
- make sure ipv6 module alias is available if configured
- fix initlog segfaults in popt when called with bogus stuff (#28140)

* Thu Feb 15 2001 Nalin Dahyabhai <nalin@redhat.com>
- make pidofproc() and killproc() try to use the PID associated with the full
  pathname first before killing the daemon by its basename (for daemons that
  share the same basename, i.e. "master" in postfix and cyrus-imapd) (#19016)
- fix status() as well

* Wed Feb 14 2001 Bill Nottingham <notting@redhat.com>
- fix init.d/single to work around possible kernel problem

* Tue Feb 13 2001 Bill Nottingham <notting@redhat.com>
- fix unmounting of loopback stuff (#26439, #14672)

* Mon Feb 12 2001 Bill Nottingham <notting@redhat.com>
- fix ifup-post so that it will work right when not called from ifup

* Sat Feb 10 2001 Florian La Roche <Florian.LaRoche@redhat.de>
- add all save changes for s390 s390x that won't break anything
  patches are from Oliver Paukstadt @ millenux.com

* Fri Feb  9 2001 Bill Nottingham <notting@redhat.com>
- muck with the font in lang.csh/lang.sh, but don't spit out errors (#26903)

* Wed Feb  7 2001 Bill Nottingham <notting@redhat.com>
- ipv6 sync ups (#26502, #25775)
- fix hangs at shutdown (#25744)
- fix ifup-ppp (#26323)

* Tue Feb  6 2001 Bill Nottingham <notting@redhat.com>
- modify firewall on ifup to allow any new DNS servers through (#25951)
- don't muck with the font in lang.csh/lang.sh (#26349)
- don't display Japanese if we aren't on a pty (#25041)
- load ide-scsi if passed on /proc/cmdline

* Mon Feb  5 2001 Trond Eivind Glomsrød <teg@redhat.com>
- i18n updates

* Fri Feb  2 2001 Bill Nottingham <notting@redhat.com>
- actually *ship* the ipv6 (and plusb) files

* Thu Feb  1 2001 Trond Eivind Glomsrød <teg@redhat.com>
- i18n updates

* Tue Jan 30 2001 Bill Nottingham <notting@redhat.com>
- various init.d/functions cleanups (#10761, from <mjt@tls.msk.ru>)
- in daemon(), only look at pidfile to determine if process is running
  (#17244, others)
- ifup-ppp enhancements (#17388, from <ayn2@cornell.edu>)
- ipv6 support (#23576, originally by Peter Bieringer <pb@bieringer.de>)
- lots of other minor fixes (see ChangeLog)

* Mon Jan 29 2001 Bill Nottingham <notting@redhat.com>
- add plusb support (#18892, patch from <eric.ayers@compgen.com>)
- don't ignore RETRYTIMEOUT when we never connect (#14071, patch from
  <ak@cave.hop.stu.neva.ru>)

* Wed Jan 24 2001 Bill Nottingham <notting@redhat.com>
- quiet LVM setup (#24841)
- fix inability to shutdown cleanly (#24889)

* Tue Jan 23 2001 Bill Nottingham <notting@redhat.com>
- new i18n mechanism

* Tue Jan 23 2001 Matt Wilson <msw@redhat.com>
- fixed typo in init.d/network - missing | in pipeline

* Mon Jan 22 2001 Bill Nottingham <notting@redhat.com>
- do LVM setup through normal initscripts mechanisms
- ignore backup files in /etc/sysconfig/network-scripts
- lots of .po file updates

* Tue Jan  2 2001 Bill Nottingham <notting@redhat.com>
- initial i18n support - originally from Conectiva

* Mon Dec 11 2000 Bill Nottingham <notting@redhat.com>
- only load sound if persistent DMA buffers are necessary
- fix lots of bugs: #18619, #21187, #21283, #12097
- integrate MAXFAIL option for ppp-watch
- don't load keymaps/fonts on a serial console

* Tue Nov 21 2000 Karsten Hopp <karsten@redhat.de>
- changed hdparm section in rc.sysinit to allow different
  parameters for each disk (if needed) by copying 
  /etc/sysconfig/harddisks to /etc/sysconfig/harddiskhda (hdb,hdc..)
- fix RFE #20967

* Tue Oct 31 2000 Than Ngo <than@redhat.com>
- fix the adding default route if GATEWAY=0.0.0.0

* Tue Oct 10 2000 Nalin Dahyabhai <nalin@redhat.com>
- handle "gw x.x.x.x" as the last pair of flags in ifup-routes (#18804)
- fix top-level makefile install target
- make usernetctl just fall-through if getuid() == 0

* Sun Sep  3 2000 Florian La Roche <Florian.LaRoche@redhat.com>
- /etc/init.d is already provided by chkconfig

* Wed Aug 23 2000 Nalin Dahyabhai <nalin@redhat.com>
- set "holdoff ${RETRYTIMEOUT} ktune" for demand-dialed PPP links

* Tue Aug 22 2000 Bill Nottingham <notting@redhat.com>
- update documentation (#15475)

* Tue Aug 22 2000 Than Ngo <than@redhat.de>
- add KDE2 support to prefdm

* Mon Aug 21 2000 Bill Nottingham <notting@redhat.com>
- add usleep after kill -KILL in pidofproc, works around lockd issues (#14847)
- add some fallback logic to prefdm (#16464)

* Fri Aug 18 2000 Bill Nottingham <notting@redhat.com>
- don't load usb drivers if they're compiled statically
- don't call ifdown-post twice for ppp (#15285)

* Wed Aug 16 2000 Bill Nottingham <notting@redhat.com>
- fix /boot/kernel.h generation (#16236, #16250)

* Tue Aug 15 2000 Nalin Dahyabhai <nalin@redhat.com>
- be more careful about creating files in netreport (#16164)

* Sat Aug 11 2000 Nalin Dahyabhai <nalin@redhat.com>
- move documentation for the DEMAND and IDLETIMEOUT values to the right
  section of sysconfig.txt

* Wed Aug  9 2000 Bill Nottingham <notting@redhat.com>
- load agpgart if necessary (hack)
- fix /boot/kernel.h stuff (jakub)

* Mon Aug  7 2000 Bill Nottingham <notting@redhat.com>
- remove console-tools requirement
- in netfs, start portmap if needed
- cosmetic cleanups, minor tweaks
- don't probe USB controllers

* Mon Aug  7 2000 Nalin Dahyabhai <nalin@redhat.com>
- fix demand-dialing support for PPP devices
- change updetach back to nodetach

* Sun Aug  6 2000 Bill Nottingham <notting@redhat.com>
- add RETRYCONNECT option for ifcfg-pppX files (kenn@linux.ie)

* Wed Jul 26 2000 Bill Nottingham <notting@redhat.com>
- fix unclean shutdown

* Tue Jul 25 2000 Nalin Dahyabhai <nalin@redhat.com>
- s/nill/null/g

* Tue Jul 25 2000 Bill Nottingham <notting@redhat.com>
- unmount usb filesystem on halt
- run /sbin/ifup-pre-local if it exists

* Tue Jul 18 2000 Trond Eivind Glomsrød <teg@redhat.com>
- add "nousb" command line parameter
- fix some warnings when mounting /proc/bus/usb

* Sat Jul 15 2000 Matt Wilson <msw@redhat.com>
- kill all the PreTransaction stuff
- directory ownership cleanups, add more LSB symlinks
- move all the stuff back in to /etc/rc.d/

* Thu Jul 13 2000 Bill Nottingham <notting@redhat.com>
- fix == tests in rc.sysinit
- more %pretrans tweaks

* Thu Jul 13 2000 Jeff Johnson <jbj@redhat.com>
- test if /etc/rc.d is a symlink already in pre-transaction syscalls.

* Tue Jul 11 2000 Bill Nottingham <notting@redhat.com>
- implement the %pre with RPM Magic(tm)

* Sat Jul  8 2000 Bill Nottingham <notting@redhat.com>
- fix it to not follow /etc/rc.d

* Fri Jul  7 2000 Bill Nottingham <notting@redhat.com>
- fix %pre, again

* Thu Jul  6 2000 Bill Nottingham <notting@redhat.com>
- tweak %pre back to a mv (rpm is fun!)
- do USB initialization before fsck, so keyboard works if it fails

* Mon Jul  3 2000 Bill Nottingham <notting@redhat.com>
- rebuild; allow 'fastboot' kernel command line option to skip fsck

* Mon Jul 03 2000 Nalin Dahyabhai <nalin@redhat.com>
- fix demand-dialing with PPP

* Sun Jul 02 2000 Trond Eivind Glomsrød <teg@redhat.com>
- don't use tail

* Thu Jun 28 2000 Trond Eivind Glomsrød <teg@redhat.com>
- add support for USB controllers and HID devices 
  (mice, keyboards)

* Tue Jun 27 2000 Trond Eivind Glomsrød <teg@redhat.com>
- add support for EIDE optimization

* Mon Jun 26 2000 Bill Nottingham <notting@redhat.com>
- tweak %%pre

* Wed Jun 21 2000 Preston Brown <pbrown@redhat.com>
- noreplace for adjtime file

* Fri Jun 16 2000 Nalin Dahyabhai <nalin@redhat.com>
- ifup-ppp: add hooks for demand-dialing PPP
- functions: use basename of process when looking for its PID file

* Thu Jun 15 2000 Bill Nottingham <notting@redhat.com>
- move from /etc/rc.d/init.d -> /etc/init.d

* Tue Jun 13 2000 Bill Nottingham <notting@redhat.com>
- set soft limit, not hard, in daemon function
- /var/shm -> /dev/shm

* Thu Jun 08 2000 Preston Brown <pbrown@redhat.com>
- use dhcpcd if pump fails.
- use depmod -A (faster)

* Sun Jun  4 2000 Bernhard Rosenkraenzer <bero@redhat.com>
- add autologin support to prefdm

* Thu Jun  1 2000 Bill Nottingham <notting@redhat.com>
- random networking fixes (alias routes, others)
- conf.modules -> modules.conf

* Thu May 11 2000 Nalin Dahyabhai <nalin@redhat.com>
- fix incorrect grep invocation in rc.sysinit (bug #11267)

* Wed Apr 19 2000 Bill Nottingham <notting@redhat.com>
- fix lang.csh, again (oops)
- use /poweroff, /halt to determine whether to poweroff

* Thu Apr 14 2000 Bill Nottingham <notting@redhat.com>
- fix testing of RESOLV_MODS (which shouldn't be used anyways)

* Tue Apr 04 2000 Ngo Than <than@redhat.de>
- fix overwrite problem of resolv.conf on ippp/ppp/slip connections

* Mon Apr  3 2000 Bill Nottingham <notting@redhat.com>
- fix typo in functions file
- explicitly set --localtime when calling hwclock if necessary

* Fri Mar 31 2000 Bill Nottingham <notting@redhat.com>
- fix typo in /etc/rc.d/init.d/network that broke linuxconf (#10472)

* Mon Mar 27 2000 Bill Nottingham <notting@redhat.com>
- remove compatiblity chkconfig links
- run 'netfs stop' on 'network stop' if necessary

* Tue Mar 21 2000 Bernhard Rosenkraenzer <bero@redhat.com>
- Mount /var/shm if required (2.3.99, 2.4)

* Mon Mar 20 2000 Bill Nottingham <notting@redhat.com>
- don't create resolv.conf 0600
- don't run ps as much (speed issues)
- allow setting of MTU
- other minor fixes

* Sun Mar 19 2000 Bernhard Rosenkraenzer <bero@redhat.com>
- Start devfsd if installed and needed (Kernel 2.4...)

* Wed Mar  8 2000 Bill Nottingham <notting@redhat.com>
- check that network devices are up before bringing them down

* Wed Mar  8 2000 Jakub Jelinek <jakub@redhat.com>
- update sysconfig.txt

* Tue Mar  7 2000 Bill Nottingham <notting@redhat.com>
- rerun sysctl on network start (for restarts)

* Mon Feb 28 2000 Bill Nottingham <notting@redhat.com>
- don't read commented raid devices

* Mon Feb 21 2000 Bill Nottingham <notting@redhat.com>
- fix typo in resolv.conf munging

* Thu Feb 17 2000 Bill Nottingham <notting@redhat.com>
- sanitize repair prompt
- initial support for isdn-config stuff

* Mon Feb 14 2000 Nalin Dahyabhai <nalin@redhat.com>
- add which as a package dependency (bug #9416)

* Tue Feb  8 2000 Bill Nottingham <notting@redhat.com>
- fixes for sound module loading

* Mon Feb  7 2000 Nalin Dahyabhai <nalin@redhat.com>
- check that LC_ALL/LINGUAS and LANG are set before referencing them in lang.csh
- fix check for /var/*/news, work around for bug #9140

* Fri Feb  4 2000 Nalin Dahyabhai <nalin@redhat.com>
- fix bug #9102

* Fri Feb  4 2000 Bill Nottingham <notting@redhat.com>
- if LC_ALL/LINGUAS == LANG, don't set them

* Wed Feb  2 2000 Bill Nottingham <notting@redhat.com>
- fix problems with linuxconf static routes

* Tue Feb  1 2000 Nalin Dahyabhai <nalin@redhat.com>
- shvar cleaning
- fix wrong default route ip in network-functions

* Mon Jan 31 2000 Nalin Dahyabhai <nalin@redhat.com>
- attempt to restore default route if PPP takes it over
- man page fix for ipcalc
- shvar cleaning
- automate maintaining /boot/System.map symlinks

* Mon Jan 31 2000 Bill Nottingham <notting@redhat.com>
- fix hanging ppp-watch
- fix issues with cleaning of /var/{run,lock}

* Fri Jan 21 2000 Bill Nottingham <notting@redhat.com>
- fix pidof calls in pidofproc

* Wed Jan 19 2000 Bill Nottingham <notting@redhat.com>
- fix ifup-ipx, don't munge resolv.conf if $DNS1 is already in it

* Thu Jan 13 2000 Bill Nottingham <notting@redhat.com>
- link popt statically

* Mon Jan 10 2000 Bill Nottingham <notting@redhat.com>
- don't try to umount /loopfs

* Mon Dec 27 1999 Bill Nottingham <notting@redhat.com>
- switch to using sysctl

* Mon Dec 13 1999 Bill Nottingham <notting@redhat.com>
- umount /proc *after* trying to turn off raid

* Mon Dec 06 1999 Michael K. Johnson <johnsonm@redhat.com>
- improvements in clone device handling
- better signal handling in ppp-watch
- yet another attempt to fix those rare PAP/CHAP problems

* Sat Nov 28 1999 Bill Nottingham <notting@redhat.com>
- impressive. Three new features, three new bugs.

* Mon Nov 22 1999 Michael K. Johnson <johnsonm@redhat.com>
- fix more possible failed CHAP authentication (with chat scripts)
- fix ppp default route problem
- added ppp-watch man page, fixed usernetctl man page
- make ifup-ppp work again when called from netcfg and linuxconf
- try to keep ppp-watch from filling up logs by respawning pppd too fast
- handle all linuxconf-style alias files with linuxconf

* Mon Nov 22 1999 Bill Nottingham <notting@redhat.com>
- load mixer settings for monolithic sound
- man page for ppp-watch
- add ARP variable for ifup
- some i18n fixes

* Wed Nov 10 1999 Bill Nottingham <notting@redhat.com>
- control stop-a separately from sysrq

* Mon Nov 08 1999 Michael K. Johnson <johnsonm@redhat.com>
- fix some failed CHAP authentication
- fix extremely unlikely, but slightly possible kill-random-process
  bug in ppp-watch
- allow DNS{1,2} in any ifcfg-* file, not just PPP, and
  add nameserver entries, don't just replace them
- don't use /tmp/confirm, use /var/run/confirm instead

* Tue Nov  2 1999 Bill Nottingham <notting@redhat.com>
- fix lang.csh /tmp race oops

* Wed Oct 27 1999 Bill Nottingham <notting@redhat.com>
- we now ship hwclock on alpha.

* Mon Oct 25 1999 Jakub Jelinek <jakub@redhat.com>
- fix check for serial console, don't use -C argument to fsck
  on serial console.

* Mon Oct 18 1999 Bill Nottingham <notting@redhat.com>
- do something useful with linuxconf 'any' static routes.

* Tue Oct 12 1999 Matt Wilson <msw@redhat.com>
- added patch from Owen to source i18n configuration before starting prefdm

* Mon Oct 11 1999 Bill Nottingham <notting@redhat.com>
- support for linuxconf alias files
- add support for Jensen clocks.

* Tue Oct  5 1999 Bill Nottingham <notting@redhat.com>
- assorted brown paper bag fixes
- check for programs/files before executing/sourcing them
- control stop-a like magic sysrq

* Thu Sep 30 1999 Bill Nottingham <notting@redhat.com>
- req. e2fsprogs >= 1.15

* Fri Sep 24 1999 Bill Nottingham <notting@redhat.com>
- munge C locale definitions to en_US
- use fsck's completion bar

* Thu Sep 23 1999 Michael K. Johnson <johnsonm@redhat.com>
- ppp-watch now always kills pppd pgrp to make sure dialers are dead,
  and tries to hang up the modem

* Tue Sep 21 1999 Bill Nottingham <notting@redhat.com>
- add a DEFRAG_IPV4 option

* Mon Sep 20 1999 Michael K. Johnson <johnsonm@redhat.com>
- changed to more modern defaults for PPP connections

* Mon Sep 20 1999 Bill Nottingham <notting@redhat.com>
- kill processes for umount in halt, too.
- fixes to remove /usr dependencies

* Fri Sep 17 1999 Bill Nottingham <notting@redhat.com>
- load/save mixer settings in rc.sysinit, halt

* Mon Sep 13 1999 Michael K. Johnson <johnsonm@redhat.com>
- add --remotename option to wvdial code
- make sure we do not have an earlier version of wvdial that doesn't
  know how handle --remotename
- make ppp-watch background itself after 30 seconds even if
  connection does not come up, at boot time only, so that a
  non-functional PPP connection cannot hang boot.

* Sun Sep 12 1999 Bill Nottingham <notting@redhat.com>
- a couple of /bin/sh -> /bin/bash fixes
- fix swapoff silliness

* Fri Sep 10 1999 Bill Nottingham <notting@redhat.com>
- chkconfig --del in %preun, not %postun
- use killall5 in halt
- swapoff non-/etc/fstab swap

* Wed Sep 08 1999 Michael K. Johnson <johnsonm@redhat.com>
- ifdown now synchronous (modulo timeouts)
- several unrelated cleanups, primarily in ifdown

* Tue Sep  7 1999 Bill Nottingham <notting@redhat.com>
- add an 'unconfigure' sort of thing

* Mon Sep 06 1999 Michael K. Johnson <johnsonm@redhat.com>
- added ppp-watch to make "ifup ppp*" synchronous

* Fri Sep  3 1999 Bill Nottingham <notting@redhat.com>
- require lsof

* Wed Sep  1 1999 Bill Nottingham <notting@redhat.com>
- add interactive prompt

* Tue Aug 31 1999 Bill Nottingham <notting@redhat.com>
- disable magic sysrq by default

* Mon Aug 30 1999 Bill Nottingham <notting@redhat.com>
- new NFS unmounting from Bill Rugolsky <rugolsky@ead.dsa.com> 
- fix ifup-sl/dip confusion
- more raid startup cleanup
- make utmp group 22

* Fri Aug 20 1999 Bill Nottingham <notting@redhat.com>
- pass hostname to pump
- add lang.csh

* Thu Aug 19 1999 Bill Nottingham <notting@redhat.com>
- more wvdial updates
- fix a *stupid* bug in process reading

* Fri Aug 13 1999 Bill Nottingham <notting@redhat.com>
- add new /boot/kernel.h boot kernel version file
- new RAID startup

* Fri Aug 13 1999 Michael K. Johnson <johnsonm@redhat.com>
- use new linkname argument to pppd to make if{up,down}-ppp
  reliable -- requires ppp-2.3.9 or higher

* Mon Aug  2 1999 Bill Nottingham <notting@redhat.com>
- fix typo.
- add 'make check'

* Wed Jul 28 1999 Michael K. Johnson <johnsonm@redhat.com>
- simple wvdial support for ppp connections

* Mon Jul 26 1999 Bill Nottingham <notting@redhat.com>
- stability fixes for initlog
- initlog now has a config file
- add alias speedup from dharris@drh.net
- move netfs links
- usleep updates

* Thu Jul  8 1999 Bill Nottingham <notting@redhat.com>
- remove timeconfig dependency
- i18n fixes from nkbj@image.dk
- move inputrc to setup package

* Tue Jul  6 1999 Bill Nottingham <notting@redhat.com>
- fix killall links, some syntax errors

* Fri Jun 25 1999 Bill Nottingham <notting@redhat.com>
- don't make module-info, System.map links
- handle utmpx/wtmpx
- fix lots of bugs in 4.21 release :)

* Thu Jun 17 1999 Bill Nottingham <notting@redhat.com>
- set clock as soon as possible
- use INITLOG_ARGS everywhere
- other random fixes in networking

* Mon Jun 14 1999 Bill Nottingham <notting@redhat.com>
- oops, don't create /var/run/utmp and then remove it.
- stomp RAID bugs flat. Sort of.

* Mon May 24 1999 Bill Nottingham <notting@redhat.com>
- clean out /var better
- let everyone read /var/run/ppp*.dev
- fix network startup so it doesn't depend on /usr

* Tue May 11 1999 Bill Nottingham <notting@redhat.com>
- various fixes to rc.sysinit
- fix raid startup
- allow for multi-processor /etc/issues

* Sun Apr 18 1999 Matt Wilson <msw@redhat.com>
- fixed typo - "Determing" to "Determining"

* Fri Apr 16 1999 Preston Brown <pbrown@redhat.com>
- updated inputrc so that home/end/del work on console, not just X

* Thu Apr 08 1999 Bill Nottingham <notting@redhat.com>
- fix more logic in initlog
- fix for kernel versions in ifup-aliases
- log to /var/log/boot.log

* Wed Apr 07 1999 Bill Nottingham <notting@redhat.com>
- fix daemon() function so you can specify pid to look for

* Wed Apr 07 1999 Erik Troan <ewt@redhat.com>
- changed utmp,wtmp to be group writeable and owned by group utmp

* Tue Apr 06 1999 Bill Nottingham <notting@redhat.com>
- fix loading of consolefonts/keymaps
- three changelogs. three developers. one day. Woohoo!

* Tue Apr 06 1999 Michael K. Johnson <johnsonm@redhat.com>
- fixed ifup-ipx mix-up over . and _

* Tue Apr 06 1999 Erik Troan <ewt@redhat.com>
- run /sbin/ifup-local after bringing up an interface (if that file exists)

* Mon Apr  5 1999 Bill Nottingham <notting@redhat.com>
- load keymaps & console font early
- fixes for channel bonding, strange messages with non-boot network interfaces

* Sat Mar 27 1999 Cristian Gafton <gafton@redhat.com>
- added sysvinitfiles as a documenattaion file

* Fri Mar 26 1999 Bill Nottingham <notting@redhat.com>
- nfsfs -> netfs

* Mon Mar 22 1999 Bill Nottingham <notting@redhat.com>
- don't source /etc/sysconfig/init if $BOOTUP is already set

* Fri Mar 19 1999 Bill Nottingham <notting@redhat.com>
- don't run linuxconf if /usr isn't mounted
- set macaddr before bootp
- zero in the /var/run/utmpx file (gafton)
- don't set hostname on ppp/slip (kills X)
			
* Wed Mar 17 1999 Bill Nottingham <notting@redhat.com>
- exit ifup if pump fails
- fix stupid errors in reading commands from subprocess

* Tue Mar 16 1999 Bill Nottingham <notting@redhat.com>
- fix ROFS logging
- make fsck produce more happy output
- fix killproc logic

* Mon Mar 15 1999 Bill Nottingham <notting@redhat.com>
- doc updates
- support for SYSFONTACM, other console-tools stuff
- add net route for interface if it isn't there.
- fix for a bash/bash2 issue

* Mon Mar 15 1999 Michael K. Johnson <johnsonm@redhat.com>
- pam_console lockfile cleanup added to rc.sysinit

* Sun Mar 14 1999 Bill Nottingham <notting@redhat.com>
- fixes in functions for 'action'
- fixes for pump

* Wed Mar 10 1999 Bill Nottingham <notting@redhat.com>
- Mmm. Must always remove debugging code. before release. *thwap*
- pump support
- mount -a after mount -a -t nfs

* Thu Feb 25 1999 Bill Nottingham <notting@redhat.com>
- put preferred support back in

* Thu Feb 18 1999 Bill Nottingham <notting@redhat.com>
- fix single-user mode (source functions, close if)

* Wed Feb 10 1999 Bill Nottingham <notting@redhat.com>
- turn off xdm in runlevel 5 (now a separate service)

* Thu Feb  4 1999 Bill Nottingham <notting@redhat.com>
- bugfixes (ifup-ppp, kill -TERM, force fsck, hwclock --adjust, setsysfont)
- add initlog support. Now everything is logged (and bootup looks different)

* Thu Nov 12 1998 Preston Brown <pbrown@redhat.com>
- halt now passed the '-i' flag so that network interfaces disabled

* Tue Nov 10 1998 Michael K. Johnson <johnsonm@redhat.com>
- handle new linuxconf output for ipaliases

* Mon Oct 15 1998 Erik Troan <ewt@redhat.com>
- fixed raid start stuff
- added raidstop to halt

* Mon Oct 12 1998 Cristian Gafton <gafton@redhat.com>
- handle LC_ALL

* Mon Oct 12 1998 Preston Brown <pbrown@redhat.com>
- adjusted setsysfont to always run setfont, even if only w/default font

* Tue Oct 06 1998 Cristian Gafton <gafton@redhat.com>
- rc.sysvinit should be working with all kernel versions now
- requires e2fsprogs (for fsck)
- set INPUTRC and LESSCHARSET on linux-lat

* Wed Sep 16 1998 Jeff Johnson <jbj@redhat.com>
- /etc/rc.d/rc: don't run /etc/rc.d/rcN.d/[KS]??foo.{rpmsave,rpmorig} scripts.
- /etc/rc.d/rc.sysinit: raid startup (Nigel.Metheringham@theplanet.net).
- /sbin/setsysfont: permit unicode fonts.

* Mon Aug 17 1998 Erik Troan <ewt@redhat.com>
- don't add 'Red Hat Linux' to /etc/issue; use /etc/redhat-release as is

* Sun Aug 16 1998 Jeff Johnson <jbj@redhat.com>
- paranoia improvements to .rhkmvtag
- if psacct with /sbin/accton, than turn off accounting

* Tue Jul  7 1998 Jeff Johnson <jbj@redhat.com>
- start/stop run levels changed.
- ipx_configure/ipx_internal_net moved to /sbin.

* Wed Jul 01 1998 Erik Troan <ewt@redhat.com>
- usernetctl didn't understand "" around USERCTL attribute

* Wed Jul  1 1998 Jeff Johnson <jbj@redhat.com>
- Use /proc/version to find preferred modules.
- Numerous buglets fixed.

* Sun Jun 07 1998 Erik Troan <ewt@redhat.com> 
- rc.sysinit looks for bootfile= as well as BOOT_IMAGE to set 
  /lib/modules/preferred symlink

* Mon Jun 01 1998 Erik Troan <ewt@redhat.com>
- ipcalc should *never* have been setgid anything
- depmod isn't run properly for non-serial numbered kernels

* Wed May 06 1998 Donnie Barnes <djb@redhat.com>
- added system font and language setting

* Mon May 04 1998 Michael K. Johnson <johnsonm@redhat.com>
- Added missing files to packagelist.

* Sat May 02 1998 Michael K. Johnson <johnsonm@redhat.com>
- Added lots of linuxconf support.  Should still work on systems that
  do not have linuxconf installed, but linuxconf gives enhanced support.
- In concert with linuxconf, added IPX support.  Updated docs to reflect it.

* Fri May 01 1998 Erik Troan <ewt@redhat.com>
- rc.sysinit uses preferred directory

* Sun Apr 05 1998 Erik Troan <ewt@redhat.com>
- updated rc.sysinit to deal with kernel versions with release numbers

* Sun Mar 22 1998 Erik Troan <ewt@redhat.com>
- use ipcalc to calculate the netmask if one isn't specified

* Tue Mar 10 1998 Erik Troan <ewt@redhat.com>
- added and made use of ipcalc

* Tue Mar 10 1998 Erik Troan <ewt@redhat.com>
- removed unnecessary dhcp log from /tmp

* Mon Mar 09 1998 Erik Troan <ewt@redhat.com>
- if bootpc fails, take down the device

* Mon Mar 09 1998 Erik Troan <ewt@redhat.com>
- added check for mktemp failure

* Thu Feb 05 1998 Erik Troan <ewt@redhat.com>
- fixed support for user manageable cloned devices

* Mon Jan 12 1998 Michael K. Johnson <johnsonm@redhat.com>
- /sbin/ isn't always in $PATH, so call /sbin/route in ifup-routes

* Wed Dec 31 1997 Erik Troan <ewt@redhat.com>
- touch /var/lock/subsys/kerneld after cleaning out /var/lock/subsys
- the logic for when  /var/lock/subsys/kerneld is touched was backwards

* Tue Dec 30 1997 Erik Troan <ewt@redhat.com>
- tried to get /proc stuff right one more time (uses -t nonfs,proc now)
- added support for /fsckoptions
- changed 'yse' to 'yes' in KERNELD= line

* Tue Dec 09 1997 Erik Troan <ewt@redhat.com>
- set domainname to "" if none is specified in /etc/sysconfig/network
- fix /proc mounting to get it in /etc/mtab

* Mon Dec 08 1997 Michael K. Johnson <johnsonm@redhat.com>
- fixed inheritance for clone devices

* Fri Nov 07 1997 Erik Troan <ewt@redhat.com>
- added sound support to rc.sysinit

* Fri Nov 07 1997 Michael K. Johnson <johnsonm@redhat.com>
- Added missing "then" clause

* Thu Nov 06 1997 Michael K. Johnson <johnsonm@redhat.com>
- Fixed DEBUG option in ifup-ppp
- Fixed PPP persistance
- Only change IP forwarding if necessary

* Tue Oct 28 1997 Donnie Barnes <djb@redhat.com>
- removed the skeleton init script
- added the ability to 'nice' daemons

* Tue Oct 28 1997 Erik Troan <ewt@redhat.com>
- touch /var/lock/subsys/kerneld if it's running, and after mounting /var
- applied dhcp fix

* Thu Oct 23 1997 Donnie Barnes <djb@redhat.com>
- added status|restart to init scripts

* Thu Oct 23 1997 Michael K. Johnson <johnsonm@redhat.com>
- touch random seed file before chmod'ing it.

* Wed Oct 15 1997 Erik Troan <ewt@redhat.com>
- run domainname if NISDOMAIN is set 

* Wed Oct 15 1997 Michael K. Johnson <johnsonm@redhat.com>
- Make the random seed file mode 600.

* Tue Oct 14 1997 Michael K. Johnson <johnsonm@redhat.com>
- bring down ppp devices if ifdown-ppp is called while ifup-ppp is sleeping.

* Mon Oct 13 1997 Erik Troan <ewt@redhat.com>
- moved to new chkconfig conventions

* Sat Oct 11 1997 Erik Troan <ewt@redhat.com>
- fixed rc.sysinit for hwclock compatibility

* Thu Oct 09 1997 Erik Troan <ewt@redhat.com>
- run 'ulimit -c 0' before running scripts in daemon function

* Wed Oct 08 1997 Donnie Barnes <djb@redhat.com>
- added chkconfig support
- made all rc*.d symlinks have missingok flag

* Mon Oct 06 1997 Erik Troan <ewt@redhat.com>
- fixed network-scripts to allow full pathnames as config files
- removed some old 3.0.3 pcmcia device handling

* Wed Oct 01 1997 Michael K. Johnson <johnsonm@redhat.com>
- /var/run/netreport needs to be group-writable now that /sbin/netreport
  is setguid instead of setuid.

* Tue Sep 30 1997 Michael K. Johnson <johnsonm@redhat.com>
- Added network-functions to spec file.
- Added report functionality to usernetctl.
- Fixed bugs I introduced into usernetctl while adding clone device support.
- Clean up entire RPM_BUILD_ROOT directory in %clean.

* Mon Sep 29 1997 Michael K. Johnson <johnsonm@redhat.com>
- Clone device support in network scripts, rc scripts, and usernetctl.
- Disassociate from controlling tty in PPP and SLIP startup scripts,
  since they act as daemons.
- Spec file now provides start/stop symlinks, since they don't fit in
  the CVS archive.

* Tue Sep 23 1997 Donnie Barnes <djb@redhat.com>
- added mktemp support to ifup

* Thu Sep 18 1997 Donnie Barnes <djb@redhat.com>
- fixed some init.d/functions bugs for stopping httpd

* Tue Sep 16 1997 Donnie Barnes <djb@redhat.com>
- reworked status() to adjust for processes that change their argv[0] in
  the process table.  The process must still have it's "name" in the argv[0]
  string (ala sendmail: blah blah).

* Mon Sep 15 1997 Erik Troan <ewt@redhat.com>
- fixed bug in FORWARD_IPV4 support

* Sun Sep 14 1997 Erik Troan <ewt@redhat.com>
- added support for FORWARD_IPV4 variable

* Thu Sep 11 1997 Donald Barnes <djb@redhat.com>
- added status function to functions along with better killproc 
  handling.
- added /sbin/usleep binary (written by me) and man page
- changed BuildRoot to /var/tmp instead of /tmp

* Tue Jun 10 1997 Michael K. Johnson <johnsonm@redhat.com>
- /sbin/netreport sgid rather than suid.
- /var/run/netreport writable by group root.

- /etc/ppp/ip-{up|down} no longer exec their local versions, so
  now ifup-post and ifdown-post will be called even if ip-up.local
  and ip-down.local exist.

* Tue Jun 03 1997 Michael K. Johnson <johnsonm@redhat.com>
- Added missing -f to [ invocation in ksyms check.

* Fri May 23 1997 Michael K. Johnson <johnsonm@redhat.com>
- Support for net event notification:
  Call /sbin/netreport to request that SIGIO be sent to you whenever
  a network interface changes status (won't work for brining up SLIP
  devices).
  Call /sbin/netreport -r to remove the notification request.
- Added ifdown-post, and made all the ifdown scrips call it, and
  added /etc/ppp/ip-down script that calls /etc/ppp/ip-down.local
  if it exists, then calls ifdown-post.
- Moved ifup and ifdown to /sbin

* Tue Apr 15 1997 Michael K. Johnson <johnsonm@redhat.com>
- usernetctl put back in ifdown
- support for slaved interfaces

* Wed Apr 02 1997 Erik Troan <ewt@redhat.com>
- Created ifup-post from old ifup
- PPP, PLIP, and generic ifup use ifup-post

* Fri Mar 28 1997 Erik Troan <ewt@redhat.com>
- Added DHCP support
- Set hostname via reverse name lookup after configuring a networking
  device if the current hostname is (none) or localhost

* Tue Mar 18 1997 Erik Troan <ewt@redhat.com>
- Got rid of xargs dependency in halt script
- Don't mount /proc twice (unmount it in between)
- sulogin and filesystem unmounting only happened for a corrupt root 
  filesystem -- it now happens when other filesystems are corrupt as well

* Tue Mar 04 1997 Michael K. Johnson <johnsonm@redhat.com>
- PPP fixes and additions

* Mon Mar 03 1997 Erik Troan <ewt@redhat.com>
- Mount proc before trying to start kerneld so we can test for /proc/ksyms
  properly.

* Wed Feb 26 1997 Michael K. Johnson <johnsonm@redhat.com>
- Added MTU for PPP.
- Put PPPOPTIONS at the end of the options string instead of at the
  beginning so that they override other options.  Gives users more rope...
- Don't do module-based stuff on non-module systems.  Ignore errors if
  st module isn't there and we try to load it.

* Tue Feb 25 1997 Michael K. Johnson <johnsonm@redhat.com>
- Changed ifup-ppp and ifdown-ppp not to use doexec, because the argv[0]
  provided by doexec goes away when pppd gets swapped out.
- ifup-ppp now sets remotename to the logical name of the device.
  This will BREAK current PAP setups on netcfg-managed interfaces,
  but we needed to do this to add a reasonable interface-specific
  PAP editor to netcfg.

* Fri Feb 07 1997 Erik Troan <ewt@redhat.com>
- Added usernetctl wrapper for user mode ifup and ifdown's and man page
- Rewrote ppp and slip kill and retry code 
- Added doexec and man page
'>11860 11861 11862 11863 11864 11865 11866 11867 11868 11869 11870 11871 11872 11873 11874 11875 11876 11877 11878 11879 11880 11881 11882 11883 11884 11885 11886 11887 11888 11889 11890 11891 11892 11893 11894 11895 11896 11897 11898 11899 11900 11901 11902 11903 11904 11905 11906 11907 11908 11909 11910 11911 11912 11913 11914 11915 11916 11917 11918 11919 11920 11921 11922 11923 11924 11925 11926 11927 11928 11929 11930 11931 11932 11933 11934 11935 11936 11937 11938 11939 11940 11941 11942 11943 11944 11945 11946 11947 11948 11949 11950 11951 11952 11953 11954 11955 11956 11957 11958 11959 11960 11961 11962 11963 11964 11965 11966 11967 11968 11969 11970 11971 11972 11973 11974 11975 11976 11977 11978 11979 11980 11981 11982 11983 11984 11985 11986 11987 11988 11989 11990 11991 11992 11993 11994 11995 11996 11997 11998 11999 12000 12001 12002 12003 12004 12005 12006 12007 12008 12009 12010 12011 12012 12013 12014 12015 12016 12017 12018 12019 12020 12021 12022 12023 12024 12025 12026 12027 12028 12029 12030 12031 12032 12033 12034 12035 12036 12037 12038 12039 12040 12041 12042 12043 12044 12045 12046 12047 12048 12049 12050 12051 12052 12053 12054 12055 12056 12057 12058 12059 12060 12061 12062 12063 12064 12065 12066 12067 12068 12069 12070 12071 12072 12073 12074 12075 12076 12077 12078 12079 12080 12081 12082 12083 12084 12085 12086 12087 12088 12089 12090 12091 12092 12093 12094 12095 12096 12097 12098 12099 12100 12101 12102 12103 12104 12105 12106 12107 12108 12109 12110 12111 12112 12113 12114 12115 12116 12117 12118 12119 12120 12121 12122 12123 12124 12125 12126 12127 12128 12129 12130 12131 12132 12133 12134 12135 12136 12137 12138 12139 12140 12141 12142 12143 12144 12145 12146 12147 12148 12149 12150 12151 12152 12153 12154 12155 12156 12157 12158 12159 12160 12161 12162 12163 12164 12165 12166 12167 12168 12169 12170 12171 12172 12173 12174 12175 12176 12177 12178 12179 12180 12181 12182 12183 12184 12185 12186 12187 12188 12189 12190 12191 12192 12193 12194 12195 12196 12197 12198 12199 12200 12201 12202 12203 12204 12205 12206 12207 12208 12209 12210 12211 12212 12213 12214 12215 12216 12217 12218 12219 12220 12221 12222 12223 12224 12225 12226 12227 12228 12229 12230 12231 12232 12233 12234 12235 12236 12237 12238 12239 12240 12241 12242 12243 12244 12245 12246 12247 12248 12249 12250 12251 12252 12253 12254 12255 12256 12257 12258 12259 12260 12261 12262 12263 12264 12265 12266 12267 12268 12269 12270 12271 12272 12273 12274 12275 12276 12277 12278 12279 12280 12281 12282 12283 12284 12285 12286 12287 12288 12289 12290 12291 12292 12293 12294 12295 12296 12297 12298 12299 12300 12301 12302 12303 12304 12305 12306 12307 12308 12309 12310 12311 12312 12313 12314 12315 12316 12317 12318 12319 12320 12321 12322 12323 12324 12325 12326 12327 12328 12329 12330 12331 12332 12333 12334 12335 12336 12337 12338 12339 12340 12341 12342 12343 12344 12345 12346 12347 12348 12349 12350 12351 12352 12353 12354 12355 12356 12357 12358 12359 12360 12361 12362 12363 12364 12365 12366 12367 12368 12369 12370 12371 12372 12373 12374 12375 12376 12377 12378 12379 12380 12381 12382 12383 12384 12385 12386 12387 12388 12389 12390 12391 12392 12393 12394 12395 12396 12397 12398 12399 12400 12401 12402 12403 12404 12405 12406 12407 12408 12409 12410 12411 12412 12413 12414 12415 12416 12417 12418 12419 12420 12421 12422 12423 12424 12425 12426 12427 12428 12429 12430 12431 12432 12433 12434 12435 12436 12437 12438 12439 12440 12441 12442 12443 12444 12445 12446 12447 12448 12449 12450 12451 12452 12453 12454 12455 12456 12457 12458 12459 12460 12461 12462 12463 12464 12465 12466 12467 12468 12469 12470 12471 12472 12473 12474 12475 12476 12477 12478 12479 12480 12481 12482 12483 12484 12485 12486 12487 12488 12489 12490 12491 12492 12493 12494 12495 12496 12497 12498 12499 12500 12501 12502 12503 12504 12505 12506 12507 12508 12509 12510 12511 12512 12513 12514 12515 12516 12517 12518 12519 12520 12521 12522 12523 12524 12525 12526 12527 12528 12529 12530 12531 12532 12533 12534 12535 12536 12537 12538 12539 12540 12541 12542 12543 12544 12545 12546 12547 12548 12549 12550 12551 12552 12553 12554 12555 12556 12557 12558 12559 12560 12561 12562 12563 12564 12565 12566 12567 12568 12569 12570 12571 12572 12573 12574 12575 12576 12577 12578 12579 12580 12581 12582 12583 12584 12585 12586 12587 12588 12589 12590 12591 12592 12593 12594 12595 12596 12597 12598 12599 12600 12601 12602 12603 12604 12605 12606 12607 12608 12609 12610 12611 12612 12613 12614 12615 12616 12617 12618 12619 12620 12621 12622 12623 12624 12625 12626 12627 12628 12629 12630 12631 12632 12633 12634 12635 12636 12637 12638 12639 12640 12641 12642 12643 12644 12645 12646 12647 12648 12649 12650 12651 12652 12653 12654 12655 12656 12657 12658 12659 12660 12661 12662 12663 12664 12665 12666 12667 12668 12669 12670 12671 12672 12673 12674 12675 12676 12677 12678 12679 12680 12681 12682 12683 12684 12685 12686 12687 12688 12689 12690 12691 12692 12693 12694 12695 12696 12697 12698 12699 12700 12701 12702 12703 12704 12705 12706 12707 12708 12709 12710 12711 12712 12713 12714 12715 12716 12717 12718 12719 12720 12721 12722 12723 12724 12725 12726 12727 12728 12729 12730 12731 12732 12733 12734 12735 12736 12737 12738 12739 12740 12741 12742 12743 12744 12745 12746 12747 12748 12749 12750 12751 12752 12753 12754 12755 12756 12757 12758 12759 12760 12761 12762 12763 12764 12765 12766 12767 12768 12769 12770 12771 12772 12773 12774 12775 12776 12777 12778 12779 12780 12781 12782 12783 12784 12785 12786 12787 12788 12789 12790 12791 12792 12793 12794 12795 12796 12797 12798 12799 12800 12801 12802 12803 12804 12805 12806 12807 12808 12809 12810 12811 12812 12813 12814 12815 12816 12817 12818 12819 12820 12821 12822 12823 12824 12825 12826 12827 12828 12829 12830 12831 12832 12833 12834 12835 12836 12837 12838 12839 12840 12841 12842 12843 12844 12845 12846 12847 12848 12849 12850 12851 12852 12853 12854 12855 12856 12857 12858 12859 12860 12861 12862 12863 12864 12865 12866 12867 12868 12869 12870 12871 12872 12873 12874 12875 12876 12877 12878 12879 12880 12881 12882 12883 12884 12885 12886 12887 12888 12889 12890 12891 12892 12893 12894 12895 12896 12897 12898 12899 12900 12901 12902 12903 12904 12905 12906 12907 12908 12909 12910 12911 12912 12913 12914 12915 12916 12917 12918 12919 12920 12921 12922 12923 12924 12925 12926 12927 12928 12929 12930 12931 12932 12933 12934 12935 12936 12937 12938 12939 12940 12941 12942 12943 12944 12945 12946 12947 12948 12949 12950 12951 12952 12953 12954 12955 12956 12957 12958 12959 12960 12961 12962 12963 12964 12965 12966 12967 12968 12969 12970 12971 12972 12973 12974 12975 12976 12977 12978 12979 12980 12981 12982 12983 12984 12985 12986 12987 12988 12989 12990 12991 12992 12993 12994 12995 12996 12997 12998 12999 13000 13001 13002 13003 13004 13005 13006 13007 13008 13009 13010 13011 13012 13013 13014 13015 13016 13017 13018 13019 13020 13021 13022 13023 13024 13025 13026 13027 13028 13029 13030 13031 13032 13033 13034 13035 13036 13037 13038 13039 13040 13041 13042 13043 13044 13045 13046 13047 13048 13049 13050 13051 13052 13053 13054 13055 13056 13057 13058 13059 13060 13061 13062 13063 13064 13065 13066 13067 13068 13069 13070 13071 13072 13073 13074 13075 13076 13077 13078 13079 13080 13081 13082 13083 13084 13085 13086 13087 13088 13089 13090 13091 13092 13093 13094 13095 13096 13097 13098 13099 13100 13101 13102 13103 13104 13105 13106 13107 13108 13109 13110 13111 13112 13113 13114 13115 13116 13117 13118 13119 13120 13121 13122 13123 13124 13125 13126 13127 13128 13129 13130 13131 13132 13133 13134 13135 13136 13137 13138 13139 13140 13141 13142 13143 13144 13145 13146 13147 13148 13149 13150 13151 13152 13153 13154 13155 13156 13157 13158 13159 13160 13161 13162 13163 13164 13165 13166 13167 13168 13169 13170 13171 13172 13173 13174 13175 13176 13177 13178 13179 13180 13181 13182 13183 13184 13185 13186 13187 13188 13189 13190 13191 13192 13193 13194 13195 13196 13197 13198 13199 13200 13201 13202 13203 13204 13205 13206 13207 13208 13209 13210 13211 13212 13213 13214 13215 13216 13217 13218 13219 13220 13221 13222 13223 13224 13225 13226 13227 13228 13229 13230 13231 13232 13233 13234 13235 13236 13237 13238 13239 13240 13241 13242 13243 13244 13245 13246 13247 13248 13249 13250 13251 13252 13253 13254 13255 13256 13257 13258 13259 13260 13261 13262 13263 13264 13265 13266 13267 13268 13269 13270 13271 13272 13273 13274 13275 13276 13277 13278 13279 13280 13281 13282 13283 13284 13285 13286 13287 13288 13289 13290 13291 13292 13293 13294 13295 13296 13297 13298 13299 13300 13301 13302 13303 13304 13305 13306 13307 13308 13309 13310 13311 13312 13313 13314 13315 13316 13317 13318 13319 13320 13321 13322 13323 13324 13325 13326 13327 13328 13329 13330 13331 13332 13333 13334 13335 13336 13337 13338 13339 13340 13341 13342 13343 13344 13345 13346 13347 13348 13349 13350 13351 13352 13353 13354 13355 13356 13357 13358 13359 13360 13361 13362 13363 13364 13365 13366 13367 13368 13369 13370 13371 13372 13373 13374 13375 13376 13377 13378 13379 13380 13381 13382 13383 13384 13385 13386 13387 13388 13389 13390 13391 13392 13393 13394 13395 13396 13397 13398 13399 13400 13401 13402 13403 13404 13405 13406 13407 13408 13409 13410 13411 13412 13413 13414 13415 13416 13417 13418 13419 13420 13421 13422 13423 13424 13425 13426 13427 13428 13429 13430 13431 13432 13433 13434 13435 13436 13437 13438 13439 13440 13441 13442 13443 13444 13445 13446 13447 13448 13449 13450 13451 13452 13453 13454 13455 13456 13457 13458 13459 13460 13461 13462 13463 13464 13465 13466 13467 13468 13469 13470 13471 13472 13473 13474 13475 13476 13477 13478 13479 13480 13481 13482 13483 13484 13485 13486 13487 13488 13489 13490 13491 13492 13493 13494 13495 13496 13497 13498 13499 13500 13501 13502 13503 13504 13505 13506 13507 13508 13509 13510 13511 13512 13513 13514 13515 13516 13517 13518 13519 13520 13521 13522 13523 13524 13525 13526 13527 13528 13529 13530 13531 13532 13533 13534 13535 13536 13537 13538 13539 13540 13541 13542 13543 13544 13545 13546 13547 13548 13549 13550 13551 13552 13553 13554 13555 13556 13557 13558 13559 13560 13561 13562 13563 13564 13565 13566 13567 13568 13569 13570 13571 13572 13573 13574 13575 13576 13577 13578 13579 13580 13581 13582 13583 13584 13585 13586 13587 13588 13589 13590 13591 13592 13593 13594 13595 13596 13597 13598 13599 13600 13601 13602 13603 13604 13605 13606 13607 13608 13609 13610 13611 13612 13613 13614 13615 13616 13617 13618 13619 13620 13621 13622 13623 13624 13625 13626 13627 13628 13629 13630 13631 13632 13633 13634 13635 13636 13637 13638 13639 13640 13641 13642 13643 13644 13645 13646 13647 13648 13649 13650 13651 13652 13653 13654 13655 13656 13657 13658 13659 13660 13661 13662 13663 13664 13665 13666 13667 13668 13669 13670 13671 13672 13673 13674 13675 13676 13677 13678 13679 13680 13681 13682 13683 13684 13685 13686 13687 13688 13689 13690 13691 13692 13693 13694 13695 13696 13697 13698 13699 13700 13701 13702 13703 13704 13705 13706 13707 13708 13709 13710 13711 13712 13713 13714 13715 13716 13717 13718 13719 13720 13721 13722 13723 13724 13725 13726 13727 13728 13729 13730 13731 13732 13733 13734 13735 13736 13737 13738 13739 13740 13741 13742 13743 13744 13745 13746 13747 13748 13749 13750 13751 13752 13753 13754 13755 13756 13757 13758 13759 13760 13761 13762 13763 13764 13765 13766 13767 13768 13769 13770 13771 13772 13773 13774 13775 13776 13777 13778 13779 13780 13781 13782 13783 13784 13785 13786 13787 13788 13789 13790 13791 13792 13793 13794 13795 13796 13797 13798 13799 13800 13801 13802 13803 13804 13805 13806 13807 13808 13809 13810 13811 13812 13813 13814 13815 13816 13817 13818 13819 13820 13821 13822 13823 13824 13825 13826 13827 13828 13829 13830 13831 13832 13833 13834 13835 13836 13837 13838 13839 13840 13841 13842 13843 13844 13845 13846 13847 13848 13849 13850 13851 13852 13853 13854 13855 13856 13857 13858 13859 13860 13861 13862 13863 13864 13865 13866 13867 13868 13869 13870 13871 13872 13873 13874 13875 13876 13877 13878 13879 13880 13881 13882 13883 13884 13885 13886 13887 13888 13889 13890 13891 13892 13893 13894 13895 13896 13897 13898 13899 13900 13901 13902 13903 13904 13905 13906 13907 13908 13909 13910 13911 13912 13913 13914 13915 13916 13917 13918 13919 13920 13921 13922 13923 13924 13925 13926 13927 13928 13929 13930 13931 13932 13933 13934 13935 13936 13937 13938 13939 13940 13941 13942 13943 13944 13945 13946 13947 13948 13949 13950 13951 13952 13953 13954 13955 13956 13957 13958 13959 13960 13961 13962 13963 13964 13965 13966 13967 13968 13969 13970 13971 13972 13973 13974 13975 13976 13977 13978 13979 13980 13981 13982 13983 13984 13985 13986 13987 13988 13989 13990 13991 13992 13993 13994 13995 13996 13997 13998 13999 14000 14001 14002 14003 14004 14005 14006 14007 14008 14009 14010 14011 14012 14013 14014 14015 14016 14017 14018 14019 14020 14021 14022 14023 14024 14025 14026 14027 14028 14029 14030 14031 14032 14033 14034 14035 14036 14037 14038 14039 14040 14041 14042 14043 14044 14045 14046 14047 14048 14049 14050 14051 14052 14053 14054 14055 14056 14057 14058 14059 14060 14061 14062 14063 14064 14065 14066 14067 14068 14069 14070 14071 14072 14073 14074 14075 14076 14077 14078 14079 14080 14081 14082 14083 14084 14085 14086 14087 14088 14089 14090 14091 14092 14093 14094 14095 14096 14097 14098 14099 14100 14101 14102 14103 14104 14105 14106 14107 14108 14109 14110 14111 14112 14113 14114 14115 14116 14117 14118 14119 14120 14121 14122 14123 14124 14125 14126 14127 14128 14129 14130 14131 14132 14133 14134 14135 14136 14137 14138 14139 14140 14141 14142 14143 14144 14145 14146 14147 14148 14149 14150 14151 14152 14153 14154 14155 14156 14157 14158 14159 14160 14161 14162 14163 14164 14165 14166 14167 14168 14169 14170 14171 14172 14173 14174 14175 14176 14177 14178 14179 14180 14181 14182 14183 14184 14185 14186 14187 14188 14189 14190 14191 14192 14193 14194 14195 14196 14197 14198 14199 14200 14201 14202 14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 14229 14230 14231 14232 14233 14234 14235 14236 14237 14238 14239 14240 14241 14242 14243 14244 14245 14246 14247 14248 14249 14250 14251 14252 14253 14254 14255 14256 14257 14258 14259 14260 14261 14262 14263 14264 14265 14266 14267 14268 14269 14270 14271 14272 14273 14274 14275 14276 14277 14278 14279 14280 14281 14282 14283 14284 14285 14286 14287 14288 14289 14290 14291 14292 14293 14294 14295 14296 14297 14298 14299 14300 14301 14302 14303 14304 14305 14306 14307 14308 14309 14310 14311 14312 14313 14314 14315 14316 14317 14318 14319 14320 14321 14322 14323 14324 14325 14326 14327 14328 14329 14330 14331 14332 14333 14334 14335 14336 14337 14338 14339 14340 14341 14342 14343 14344 14345 14346 14347 14348 14349 14350 14351 14352 14353 14354 14355 14356 14357 14358 14359 14360 14361 14362 14363 14364 14365 14366 14367 14368 14369 14370 14371 14372 14373 14374 14375 14376 14377 14378 14379 14380 14381 14382 14383 14384 14385 14386 14387 14388 14389 14390 14391 14392 14393 14394 14395 14396 14397 14398 14399 14400 14401 14402 14403 14404 14405 14406 14407 14408 14409 14410 14411 14412 14413 14414 14415 14416 14417 14418 14419 14420 14421 14422 14423 14424 14425 14426 14427 14428 14429 14430 14431 14432 14433 14434 14435 14436 14437 14438 14439 14440 14441 14442 14443 14444 14445 14446 14447 14448 14449 14450 14451 14452 14453 14454 14455 14456 14457 14458 14459 14460 14461 14462 14463 14464 14465 14466 14467 14468 14469 14470 14471 14472 14473 14474 14475 14476 14477 14478 14479 14480 14481 14482 14483 14484 14485 14486 14487 14488 14489 14490 14491 14492 14493 14494 14495 14496 14497 14498 14499 14500 14501 14502 14503 14504 14505 14506 14507 14508 14509 14510 14511 14512 14513 14514 14515 14516 14517 14518 14519 14520 14521 14522 14523 14524 14525 14526 14527 14528 14529 14530 14531 14532 14533 14534 14535 14536 14537 14538 14539 14540 14541 14542 14543 14544 14545 14546 14547 14548 14549 14550 14551 14552 14553 14554 14555 14556 14557 14558 14559 14560 14561 14562 14563 14564 14565 14566 14567 14568 14569 14570 14571 14572 14573 14574 14575 14576 14577 14578 14579 14580 14581 14582 14583 14584 14585 14586 14587 14588 14589 14590 14591 14592 14593 14594 14595 14596 14597 14598 14599 14600 14601 14602 14603 14604 14605 14606 14607 14608 14609 14610 14611 14612 14613 14614 14615 14616 14617 14618 14619 14620 14621 14622 14623 14624 14625 14626 14627 14628 14629 14630 14631 14632 14633 14634 14635 14636 14637 14638 14639 14640 14641 14642 14643 14644 14645 14646 14647 14648 14649 14650 14651 14652 14653 14654 14655 14656 14657 14658 14659 14660 14661 14662 14663 14664 14665 14666 14667 14668 14669 14670 14671 14672 14673 14674 14675 14676 14677 14678 14679 14680 14681 14682 14683 14684 14685 14686 14687 14688 14689 14690 14691 14692 14693 14694 14695 14696 14697 14698 14699 14700 14701 14702 14703 14704 14705 14706 14707 14708 14709 14710 14711 14712 14713 14714 14715 14716 14717 14718 14719 14720 14721 14722 14723 14724 14725 14726 14727 14728 14729 14730 14731 14732 14733 14734 14735 14736 14737 14738 14739 14740 14741 14742 14743 14744 14745 14746 14747 14748 14749 14750 14751 14752 14753 14754 14755 14756 14757 14758 14759 14760 14761 14762 14763 14764 14765 14766 14767 14768 14769 14770 14771 14772 14773 14774 14775 14776 14777 14778 14779 14780 14781 14782 14783 14784 14785 14786 14787 14788 14789 14790 14791 14792 14793 14794 14795 14796 14797 14798 14799 14800 14801 14802 14803 14804 14805 14806 14807 14808 14809 14810 14811 14812 14813 14814 14815 14816 14817 14818 14819 14820 14821 14822 14823 14824 14825 14826 14827 14828 14829 14830 14831 14832 14833 14834 14835 14836 14837 14838 14839 14840 14841 14842 14843 14844 14845 14846 14847 14848 14849 14850 14851 14852 14853 14854 14855 14856 14857 14858 14859 14860 14861 14862 14863 14864 14865 14866 14867 14868 14869 14870 14871 14872 14873 14874 14875 14876 14877 14878 14879 14880 14881 14882 14883 14884 14885 14886 14887 14888 14889 14890 14891 14892 14893 14894 14895 14896 14897 14898 14899 14900 14901 14902 14903 14904 14905 14906 14907 14908 14909 14910 14911 14912 14913 14914 14915 14916 14917 14918 14919 14920 14921 14922 14923 14924 14925 14926 14927 14928 14929 14930 14931 14932 14933 14934 14935 14936 14937 14938 14939 14940 14941 14942 14943 14944 14945 14946 14947 14948 14949 14950 14951 14952 14953 14954 14955 14956 14957 14958 14959 14960 14961 14962 14963 14964 14965 14966 14967 14968 14969 14970 14971 14972 14973 14974 14975 14976 14977 14978 14979 14980 14981 14982 14983 14984 14985 14986 14987 14988 14989 14990 14991 14992 14993 14994 14995 14996 14997 14998 14999 15000 15001 15002 15003 15004 15005 15006 15007 15008 15009 15010 15011 15012 15013 15014 15015 15016 15017 15018 15019 15020 15021 15022 15023 15024 15025 15026 15027 15028 15029 15030 15031 15032 15033 15034 15035 15036 15037 15038 15039 15040 15041 15042 15043 15044 15045 15046 15047 15048 15049 15050 15051 15052 15053 15054 15055 15056 15057 15058 15059 15060 15061 15062 15063 15064 15065 15066 15067 15068 15069 15070 15071 15072 15073 15074 15075 15076 15077 15078 15079 15080 15081 15082 15083 15084 15085 15086 15087 15088 15089 15090 15091 15092 15093 15094 15095 15096 15097 15098 15099 15100 15101 15102 15103 15104 15105 15106 15107 15108 15109 15110 15111 15112 15113 15114 15115 15116 15117 15118 15119 15120 15121 15122 15123 15124 15125 15126 15127 15128 15129 15130 15131 15132 15133 15134 15135 15136 15137 15138 15139 15140 15141 15142 15143 15144 15145 15146 15147 15148 15149 15150 15151 15152 15153 15154 15155 15156 15157 15158 15159 15160 15161 15162 15163 15164 15165 15166 15167 15168 15169 15170 15171 15172 15173 15174 15175 15176 15177 15178 15179 15180 15181 15182 15183 15184 15185 15186 15187 15188 15189 15190 15191 15192 15193 15194 15195 15196 15197 15198 15199 15200 15201 15202 15203 15204 15205 15206 15207 15208 15209 15210 15211 15212 15213 15214 15215 15216 15217 15218 15219 15220 15221 15222 15223 15224 15225 15226 15227 15228 15229 15230 15231 15232 15233 15234 15235 15236 15237 15238 15239 15240 15241 15242 15243 15244 15245 15246 15247 15248 15249 15250 15251 15252 15253 15254 15255 15256 15257 15258 15259 15260 15261 15262 15263 15264 15265 15266 15267 15268 15269 15270 15271 15272 15273 15274 15275 15276 15277 15278 15279 15280 15281 15282 15283 15284 15285 15286 15287 15288 15289 15290 15291 15292 15293 15294 15295 15296 15297 15298 15299 15300 15301 15302 15303 15304 15305 15306 15307 15308 15309 15310 15311 15312 15313 15314 15315 15316 15317 15318 15319 15320 15321 15322 15323 15324 15325 15326 15327 15328 15329 15330 15331 15332 15333 15334 15335 15336 15337 15338 15339 15340 15341 15342 15343 15344 15345 15346 15347 15348 15349 15350 15351 15352 15353 15354 15355 15356 15357 15358 15359 15360 15361 15362 15363 15364 15365 15366 15367 15368 15369 15370 15371 15372 15373 15374 15375 15376 15377 15378 15379 15380 15381 15382 15383 15384 15385 15386 15387 15388 15389 15390 15391 15392 15393 15394 15395 15396 15397 15398 15399 15400 15401 15402 15403 15404 15405 15406 15407 15408 15409 15410 15411 15412 15413 15414 15415 15416 15417 15418 15419 15420 15421 15422 15423 15424 15425 15426 15427 15428 15429 15430 15431 15432 15433 15434 15435 15436 15437 15438 15439 15440 15441 15442 15443 15444 15445 15446 15447 15448 15449 15450 15451 15452 15453 15454 15455 15456 15457 15458 15459 15460 15461 15462 15463 15464 15465 15466 15467 15468 15469 15470 15471 15472 15473 15474 15475 15476 15477 15478 15479 15480 15481 15482 15483 15484 15485 15486 15487 15488 15489 15490 15491 15492 15493 15494 15495 15496 15497 15498 15499 15500 15501 15502 15503 15504 15505 15506 15507 15508 15509 15510 15511 15512 15513 15514 15515 15516 15517 15518 15519 15520 15521 15522 15523 15524 15525 15526 15527 15528 15529 15530 15531 15532 15533 15534 15535 15536 15537 15538 15539 15540 15541 15542 15543 15544 15545 15546 15547 15548 15549 15550 15551 15552 15553 15554 15555 15556 15557 15558 15559 15560 15561 15562 15563 15564 15565 15566 15567 15568 15569 15570 15571 15572 15573 15574 15575 15576 15577 15578 15579 15580 15581 15582 15583 15584 15585 15586 15587 15588 15589 15590 15591 15592 15593 15594 15595 15596 15597 15598 15599 15600 15601 15602 15603 15604 15605 15606 15607 15608 15609 15610 15611 15612 15613 15614 15615 15616 15617 15618 15619 15620 15621 15622 15623 15624 15625 15626 15627 15628 15629 15630 15631 15632 15633 15634 15635 15636 15637 15638 15639 15640 15641 15642 15643 15644 15645 15646 15647 15648 15649 15650 15651 15652 15653 15654 15655 15656 15657 15658 15659 15660 15661 15662 15663 15664 15665 15666 15667 15668 15669 15670 15671 15672 15673 15674 15675 15676 15677 15678 15679 15680 15681 15682 15683 15684 15685 15686 15687 15688 15689 15690 15691 15692 15693 15694 15695 15696 15697 15698 15699 15700 15701 15702 15703 15704 15705 15706 15707 15708 15709 15710 15711 15712 15713 15714 15715 15716 15717 15718 15719 15720 15721 15722 15723 15724 15725 15726 15727 15728 15729 15730 15731 15732 15733 15734 15735 15736 15737 15738 15739 15740 15741 15742 15743 15744 15745 15746 15747 15748 15749 15750 15751 15752 15753 15754 15755 15756 15757 15758 15759 15760 15761 15762 15763 15764 15765 15766 15767 15768 15769 15770 15771 15772 15773 15774 15775 15776 15777 15778 15779 15780 15781 15782 15783 15784 15785 15786 15787 15788 15789 15790 15791 15792 15793 15794 15795 15796 15797 15798 15799 15800 15801 15802 15803 15804 15805 15806 15807 15808 15809 15810 15811 15812 15813 15814 15815 15816 15817 15818 15819 15820 15821 15822 15823 15824 15825 15826 15827 15828 15829 15830 15831 15832 15833 15834 15835 15836 15837 15838 15839 15840 15841 15842 15843 15844 15845 15846 15847 15848 15849 15850 15851 15852 15853 15854 15855 15856 15857 15858 15859 15860 15861 15862 15863 15864 15865 15866 15867 15868 15869 15870 15871 15872 15873 15874 15875 15876 15877 15878 15879 15880 15881 15882 15883 15884 15885 15886 15887 15888 15889 15890 15891 15892 15893 15894 15895 15896 15897 15898 15899 15900 15901 15902 15903 15904 15905 15906 15907 15908 15909 15910 15911 15912 15913 15914 15915 15916 15917 15918 15919 15920 15921 15922 15923 15924 15925 15926 15927 15928 15929 15930 15931 15932 15933 15934 15935 15936 15937 15938 15939 15940 15941 15942 15943 15944 15945 15946 15947 15948 15949 15950 15951 15952 15953 15954 15955 15956 15957 15958 15959 15960 15961 15962 15963 15964 15965 15966 15967 15968 15969 15970 15971 15972 15973 15974 15975 15976 15977 15978 15979 15980 15981 15982 15983 15984 15985 15986 15987 15988 15989 15990 15991 15992 15993 15994 15995 15996 15997 15998 15999 16000 16001 16002 16003 16004 16005 16006 16007 16008 16009 16010 16011 16012 16013 16014 16015 16016 16017 16018 16019 16020 16021 16022 16023 16024 16025 16026 16027 16028 16029 16030 16031 16032 16033 16034 16035 16036 16037 16038 16039 16040 16041 16042 16043 16044 16045 16046 16047 16048 16049 16050 16051 16052 16053 16054 16055 16056 16057 16058 16059 16060 16061 16062 16063 16064 16065 16066 16067 16068 16069 16070 16071 16072 16073 16074 16075 16076 16077 16078 16079 16080 16081 16082 16083 16084 16085 16086 16087 16088 16089 16090 16091 16092 16093 16094 16095 16096 16097 16098 16099 16100 16101 16102 16103 16104 16105 16106 16107 16108 16109 16110 16111 16112 16113 16114 16115 16116 16117 16118 16119 16120 16121 16122 16123 16124 16125 16126 16127 16128 16129 16130 16131 16132 16133 16134 16135 16136 16137 16138 16139 16140 16141 16142 16143 16144 16145 16146 16147 16148 16149 16150 16151 16152 16153 16154 16155 16156 16157 16158 16159 16160 16161 16162 16163 16164 16165 16166 16167 16168 16169 16170 16171 16172 16173 16174 16175 16176 16177 16178 16179 16180 16181 16182 16183 16184 16185 16186 16187 16188 16189 16190 16191 16192 16193 16194 16195 16196 16197 16198 16199 16200 16201 16202 16203 16204 16205 16206 16207 16208 16209 16210 16211 16212 16213 16214 16215 16216 16217 16218 16219 16220 16221 16222 16223 16224 16225 16226 16227 16228 16229 16230 16231 16232 16233 16234 16235 16236 16237 16238 16239 16240 16241 16242 16243 16244 16245 16246 16247 16248 16249 16250 16251 16252 16253 16254 16255 16256 16257 16258 16259 16260 16261 16262 16263 16264 16265 16266 16267 16268 16269 16270 16271 16272 16273 16274 16275 16276 16277 16278 16279 16280 16281 16282 16283 16284 16285 16286 16287 16288 16289 16290 16291 16292 16293 16294 16295 16296 16297 16298 16299 16300 16301 16302 16303 16304 16305 16306 16307 16308 16309 16310 16311 16312 16313 16314 16315 16316 16317 16318 16319 16320 16321 16322 16323 16324 16325 16326 16327 16328 16329 16330 16331 16332 16333 16334 16335 16336 16337 16338 16339 16340 16341 16342 16343 16344 16345 16346 16347 16348 16349 16350 16351 16352 16353 16354 16355 16356 16357 16358 16359 16360 16361 16362 16363 16364 16365 16366 16367 16368 16369 16370 16371 16372 16373 16374 16375 16376 16377 16378 16379 16380 16381 16382 16383 16384 16385 16386 16387 16388 16389 16390 16391 16392 16393 16394 16395 16396 16397 16398 16399 16400 16401 16402 16403 16404 16405 16406 16407 16408 16409 16410 16411 16412 16413 16414 16415 16416 16417 16418 16419 16420 16421 16422 16423 16424 16425 16426 16427 16428 16429 16430 16431 16432 16433 16434 16435 16436 16437 16438 16439 16440 16441 16442 16443 16444 16445 16446 16447 16448 16449 16450 16451 16452 16453 16454 16455 16456 16457 16458 16459 16460 16461 16462 16463 16464 16465 16466 16467 16468 16469 16470 16471 16472 16473 16474 16475 16476 16477 16478 16479 16480 16481 16482 16483 16484 16485 16486 16487 16488 16489 16490 16491 16492 16493 16494 16495 16496 16497 16498 16499 16500 16501 16502 16503 16504 16505 16506 16507 16508 16509 16510 16511 16512 16513 16514 16515 16516 16517 16518 16519 16520 16521 16522 16523 16524 16525 16526 16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 16558 16559 16560 16561 16562 16563 16564 16565 16566 16567 16568 16569 16570 16571 16572 16573 16574 16575 16576 16577 16578 16579 16580 16581 16582 16583 16584 16585 16586 16587 16588 16589 16590 16591 16592 16593 16594 16595 16596 16597 16598 16599 16600 16601 16602 16603 16604 16605 16606 16607 16608 16609 16610 16611 16612 16613 16614 16615 16616 16617 16618 16619 16620 16621 16622 16623 16624 16625 16626 16627 16628 16629 16630 16631 16632 16633 16634 16635 16636 16637 16638 16639 16640 16641 16642 16643 16644 16645 16646 16647 16648 16649 16650 16651 16652 16653 16654 16655 16656 16657 16658 16659 16660 16661 16662 16663 16664 16665 16666 16667 16668 16669 16670 16671 16672 16673 16674 16675 16676 16677 16678 16679 16680 16681 16682 16683 16684 16685 16686 16687 16688 16689 16690 16691 16692 16693 16694 16695 16696 16697 16698 16699 16700 16701 16702 16703 16704 16705 16706 16707 16708 16709 16710 16711 16712 16713 16714 16715 16716 16717 16718 16719 16720 16721 16722 16723 16724 16725 16726 16727 16728 16729 16730 16731 16732 16733 16734 16735 16736 16737 16738 16739 16740 16741 16742 16743 16744 16745 16746 16747 16748 16749 16750 16751 16752 16753 16754 16755 16756 16757 16758 16759 16760 16761 16762 16763 16764 16765 16766 16767 16768 16769 16770 16771 16772 16773 16774 16775 16776 16777 16778 16779 16780 16781 16782 16783 16784 16785 16786 16787 16788 16789 16790 16791 16792 16793 16794 16795 16796 16797 16798 16799 16800 16801 16802 16803 16804 16805 16806 16807 16808 16809 16810 16811 16812 16813 16814 16815 16816 16817 16818 16819 16820 16821 16822 16823 16824 16825 16826 16827 16828 16829 16830 16831 16832 16833 16834 16835 16836 16837 16838 16839 16840 16841 16842 16843 16844 16845 16846 16847 16848 16849 16850 16851 16852 16853 16854 16855 16856 16857 16858 16859 16860 16861 16862 16863 16864 16865 16866 16867 16868 16869 16870 16871 16872 16873 16874 16875 16876 16877 16878 16879 16880 16881 16882 16883 16884 16885 16886 16887 16888 16889 16890 16891 16892 16893 16894 16895 16896 16897 16898 16899 16900 16901 16902 16903 16904 16905 16906 16907 16908 16909 16910 16911 16912 16913 16914 16915 16916 16917 16918 16919 16920 16921 16922 16923 16924 16925 16926 16927 16928 16929 16930 16931 16932 16933 16934 16935 16936 16937 16938 16939 16940 16941 16942 16943 16944 16945 16946 16947 16948 16949 16950 16951 16952 16953 16954 16955 16956 16957 16958 16959 16960 16961 16962 16963 16964 16965 16966 16967 16968 16969 16970 16971 16972 16973 16974 16975 16976 16977 16978 16979 16980 16981 16982 16983 16984 16985 16986 16987 16988 16989 16990 16991 16992 16993 16994 16995 16996 16997 16998 16999 17000 17001 17002 17003 17004 17005 17006 17007 17008 17009 17010 17011 17012 17013 17014 17015 17016 17017 17018 17019 17020 17021 17022 17023 17024 17025 17026 17027 17028 17029 17030 17031 17032 17033 17034 17035 17036 17037 17038 17039 17040 17041 17042 17043 17044 17045 17046 17047 17048 17049 17050 17051 17052 17053 17054 17055 17056 17057 17058 17059 17060 17061 17062 17063 17064 17065 17066 17067 17068 17069 17070 17071 17072 17073 17074 17075 17076 17077 17078 17079 17080 17081 17082 17083 17084 17085 17086 17087 17088 17089 17090 17091 17092 17093 17094 17095 17096 17097 17098 17099 17100 17101 17102 17103 17104 17105 17106 17107 17108 17109 17110 17111 17112 17113 17114 17115 17116 17117 17118 17119 17120 17121 17122 17123 17124 17125 17126 17127 17128 17129 17130 17131 17132 17133 17134 17135 17136 17137 17138 17139 17140 17141 17142 17143 17144 17145 17146 17147 17148 17149 17150 17151 17152 17153 17154 17155 17156 17157 17158 17159 17160 17161 17162 17163 17164 17165 17166 17167 17168 17169 17170 17171 17172 17173 17174 17175 17176 17177 17178 17179 17180 17181 17182 17183 17184 17185 17186 17187 17188 17189 17190 17191 17192 17193 17194 17195 17196 17197 17198 17199 17200 17201 17202 17203 17204 17205 17206 17207 17208 17209 17210 17211 17212 17213 17214 17215 17216 17217 17218 17219 17220 17221 17222 17223 17224 17225 17226 17227 17228 17229 17230 17231 17232 17233 17234 17235 17236 17237 17238 17239 17240 17241 17242 17243 17244 17245 17246 17247 17248 17249 17250 17251 17252 17253 17254 17255 17256 17257 17258 17259 17260 17261 17262 17263 17264 17265 17266 17267 17268 17269 17270 17271 17272 17273 17274 17275 17276 17277 17278 17279 17280 17281 17282 17283 17284 17285 17286 17287 17288 17289 17290 17291 17292 17293 17294 17295 17296 17297 17298 17299 17300 17301 17302 17303 17304 17305 17306 17307 17308 17309 17310 17311 17312 17313 17314 17315 17316 17317 17318 17319 17320 17321 17322 17323 17324 17325 17326 17327 17328 17329 17330 17331 17332 17333 17334 17335 17336 17337 17338 17339 17340 17341 17342 17343 17344 17345 17346 17347 17348 17349 17350 17351 17352 17353 17354 17355 17356 17357 17358 17359 17360 17361 17362 17363 17364 17365 17366 17367 17368 17369 17370 17371 17372 17373 17374 17375 17376 17377 17378 17379 17380 17381 17382 17383 17384 17385 17386 17387 17388 17389 17390 17391 17392 17393 17394 17395 17396 17397 17398 17399 17400 17401 17402 17403 17404 17405 17406 17407 17408 17409 17410 17411 17412 17413 17414 17415 17416 17417 17418 17419 17420 17421 17422 17423 17424 17425 17426 17427 17428 17429 17430 17431 17432 17433 17434 17435 17436 17437 17438 17439 17440 17441 17442 17443 17444 17445 17446 17447 17448 17449 17450 17451 17452 17453 17454 17455 17456 17457 17458 17459 17460 17461 17462 17463 17464 17465 17466 17467 17468 17469 17470 17471 17472 17473 17474 17475 17476 17477 17478 17479 17480 17481 17482 17483 17484 17485 17486 17487 17488 17489 17490 17491 17492 17493 17494 17495 17496 17497 17498 17499 17500 17501 17502 17503 17504 17505 17506 17507 17508 17509 17510 17511 17512 17513 17514 17515 17516 17517 17518 17519 17520 17521 17522 17523 17524 17525 17526 17527 17528 17529 17530 17531 17532 17533 17534 17535 17536 17537 17538 17539 17540 17541 17542 17543 17544 17545 17546 17547 17548 17549 17550 17551 17552 17553 17554 17555 17556 17557 17558 17559 17560 17561 17562 17563 17564 17565 17566 17567 17568 17569 17570 17571 17572 17573 17574 17575 17576 17577 17578 17579 17580 17581 17582 17583 17584 17585 17586 17587 17588 17589 17590 17591 17592 17593 17594 17595 17596 17597 17598 17599 17600 17601 17602 17603 17604 17605 17606 17607 17608 17609 17610 17611 17612 17613 17614 17615 17616 17617 17618 17619 17620 17621 17622 17623 17624 17625 17626 17627 17628 17629 17630 17631 17632 17633 17634 17635 17636 17637 17638 17639 17640 17641 17642 17643 17644 17645 17646 17647 17648 17649 17650 17651 17652 17653 17654 17655 17656 17657 17658 17659 17660 17661 17662 17663 17664 17665 17666 17667 17668 17669 17670 17671 17672 17673 17674 17675 17676 17677 17678 17679 17680 17681 17682 17683 17684 17685 17686 17687 17688 17689 17690 17691 17692 17693 17694 17695 17696 17697 17698 17699 17700 17701 17702 17703 17704 17705 17706 17707 17708 17709 17710 17711 17712 17713 17714 17715 17716 17717 17718 17719 17720 17721 17722 17723 17724 17725 17726 17727 17728 17729 17730 17731 17732 17733 17734 17735 17736 17737 17738 17739 17740 17741 17742 17743 17744 17745 17746 17747 17748 17749 17750 17751 17752 17753 17754 17755 17756 17757 17758 17759 17760 17761 17762 17763 17764 17765 17766 17767 17768 17769 17770 17771 17772 17773 17774 17775 17776 17777 17778 17779 17780 17781 17782 17783 17784 17785 17786 17787 17788 17789 17790 17791 17792 17793 17794 17795 17796 17797 17798 17799 17800 17801 17802 17803 17804 17805 17806 17807 17808 17809 17810 17811 17812 17813 17814 17815 17816 17817 17818 17819 17820 17821 17822 17823 17824 17825 17826 17827 17828 17829 17830 17831 17832 17833 17834 17835 17836 17837 17838 17839 17840 17841 17842 17843 17844 17845 17846 17847 17848 17849 17850 17851 17852 17853 17854 17855 17856 17857 17858 17859 17860 17861 17862 17863 17864 17865 17866 17867 17868 17869 17870 17871 17872 17873 17874 17875 17876 17877 17878 17879 17880 17881 17882 17883 17884 17885 17886 17887 17888 17889 17890 17891 17892 17893 17894 17895 17896 17897 17898 17899 17900 17901 17902 17903 17904 17905 17906 17907 17908 17909 17910 17911 17912 17913 17914 17915 17916 17917 17918 17919 17920 17921 17922 17923 17924 17925 17926 17927 17928 17929 17930 17931 17932 17933 17934 17935 17936 17937 17938 17939 17940 17941 17942 17943 17944 17945 17946 17947 17948 17949 17950 17951 17952 17953 17954 17955 17956 17957 17958 17959 17960 17961 17962 17963 17964 17965 17966 17967 17968 17969 17970 17971 17972 17973 17974 17975 17976 17977 17978 17979 17980 17981 17982 17983 17984 17985 17986 17987 17988 17989 17990 17991 17992 17993 17994 17995 17996 17997 17998 17999 18000 18001 18002 18003 18004 18005 18006 18007 18008 18009 18010 18011 18012 18013 18014 18015 18016 18017 18018 18019 18020 18021 18022 18023 18024 18025 18026 18027 18028 18029 18030 18031 18032 18033 18034 18035 18036 18037 18038 18039 18040 18041 18042 18043 18044 18045 18046 18047 18048 18049 18050 18051 18052 18053 18054 18055 18056 18057 18058 18059 18060 18061 18062 18063 18064 18065 18066 18067 18068 18069 18070 18071 18072 18073 18074 18075 18076 18077 18078 18079 18080 18081 18082 18083 18084 18085 18086 18087 18088 18089 18090 18091 18092 18093 18094 18095 18096 18097 18098 18099 18100 18101 18102 18103 18104 18105 18106 18107 18108 18109 18110 18111 18112 18113 18114 18115 18116 18117 18118 18119 18120 18121 18122 18123 18124 18125 18126 18127 18128 18129 18130 18131 18132 18133 18134 18135 18136 18137 18138 18139 18140 18141 18142 18143 18144 18145 18146 18147 18148 18149 18150 18151 18152 18153 18154 18155 18156 18157 18158 18159 18160 18161 18162 18163 18164 18165 18166 18167 18168 18169 18170 18171 18172 18173 18174 18175 18176 18177 18178 18179 18180 18181 18182 18183 18184 18185 18186 18187 18188 18189 18190 18191 18192 18193 18194 18195 18196 18197 18198 18199 18200 18201 18202 18203 18204 18205 18206 18207 18208 18209 18210 18211 18212 18213 18214 18215 18216 18217 18218 18219 18220 18221 18222 18223 18224 18225 18226 18227 18228 18229 18230 18231 18232 18233 18234 18235 18236 18237 18238 18239 18240 18241 18242 18243 18244 18245 18246 18247 18248 18249 18250 18251 18252 18253 18254 18255 18256 18257 18258 18259 18260 18261 18262 18263 18264 18265 18266 18267 18268 18269 18270 18271 18272 18273 18274 18275 18276 18277 18278 18279 18280 18281 18282 18283 18284 18285 18286 18287 18288 18289 18290 18291 18292 18293 18294 18295 18296 18297 18298 18299 18300 18301 18302 18303 18304 18305 18306 18307 18308 18309 18310 18311 18312 18313 18314 18315 18316 18317 18318 18319 18320 18321 18322 18323 18324 18325 18326 18327 18328 18329 18330 18331 18332 18333 18334 18335 18336 18337 18338 18339 18340 18341 18342 18343 18344 18345 18346 18347 18348 18349 18350 18351 18352 18353 18354 18355 18356 18357 18358 18359 18360 18361 18362 18363 18364 18365 18366 18367 18368 18369 18370 18371 18372 18373 18374 18375 18376 18377 18378 18379 18380 18381 18382 18383 18384 18385 18386 18387 18388 18389 18390 18391 18392 18393 18394 18395 18396 18397 18398 18399 18400 18401 18402 18403 18404 18405 18406 18407 18408 18409 18410 18411 18412 18413 18414 18415 18416 18417 18418 18419 18420 18421 18422 18423 18424 18425 18426 18427 18428 18429 18430 18431 18432 18433 18434 18435 18436 18437 18438 18439 18440 18441 18442 18443 18444 18445 18446 18447 18448 18449 18450 18451 18452 18453 18454 18455 18456 18457 18458 18459 18460 18461 18462 18463 18464 18465 18466 18467 18468 18469 18470 18471 18472 18473 18474 18475 18476 18477 18478 18479 18480 18481 18482 18483 18484 18485 18486 18487 18488 18489 18490 18491 18492 18493 18494 18495 18496 18497 18498 18499 18500 18501 18502 18503 18504 18505 18506 18507 18508 18509 18510 18511 18512 18513 18514 18515 18516 18517 18518 18519 18520 18521 18522 18523 18524 18525 18526 18527 18528 18529 18530 18531 18532 18533 18534 18535 18536 18537 18538 18539 18540 18541 18542 18543 18544 18545 18546 18547 18548 18549 18550 18551 18552 18553 18554 18555 18556 18557 18558 18559 18560 18561 18562 18563 18564 18565 18566 18567 18568 18569 18570 18571 18572 18573 18574 18575 18576 18577 18578 18579 18580 18581 18582 18583 18584 18585 18586 18587 18588 18589 18590 18591 18592 18593 18594 18595 18596 18597 18598 18599 18600 18601 18602 18603 18604 18605 18606 18607 18608 18609 18610 18611 18612 18613 18614 18615 18616 18617 18618 18619 18620 18621 18622 18623 18624 18625 18626 18627 18628 18629 18630 18631 18632 18633 18634 18635 18636 18637 18638 18639 18640 18641 18642 18643 18644 18645 18646 18647 18648 18649 18650 18651 18652 18653 18654 18655 18656 18657 18658 18659 18660 18661 18662 18663 18664 18665 18666 18667 18668 18669 18670 18671 18672 18673 18674 18675 18676 18677 18678 18679 18680 18681 18682 18683 18684 18685 18686 18687 18688 18689 18690 18691 18692 18693 18694 18695 18696 18697 18698 18699 18700 18701 18702 18703 18704 18705 18706 18707 18708 18709 18710 18711 18712 18713 18714 18715 18716 18717 18718 18719 18720 18721 18722 18723 18724 18725 18726 18727 18728 18729 18730 18731 18732 18733 18734 18735 18736 18737 18738 18739 18740 18741 18742 18743 18744 18745 18746 18747 18748 18749 18750 18751 18752 18753 18754 18755 18756 18757 18758 18759 18760 18761 18762 18763 18764 18765 18766 18767 18768 18769 18770 18771 18772 18773 18774 18775 18776 18777 18778 18779 18780 18781 18782 18783 18784 18785 18786 18787 18788 18789 18790 18791 18792 18793 18794 18795 18796 18797 18798 18799 18800 18801 18802 18803 18804 18805 18806 18807 18808 18809 18810 18811 18812 18813 18814 18815 18816 18817 18818 18819 18820 18821 18822 18823 18824 18825 18826 18827 18828 18829 18830 18831 18832 18833 18834 18835 18836 18837 18838 18839 18840 18841 18842 18843 18844 18845 18846 18847 18848 18849 18850 18851 18852 18853 18854 18855 18856 18857 18858 18859 18860 18861 18862 18863 18864 18865 18866 18867 18868 18869 18870 18871 18872 18873 18874 18875 18876 18877 18878 18879 18880 18881 18882 18883 18884 18885 18886 18887 18888 18889 18890 18891 18892 18893 18894 18895 18896 18897 18898 18899 18900 18901 18902 18903 18904 18905 18906 18907 18908 18909 18910 18911 18912 18913 18914 18915 18916 18917 18918 18919 18920 18921 18922 18923 18924 18925 18926 18927 18928 18929 18930 18931 18932 18933 18934 18935 18936 18937 18938 18939 18940 18941 18942 18943 18944 18945 18946 18947 18948 18949 18950 18951 18952 18953 18954 18955 18956 18957 18958 18959 18960 18961 18962 18963 18964 18965 18966 18967 18968 18969 18970 18971 18972 18973 18974 18975 18976 18977 18978 18979 18980 18981 18982 18983 18984 18985 18986 18987 18988 18989 18990 18991 18992 18993 18994 18995 18996 18997 18998 18999 19000 19001 19002 19003 19004 19005 19006 19007 19008 19009 19010 19011 19012 19013 19014 19015 19016 19017 19018 19019 19020 19021 19022 19023 19024 19025 19026 19027 19028 19029 19030 19031 19032 19033 19034 19035 19036 19037 19038 19039 19040 19041 19042 19043 19044 19045 19046 19047 19048 19049 19050 19051 19052 19053 19054 19055 19056 19057 19058 19059 19060 19061 19062 19063 19064 19065 19066 19067 19068 19069 19070 19071 19072 19073 19074 19075 19076 19077 19078 19079 19080 19081 19082 19083 19084 19085 19086 19087 19088 19089 19090 19091 19092 19093 19094 19095 19096 19097 19098 19099 19100 19101 19102 19103 19104 19105 19106 19107 19108 19109 19110 19111 19112 19113 19114 19115 19116 19117 19118 19119 19120 19121 19122 19123 19124 19125 19126 19127 19128 19129 19130 19131 19132 19133 19134 19135 19136 19137 19138 19139 19140 19141 19142 19143 19144 19145 19146 19147 19148 19149 19150 19151 19152 19153 19154 19155 19156 19157 19158 19159 19160 19161 19162 19163 19164 19165 19166 19167 19168 19169 19170 19171 19172 19173 19174 19175 19176 19177 19178 19179 19180 19181 19182 19183 19184 19185 19186 19187 19188 19189 19190 19191 19192 19193 19194 19195 19196 19197 19198 19199 19200 19201 19202 19203 19204 19205 19206 19207 19208 19209 19210 19211 19212 19213 19214 19215 19216 19217 19218 19219 19220 19221 19222 19223 19224 19225 19226 19227 19228 19229 19230 19231 19232 19233 19234 19235 19236 19237 19238 19239 19240 19241 19242 19243 19244 19245 19246 19247 19248 19249 19250 19251 19252 19253 19254 19255 19256 19257 19258 19259 19260 19261 19262 19263 19264 19265 19266 19267 19268 19269 19270 19271 19272 19273 19274 19275 19276 19277 19278 19279 19280 19281 19282 19283 19284 19285 19286 19287 19288 19289 19290 19291 19292 19293 19294 19295 19296 19297 19298 19299 19300 19301 19302 19303 19304 19305 19306 19307 19308 19309 19310 19311 19312 19313 19314 19315 19316 19317 19318 19319 19320 19321 19322 19323 19324 19325
# drakbootdisk messages in Traditional Chinese
# Copyright (C) 2000 Free Software Foundation, Inc.
# Platin <platin@cle.linux.org.tw> , 2000
# Danny Zeng <danny@zeng.com.cn>, 2000.
# Joe Man <trmetal@yahoo.com.hk>, 2001
# Kenduest Lee <kenduest@i18n.linux.org.tw> , 2002
#
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
"POT-Creation-Date: 2003-05-31 11:34+0200\n"
"PO-Revision-Date: 2002-09-24 06:00+CST\n"
"Last-Translator: Kenduest Lee <kenduest@i18n.linux.org.tw>\n"
"Language-Team: Chinese <zh@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=big5\n"
"Content-Transfer-Encoding: 8bit\n"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Scanning partitions to find mount points"
msgstr "¥¿¦b±½´y¤À³Î°Ï©ÒÄݪº±¾¤JÂI"

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

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

#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "network printer port"
msgstr "¡Aºô¸ô¦Lªí¾÷ \"%s\"¡A³s±µ°ð %s"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Please insert floppy disk:"
msgstr "½Ð´¡¤J¤@±iºÏ¤ù"

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

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
msgstr ""
"³Æ¥÷ªºµwºÐ¤À³Îªí¦³¤£¤@¼Ëªº¤j¤p\n"
"ÁÙ­nÄ~Äò ?"

#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Which username"
msgstr "¨º­Ó¨Ï¥ÎªÌ±b¸¹"

#: ../../any.pm:1
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "±z­n·s¼W­þ¤@Ãþªº¶µ¥Ø ?"

#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Restore partition table"
msgstr "¦^¦sµwºÐ¤À³Îªí"

#: ../../printer/cups.pm:1
#, c-format
msgid "On CUPS server \"%s\""
msgstr "¦ì©ó CUPS ¦øªA¾¹ \"%s\""

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Post-install configuration"
msgstr "¦w¸Ë«áªº¶i¤@¨B³]©w"

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Use ``%s'' instead"
msgstr "¥Î¡u%s¡v¥N´À"

#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#: ../../diskdrake/removable.pm:1 ../../standalone/harddrake2:1
#, c-format
msgid "Type"
msgstr "®æ¦¡"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
"\n"
"¦Lªí¾÷À³¸Ó¤w¸g³z¹L¼t°Ó©Ò´£¨Ñªº PPD Àɮפº®e³]©w¦n¤F¡C©ÎªÌ¬O\n"
"­ì¥Í©Êªº CUPS ÅX°Êµ{¦¡µLªk³Q¶i¦æÂà´«°Ê§@¡C"

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

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid ""
"The following printer\n"
"\n"
"%s%s\n"
"are directly connected to your system"
msgstr ""
"\n"
"¥Ø«e¦³¤@¥x¥¼ª¾Ãþ«¬ªº¦Lªí¾÷¦w¸Ë¦b±z¥»¾÷¤W¡C"

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

#: ../../network/network.pm:1
#, c-format
msgid "Gateway device"
msgstr "¹h¹D¸Ë¸m"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Net Method:"
msgstr "ºô¸ô¤è¦¡¡G"

#: ../../harddrake/data.pm:1
#, fuzzy, c-format
msgid "Ethernetcard"
msgstr "Etnernet ¤¶­±¥d"

#: ../../standalone/drakconnect:1
#, c-format
msgid "Parameters"
msgstr "°Ñ¼Æ"

#: ../../harddrake/v4l.pm:1
#, c-format
msgid "Auto-detect"
msgstr "¦Û°Ê°»´ú"

#: ../../standalone/drakconnect:1
#, c-format
msgid "Interface:"
msgstr "¤¶­±¡G"

#: ../../steps.pm:1
#, c-format
msgid "Select installation class"
msgstr "¿ï¾Ü¦w¸Ë¼Ò¦¡"

#: ../../standalone/drakbackup:1
#, c-format
msgid "on CDROM"
msgstr "©ó CDROM ¸Ë¸m"

#: ../../network/tools.pm:1
#, fuzzy, c-format
msgid ""
"The system doesn't seem to be connected to the Internet.\n"
"Try to reconfigure your connection."
msgstr ""
"¨t²Î¥Ø«e¬Ý°_¨Ó¦ü¥G¨Ã¨S¦³³s¤W Internet¡C\n"
"½Ð­«·s³]©w±zªº³s½u³]©w¡C"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
"\n"
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
"±N±zªº¦Lªí¾÷¦w¸Ë¦b Linux ¥D¾÷¤W¡AµM«áÅý±zªº Windows ¯à°÷³s½u¨ì Linux¥D¾÷¨Ó¨Ï"
"¥Î¥¦¡C\n"
"\n"
"±z½T©w­nÄ~Äò¶i¦æ¤U¥h¶Ü¡H"

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

#: ../../partition_table.pm:1
#, c-format
msgid "Error writing to file %s"
msgstr "¼g¤JÀÉ®× %s ®Éµo¥Í¿ù»~"

#: ../../services.pm:1
#, c-format
msgid ""
"apmd is used for monitoring battery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
msgstr ""
"´£¨ÑºÊ·þ¹q¦Àª¬ºA¡A¥H¤Î©I¥s syslog ¬ö¿ý¬ÛÃöª¬ºA¡C¦¹¥~¡A\n"
"·í¹q¦À¹q·½¤£°÷®É¡A¤]¥i¯à¦Û°Ê©I¥sÃö¾÷µ{¦¡¶i¦æÃö¾÷°Ê§@¡C"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Use tape to backup"
msgstr "¨Ï¥ÎºÏ±a¶i¦æ³Æ¥÷"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "The following packages are going to be installed"
msgstr "¤U¦Cªº®M¥ó±N·|³Q¦w¸Ë¤W"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "CUPS configuration"
msgstr "CUPS ²ÕºA"

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

#: ../../install_interactive.pm:1
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "¨S¦³¨¬°÷ªºªÅ¶¡¥i¥H«Ø¥ß·sªº¤À³Î°Ï¤F"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Moving"
msgstr "¥¿¦b²¾°Ê"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
"Drakbackup activities via %s:\n"
"\n"
msgstr ""
"\n"
"Drakbackup ¨Ï¥Î %s ¤è¦¡¶i¦æ³B²z¡G\n"
"\n"

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

#: ../../network/netconnect.pm:1
#, c-format
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
"Åwªï¨Ó¨ìºô¸ô³]©wºëÆF\n"
"\n"
"¥Ø«e¥¿·Ç³Æ¨Ó³]©w±zªººô¸ô³s½u¡C\n"
"\n"
"¦pªG±z­n¤â°Ê³]©wªº¸Ü¡A½Ð¨ú®ø¤U­±ªº¶µ¥Ø¡C\n"

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

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

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

#: ../../services.pm:1
#, c-format
msgid "Stop"
msgstr "Ãö³¬"

#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Edit selected host"
msgstr "°»´ú¨ì %s "

#: ../../standalone/drakbackup:1
#, c-format
msgid "No CD device defined!"
msgstr "©|¥¼¦³¥ô¦ó CD ¸Ë¸m©w¸q¡I"

#: ../../keyboard.pm:1
#, c-format
msgid "Bulgarian (phonetic)"
msgstr "«O¥[§Q¨È (phonetic)"

#: ../../standalone/drakpxe:1
#, fuzzy, c-format
msgid "The DHCP start ip"
msgstr "DHCP °_©l½d³ò"

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

#: ../../any.pm:1
#, c-format
msgid "Bootloader main options"
msgstr "¶}¾÷µ{¦¡¥D­n¿ï¶µ"

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

#: ../../harddrake/data.pm:1 ../../standalone/drakbackup:1
#, c-format
msgid "Tape"
msgstr "ºÏ±a"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Scanning network..."
msgstr "±½´yºô¸ô¤¤..."

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr "¨Ï¥Î¸Ó¿ï¶µ¡A±z±N¯à°÷ÁÙ­ì /etc ¥Ø¿ý¤º¥ô¦óª©¥»ªºÀɮץؿý"

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

#: ../../standalone/drakedm:1
#, fuzzy, c-format
msgid "The change is done, do you want to restart the dm service ?"
msgstr "³o­Ó %s ®M¥ó»Ý­n¦w¸Ë¤W¡A±z­n¦w¸Ë¸Ó®M¥ó¶Ü¡H"

#: ../../keyboard.pm:1
#, c-format
msgid "Swiss (French layout)"
msgstr "·ç¤h (ªk°ê¦¡°t¸m)"

#: ../../raid.pm:1
#, c-format
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "©I¥s mkraid ¥¢±Ñ (¤]³\¬O raidtools ¨S¦w¸Ë©Ò¾É­Pªº)"

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

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

#: ../../harddrake/data.pm:1
#, fuzzy, c-format
msgid "Soundcard"
msgstr "­µ®Ä¥d"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
"­n¦b²×ºÝ¾÷©R¥O¦CÀô¹Ò¦C¦LÀɮתº¸Ü¡A±z¥i¥H°õ¦æ³o­Ó«ü¥O:\n"
"\"%s <ÀÉ®×>\"¡C\n"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Level %s\n"
msgstr "RAID ¶¥¼h %s\n"

#: ../../lang.pm:1
#, c-format
msgid "Luxembourg"
msgstr "´Ë³ù"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
"                      DrakBackup Daemon Report\n"
"\n"
"\n"
msgstr ""
"\n"
"                      DrakBackup ±Æµ{³Æ¥÷³øªí²M³æ\n"
"\n"
"\n"

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

#: ../../standalone/harddrake2:1
#, c-format
msgid "Bus"
msgstr "¶×¬y±Æ"

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

#: ../../standalone/drakgw:1
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Potential LAN ¦ì§}»P¥Ø«e¦b %s §ä¨ìªº³]©w¤¬½Ä¬ð!\n"

#: ../../standalone/drakgw:1
#, c-format
msgid "Configuring..."
msgstr "³]©w¤¤..."

#: ../../standalone/drakgw:1
#, c-format
msgid "The setup has already been done, and it's currently enabled."
msgstr "³o­Ó³]©w¥ý«e¤w¸g§¹¦¨¤F¡A¥Ø«e¬O³B²z¶}±Ò¥i¥Îªºª¬ºA"

#: ../../harddrake/v4l.pm:1
#, c-format
msgid ""
"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
"detect the rights parameters.\n"
"If your card is misdetected, you can force the right tuner and card types "
"here. Just select your tv card parameters if needed."
msgstr ""
"¥Ø«e kernel ®Ö¤ß´£¨Ñªº bttv ÅX°Êµ{¦¡¯à°÷¥¿½Tªº°»´ú³B²z¥Ø«e¤j³¡¤Àªº TV ¥d¡C\n"
"­Y¬O§Aµo²{¨t²ÎµLªk¥¿½T°»´ú¥X¨Óªº¸Ü¡A±z¥i¥H¦b³oÃä¿é¤J«ü©w¥¿½Tªº¼Æ­È¡C"

#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Password (again)"
msgstr "±K½X½T»{"

#: ../../standalone/drakfont:1
#, c-format
msgid "Search installed fonts"
msgstr "´M§ä¤w¦w¸Ë¦r«¬"

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

#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
#: ../../standalone/drakconnect:1
#, c-format
msgid "IP address"
msgstr "IP ¦ì§}"

#: ../../install_interactive.pm:1
#, c-format
msgid "Choose the sizes"
msgstr "¿ï¨ú¤j¤p"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
"·´·lªº¸ê®ÆÀɮײM³æ:\n"
"\n"

#: ../../network/modem.pm:1
#, c-format
msgid ""
"Your modem isn't supported by the system.\n"
"Take a look at http://www.linmodems.org"
msgstr ""

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Choose another partition"
msgstr "¿ï¾Ü¥t¤@­Ó¤À³Î°Ï"

#: ../../standalone/drakperm:1
#, c-format
msgid "Current user"
msgstr "¨Ï¥Î¥Ø«eÀɮץؿýªº¾Ö¦³ªÌ"

#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/drakbackup:1
#, c-format
msgid "Username"
msgstr "¨Ï¥ÎªÌ±b¸¹"

#: ../../keyboard.pm:1
#, c-format
msgid "Left \"Windows\" key"
msgstr "¥ªÃä \"Windows\" «öÁä"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "dhcpd Server Configuration"
msgstr "dhcpd ªA°È¥D¾÷³]©w"

#: ../../standalone/drakperm:1
#, c-format
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
"¨Ï¥Î©ó¥Ø¿ý¡G\n"
" ¦ì©ó¸Ó¥Ø¿ý¤ºªºÀɮץؿý¡A¥u¦³¸ÓÀɮץؿýªº¾Ö¦³ªÌ¤~¥i¥H§R°£¤§"

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

#: ../../printer/main.pm:1
#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr " ¦ì©ó Novell ¥D¾÷ \"%s\"¡A¦Lªí¾÷ \"%s\""

#: ../../standalone/drakfloppy:1
#, c-format
msgid "Remove a module"
msgstr "²¾°£¼Ò²Õ"

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

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (max, inactive=-1)\n"
"\n"
"Set password aging to \\fImax\\fP days and delay to change to \\fIinactive"
"\\fP."
msgstr ""

#: ../../standalone/drakbackup:1
#, c-format
msgid "Advanced Configuration"
msgstr "¶i¶¥³]©w¼Ò¦¡"

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Scanning on your HP multi-function device"
msgstr "¡A¦h¥\¯à¸Ë¸m"

#: ../../any.pm:1
#, c-format
msgid "Root"
msgstr "/ ¤À³Î°Ï"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Choose an existing RAID to add to"
msgstr "¿ï¨ú­n¥[¤JªººÏºÐ°}¦C"

#: ../../keyboard.pm:1
#, c-format
msgid "Turkish (modern \"Q\" model)"
msgstr "¤g¦Õ¨ä (²{¥N¦¡ \"Q\" «¬)"

#: ../../standalone/drakboot:1
#, c-format
msgid "Lilo message not found"
msgstr "lilo °T®§Àɮ׿ò¥¢"

#: ../../services.pm:1
#, c-format
msgid ""
"Automatic regeneration of kernel header in /boot for\n"
"/usr/include/linux/{autoconf,version}.h"
msgstr ""
"¦Û°Ê²£¥Í kernel header ¸ê°T¬ö¿ý¡Aµ¹³o¨ÇÀɮרϥÎ:\n"
"/usr/include/linux/{autoconf,version}.h"

#: ../../standalone/drakfloppy:1
#, c-format
msgid "if needed"
msgstr "·í»Ý­n®É"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Restore Failed..."
msgstr "¦^¦s¥¢±Ñ..."

#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "/Autodetect _jazz drives"
msgstr "¦Û°Ê°»´ú"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid ""
"Description:\n"
"\n"
"  Drakbackup is used to backup your system.\n"
"  During the configuration you can select: \n"
"\t- System files, \n"
"\t- Users files, \n"
"\t- Other files.\n"
"\tor All your system ...  and Other (like Windows Partitions)\n"
"\n"
"  Drakbackup allows you to backup your system on:\n"
"\t- Harddrive.\n"
"\t- NFS.\n"
"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
"\t- FTP.\n"
"\t- Rsync.\n"
"\t- Webdav.\n"
"\t- Tape.\n"
"\n"
"  Drakbackup allows you to restore your system to\n"
"  a user selected directory.\n"
"\n"
"  Per default all backups will be stored on your\n"
"  /var/lib/drakbackup directory\n"
"\n"
"  Configuration file:\n"
"\t/etc/drakconf/drakbackup/drakbackup.conf\n"
"\n"
"Restore Step:\n"
"  \n"
"  During the restore step, DrakBackup will remove \n"
"  your original directory and verify that all \n"
"  backup files are not corrupted. It is recommended \n"
"  you do a last backup before restoring.\n"
"\n"
"\n"
msgstr ""
"´y­z:\n"
"\n"
"  DrakBackup µ{¦¡¬O¤@®M¥Î¨Ó³Æ¥÷¸ê®Æªºµ{¦¡¡C\n"
"  ³]©w¹Lµ{¤¤¡A±z¥i¥H¿ï¾Ü: \n"
"\t- ¨t²ÎÀɮסA\n"
"\t- ¨Ï¥ÎªÌÀɮסA\n"
"\t- ¨ä¥LÀɮסC\n"
"\t©ÎªÌ¬O±z¨t²Î©Ò¦³ªºÀɮסA¥]§t¨ä¥L Windows µ¥§@·~¨t²Î¤À³Î°ÏÀÉ®×\n"
"\n"
"  DrakBavkup µ{¦¡¤¹³\±z¨Ï¥Î¤U­±ªº¸Ë¸m³Æ¥÷ÀÉ®×:\n"
"\t- Hard Disk µwºÐ¸Ë¸m¡C\n"
"\t- NFS ºô¸ôºÏºÐ¡C\n"
"\t- ¥úºÐ¾÷(CDRW)¡BDVDROM (¥]§t¤ä´©¥i¶}¾÷¥úºÐ»s§@¡B«æ±Ï»P­«·s¦w¸Ëµ¥)¡C\n"
"\t- FTP ºô¸ô¶Ç¿é¡C\n"
"\t- RSYNC ºô¸ô¦P¨B¡C\n"
"\t- Webdav Web¡C\n"
"\t- Tape ºÏ±a¾÷¡C\n"
"\n"
"  DrakBackup ¯à°÷¨Ì·Ó¨Ï¥ÎªÌ³]©w¦^¦s¨ì¯S©w¥Ø¿ý¡C\n"
"\n"
"  ¤@¯ë¹w´ÁÀô¹Ò¤U¡A©Ò¦³ªº³Æ¥÷Àɮ׳£°£¦s¦b¨t²Îªº\n"
"  /var/drakbackup ¥Ø¿ý¤º¡C\n"
"\n"
"  ²ÕºA³]©wÀÉ®×:\n"
"\t/etc/drakconf/drakbackup/drakbackup.conf\n"
"\n"
"\n"
"¦^¦s¨BÆJ:\n"
"  \n"
"  ¦b¦^¦sªº¨BÆJ¤¤¡ADrakBackup ±N·|²¾°£±z¨t²Î­ì¥»ªº¥Ø¿ý¡A\n"
"  ¨Ã¥B½T»{©Ò¦³ªº³Æ¥÷Àɮ׳£¬O§¹¾ã¨S¿ù»~ªº¡C¤@¯ë«Øij±z\n"
"  ³Ì¦n¦A¦^¦s¤§«e¦b¶i¦æ¤@¦¸³Æ¥÷¡C\n"
"\n"
"\n"

#: ../../install_messages.pm:1
#, c-format
msgid ""
"Introduction\n"
"\n"
"The operating system and the different components available in the Mandrake "
"Linux distribution \n"
"shall be called the \"Software Products\" hereafter. The Software Products "
"include, but are not \n"
"restricted to, the set of programs, methods, rules and documentation related "
"to the operating \n"
"system and the different components of the Mandrake Linux distribution.\n"
"\n"
"\n"
"1. License Agreement\n"
"\n"
"Please read this document carefully. This document is a license agreement "
"between you and  \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
"explicitly \n"
"accept and fully agree to conform to the terms and conditions of this "
"License. \n"
"If you disagree with any portion of the License, you are not allowed to "
"install, duplicate or use \n"
"the Software Products. \n"
"Any attempt to install, duplicate or use the Software Products in a manner "
"which does not comply \n"
"with the terms and conditions of this License is void and will terminate "
"your rights under this \n"
"License. Upon termination of the License,  you must immediately destroy all "
"copies of the \n"
"Software Products.\n"
"\n"
"\n"
"2. Limited Warranty\n"
"\n"
"The Software Products and attached documentation are provided \"as is\", "
"with no warranty, to the \n"
"extent permitted by law.\n"
"MandrakeSoft S.A. will, in no circumstances and to the extent permitted by "
"law, be liable for any special,\n"
"incidental, direct or indirect damages whatsoever (including without "
"limitation damages for loss of \n"
"business, interruption of business, financial loss, legal fees and penalties "
"resulting from a court \n"
"judgment, or any other consequential loss) arising out of  the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
"COUNTRIES\n"
"\n"
"To the extent permitted by law, MandrakeSoft S.A. or its distributors will, "
"in no circumstances, be \n"
"liable for any special, incidental, direct or indirect damages whatsoever "
"(including without \n"
"limitation damages for loss of business, interruption of business, financial "
"loss, legal fees \n"
"and penalties resulting from a court judgment, or any other consequential "
"loss) arising out \n"
"of the possession and use of software components or arising out of  "
"downloading software components \n"
"from one of Mandrake Linux sites  which are prohibited or restricted in some "
"countries by local laws.\n"
"This limited liability applies to, but is not restricted to, the strong "
"cryptography components \n"
"included in the Software Products.\n"
"\n"
"\n"
"3. The GPL License and Related Licenses\n"
"\n"
"The Software Products consist of components created by different persons or "
"entities.  Most \n"
"of these components are governed under the terms and conditions of the GNU "
"General Public \n"
"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
"licenses allow you to use, \n"
"duplicate, adapt or redistribute the components which they cover. Please "
"read carefully the terms \n"
"and conditions of the license agreement for each component before using any "
"component. Any question \n"
"on a component license should be addressed to the component author and not "
"to MandrakeSoft.\n"
"The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
"Documentation written \n"
"by MandrakeSoft S.A. is governed by a specific license. Please refer to the "
"documentation for \n"
"further details.\n"
"\n"
"\n"
"4. Intellectual Property Rights\n"
"\n"
"All rights to the components of the Software Products belong to their "
"respective authors and are \n"
"protected by intellectual property and copyright laws applicable to software "
"programs.\n"
"MandrakeSoft S.A. reserves its rights to modify or adapt the Software "
"Products, as a whole or in \n"
"parts, by all means and for all purposes.\n"
"\"Mandrake\", \"Mandrake Linux\" and associated logos are trademarks of "
"MandrakeSoft S.A.  \n"
"\n"
"\n"
"5. Governing Laws \n"
"\n"
"If any portion of this agreement is held void, illegal or inapplicable by a "
"court judgment, this \n"
"portion is excluded from this contract. You remain bound by the other "
"applicable sections of the \n"
"agreement.\n"
"The terms and conditions of this License are governed by the Laws of "
"France.\n"
"All disputes on the terms of this license will preferably be settled out of "
"court. As a last \n"
"resort, the dispute will be referred to the appropriate Courts of Law of "
"Paris - France.\n"
"For any question on this document, please contact MandrakeSoft S.A.  \n"
msgstr ""

#: ../../standalone/draksplash:1
#, c-format
msgid ""
"the progress bar x coordinate\n"
"of its upper left corner"
msgstr "    ¥ª¤W¤è¶i«×Barªº x ¶b§¤¼Ð                      "

#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "Current interface configuration"
msgstr "Åã¥Ü¥Ø«eºô¸ô¤¶­±²ÕºA³]©w"

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

#: ../../network/isdn.pm:1
#, c-format
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
"card.\n"
msgstr ""
"\n"
"¦pªG¨t²Î¦w¸Ëªº¬O¡uISA ¤¶­±¥d¡v¡A¤U¤@­Ó¿Ã¹õ©ÒÅã¥Üªº¼Æ­ÈÀ³¸Ó\n"
"¬O¥¿½Tªº¡C\n"
"\n"
"¦pªG¨t²Î¦w¸Ëªº¬O ¡uPCMCIA¤¶­±¥d¡v¡A¨º±zÀ³¸Ó­nª¾¹D³o±i¥dªº\n"
"¡uIO ³s±µ°ð¡v»P ¡uIRQ¡v¡C\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Do not print any test page"
msgstr "¤£­n¦C¦L´ú¸Õ­¶"

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

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

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "³o­Ó±K½X¤Ó²³æ¤F (¤@©w¦Ü¤Ö­n¦³ %d ­Ó¦r¤¸¤~¦æ)"

#: ../../standalone.pm:1
#, fuzzy, c-format
msgid "[keyboard]"
msgstr "Áä½L"

#: ../../network/network.pm:1
#, c-format
msgid "FTP proxy"
msgstr "FTP ¥N²z¦øªA¾¹"

#: ../../standalone/drakfont:1
#, c-format
msgid "Install List"
msgstr "¦w¸Ë²M³æ"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Change\n"
"Restore Path"
msgstr ""
"Åܧó\n"
"¦^¦s¸ô®|"

#: ../../standalone/logdrake:1
#, c-format
msgid "Show only for the selected day"
msgstr "¶ÈÅã¥Ü©Ò¿ï¨ú¤é´Á¶µ¥Ø"

#: ../../standalone/drakTermServ:1
#, c-format
msgid ""
"drakTermServ Overview\n"
"\t\t\t   \n"
"        - Create Etherboot Enabled Boot Images:\n"
"        \t\tTo boot a kernel via etherboot, a special kernel/initrd image "
"must be created.\n"
"        \t\tmkinitrd-net does much of this work and drakTermServ is just a "
"graphical interface\n"
"        \t\tto help manage/customize these images.\n"
"\n"
"        - Maintain /etc/dhcpd.conf:\n"
"        \t\tTo net boot clients, each client needs a dhcpd.conf entry, "
"assigning an IP address\n"
"        \t\tand net boot images to the machine. drakTermServ helps create/"
"remove these entries.\n"
"\t\t\t\n"
"        \t\t(PCI cards may omit the image - etherboot will request the "
"correct image. You should\n"
"        \t\talso consider that when etherboot looks for the images, it "
"expects names like\n"
"        \t\tboot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
"\t\t\t \n"
"        \t\tA typical dhcpd.conf stanza to support a diskless client looks "
"like:\n"
"        \t\t\n"
"\t\t\t\thost curly {\n"
"\t\t\t\t\thardware ethernet        00:20:af:2f:f7:9d;\n"
"\t\t\t\t\tfixed-address              192.168.192.3;\n"
"\t\t\t\t\t#type                          fat;\n"
"\t\t\t\t\tfilename                      \"i386/boot/boot-3c509.2.4.18-6mdk."
"nbi\";\n"
"\t\t\t\t}\n"
"\t\t\t\n"
"\t\t\tWhile you can use a pool of IP addresses, rather than setup a specific "
"entry for\n"
"\t\t\ta client machine, using a fixed address scheme facilitates using the "
"functionality\n"
"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
"\t\t\t\n"
"\t\t\tNote: The \"#type\" entry is only used by drakTermServ.  Clients can "
"either be \"thin\"\n"
"\t\t\tor 'fat'.  Thin clients run most software on the server via xdmcp, "
"while fat clients run most\n"
"\t\t\tsoftware on the client machine. A special inittab, /etc/inittab\\$\\"
"$IP=client_ip\\$\\$ is\n"
"\t\t\twritten for thin clients. System config files xdm-config, kdmrc, and "
"gdm.conf are modified\n"
"\t\t\tif thin clients are used, to enable xdmcp. Since there are security "
"issues in using xdmcp,\n"
"\t\t\thosts.deny and hosts.allow are modified to limit access to the local "
"subnet.\n"
"\t\t\t\n"
"\t\t\tNote: You must stop/start the server after adding or changing "
"clients.\n"
"\t\t\t\n"
"        - Maintain /etc/exports:\n"
"        \t\tClusternfs allows export of the root filesystem to diskless "
"clients. drakTermServ\n"
"        \t\tsets up the correct entry to allow anonymous access to the root "
"filesystem from\n"
"        \t\tdiskless clients.\n"
"\n"
"        \t\tA typical exports entry for clusternfs is:\n"
"        \t\t\n"
"        \t\t/                  (ro,all_squash)\n"
"        \t\t/home              SUBNET/MASK(rw,root_squash)\n"
"\t\t\t\n"
"\t\t\tWith SUBNET/MASK being defined for your network.\n"
"        \t\t\n"
"        - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
"        \t\tFor users to be able to log into the system from a diskless "
"client, their entry in\n"
"        \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
"\\$. drakTermServ helps\n"
"        \t\tin this respect by adding or removing system users from this "
"file.\n"
"\n"
"        - Per client /etc/X11/XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
"        \t\tThrough clusternfs, each diskless client can have it's own "
"unique configuration files\n"
"        \t\ton the root filesystem of the server. In the future drakTermServ "
"will help create these\n"
"        \t\tfiles.\n"
"\n"
"        - Per client system configuration files:\n"
"        \t\tThrough clusternfs, each diskless client can have it's own "
"unique configuration files\n"
"        \t\ton the root filesystem of the server. In the future, "
"drakTermServ can help create files\n"
"        \t\tsuch as /etc/modules.conf, /etc/sysconfig/mouse, /etc/sysconfig/"
"keyboard on a per-client\n"
"        \t\tbasis.\n"
"\n"
"        - /etc/xinetd.d/tftp:\n"
"        \t\tdrakTermServ will configure this file to work in conjunction "
"with the images created by\n"
"        \t\tmkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
"the boot image to each\n"
"        \t\tdiskless client.\n"
"\n"
"        \t\tA typical tftp configuration file looks like:\n"
"        \t\t\n"
"        \t\tservice tftp\n"
"        \t\t(\n"
"                        disable         = no\n"
"                        socket_type  = dgram\n"
"                        protocol        = udp\n"
"                        wait             = yes\n"
"                        user             = root\n"
"                        server          = /usr/sbin/in.tftpd\n"
"                        server_args  = -s /var/lib/tftpboot\n"
"        \t\t}\n"
"        \t\t\n"
"        \t\tThe changes here from the default installation are changing the "
"disable flag to\n"
"        \t\t'no' and changing the directory path to /var/lib/tftpboot, where "
"mkinitrd-net\n"
"        \t\tputs it's images.\n"
"\n"
"        - Create etherboot floppies/CDs:\n"
"        \t\tThe diskless client machines need either ROM images on the NIC, "
"or a boot floppy\n"
"        \t\tor CD to initate the boot sequence.  drakTermServ will help "
"generate these images,\n"
"        \t\tbased on the NIC in the client machine.\n"
"        \t\t\n"
"        \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
"manually:\n"
"        \t\t\n"
"        \t\tcat /usr/lib/etherboot/boot1a.bin \\\n"
"        \t\t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0\n"
" \n"
"\n"
msgstr ""

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

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

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

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

#: ../../network/isdn.pm:1
#, c-format
msgid "What kind of card do you have?"
msgstr "±zªº¥dÄݩ󨺺اΦ¡?"

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

#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
#, c-format
msgid "Security"
msgstr "¦w¥þ©Ê³]©w"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
"If you are using KDE as desktop environment you have a \"panic button\", an "
"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
"jobs immediately when you click it. This is for example useful for paper "
"jams.\n"
msgstr ""
"±z¤]¥i¥H¨Ï¥Î¹Ï§Î¤¶­±ºÞ²zµ{¦¡ - \"xpdq\" ¨Ó³]©w°Ñ¼Æ³]©w¡A\n"
"¥]§t­n¦C¦Lªº¤u§@¶µ¥Ø¡C\n"
"¦pªG±z¥Ø«e¬O¨Ï¥Î KDE ®à­±Àô¹Òªº¸Ü¡A¦b®à­±ªº¤u§@¦C¤W¡A\n"
"±zÀ³¸Ó¥i¥H§ä¨ì¤@­Ó©R¦W¬° \"°±¤î¦Lªí¾÷!\" ªº¶µ¥Ø¡C·í±z\n"
"ÂI¿ï¸Ó¶µ¥Ø«á¡A¥Ø«e¥¿¦b¦C¦Lªº¤u§@³£·|¥ß§Y¼È°±¡C\n"

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

#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Unknown"
msgstr "¥¼ª¾ªº«¬¸¹"

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

#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
#, c-format
msgid "Network Configuration"
msgstr "ºô¸ô³]©w"

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

#: ../../network/isdn.pm:1
#, c-format
msgid ""
"Protocol for the rest of the world\n"
"No D-Channel (leased lines)"
msgstr ""
"¨ä¥Lªº³q°T¨ó©w \n"
"µL D-Channel (leased lines)"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Option %s must be a number!"
msgstr "%s °Ñ¼Æ»Ý­n¬°¾ã¼Æ"

#: ../../standalone/drakboot:1 ../../standalone/draksplash:1
#, c-format
msgid "Notice"
msgstr "ª`·N"

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
" Activate/Disable daily security check."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
"Enable/Disable crontab and at for users. Put allowed users in /etc/cron."
"allow and /etc/at.allow\n"
"(see man at(1) and crontab(1))."
msgstr ""

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

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid ""
"The configuration of the printer will work fully automatically. If your "
"printer was not correctly detected or if you prefer a customized printer "
"configuration, turn on \"Manual configuration\"."
msgstr ""
"¤U­±¦C¥Xªº¬O¦Û°Ê°»´ú©Ò§ä¨ìªº¦Lªí¾÷¡C¬ÛÃö¦Lªí¾÷ªº²ÕºA³]©w\n"
"³£¯à°÷¦Û°Ê§¹¦¨¦Ó¤£»Ý­n¥t¥~³]©w¡C­Y¬O¤U­±¦C¥X©Ò§ä¨ìªº¦Lªí¾÷\n"
"¨Ã¤£¬O±z©Ò¹w´Áªº¡A©ÎªÌ¬O§A§Æ±æ¤â°Ê¤è¦¡³]©w¡A½Ð¿ï¾Ü¡y¤â°Ê³]©w¡z¡C"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "What type of partitioning?"
msgstr "¥H¨ººØ¤è¦¡¤À³Î¡H"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
"³z¹L FTP ¶Ç°eÀɮײM³æ: %s\n"
" "

#: ../../standalone/drakconnect:1
#, c-format
msgid "Interface"
msgstr "¤¶­±"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Options Description:\n"
"\n"
" - Backup System Files:\n"
"       \n"
"\tThis option allows you to backup your /etc directory,\n"
"\twhich contains all configuration files. Please be\n"
"\tcareful during the restore step to not overwrite:\n"
"\t\t/etc/passwd \n"
"\t\t/etc/group \n"
"\t\t/etc/fstab\n"
"\n"
" - Backup User Files: \n"
"\n"
"\tThis option allows you select all users that you want to \n"
"\tbackup. To preserve disk space, it is recommended that\n"
"\tyou do not include the web browser's cache.\n"
"\n"
" - Backup Other Files: \n"
"\n"
"\tThis option allows you to include additional data to save.\n"
"\tIf you want to add individual files, select them from the\n"
"\trighthand 'Files' list pane.  To add directories, enter the \n"
"\tdirectory by clicking on it in the lefthand 'Folders' pane, \n"
"\tand at that point click 'OK' without selecting any files.\n"
" \n"
" - Incremental Backups:\n"
"\n"
"\tThe incremental backup is the most powerful option for \n"
"\tbackup. This option allows you to backup all your data \n"
"\tthe first time, and only the changed data afterward.\n"
"\tThen you will be able, during the restore step, to restore \n"
"\tyour data from a specified date. If you have not selected \n"
"\tthis option all old backups are deleted before each backup.    \n"
"\n"
" - Differential Backups:\n"
" \n"
"\tThe differential backup, rather than comparing changes in the\n"
"\tdata to the previous incremental backup, always compares the\n"
"\tdata to the initial base backup. This method allows one to\n"
"\trestore the base and then the differential from a certain date.\n"
"\n"
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg, expr='*.*', dev='tty12')\n"
"\n"
"Enable/Disable syslog reports to console 12. \\fIexpr\\fP is the\n"
"expression describing what to log (see syslog.conf(5) for more details) and\n"
"dev the device to report the log."
msgstr ""

#: ../../modules/parameters.pm:1
#, c-format
msgid "comma separated strings"
msgstr "¥Î¦r¦ê¤À¹jªº¦r¦ê"

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

#: ../../standalone/logdrake:1
#, c-format
msgid "Messages"
msgstr "Messages (°T®§)"

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

#: ../../network/drakfirewall.pm:1
#, c-format
msgid "POP and IMAP Server"
msgstr "POP/IMAP ¦øªA¾¹"

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

#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Model stepping"
msgstr "¸ü¤J³]©w"

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

#: ../../modules/interactive.pm:1
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "¨t²Î¤W¬O§_¦³¥ô¦ó %s ¤¶­±?"

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

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

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remote lpd Printer Options"
msgstr "»·ºÝ lpd ¦Lªí¾÷¿ï¶µ"

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"GNU/Linux is a multi-user system, meaning each user may have their own\n"
"preferences, their own files and so on. You can read the ``Starter Guide''\n"
"to learn more about multi-user systems. But unlike \"root\", who is the\n"
"system administrator, the users you add at this point will not be\n"
"authorized to change anything except their own files and their own\n"
"configurations, protecting the system from unintentional or malicious\n"
"changes that impact on the system as a whole. You will have to create at\n"
"least one regular user for yourself -- this is the account which you should\n"
"use for routine, day-to-day use. Although it is very easy to log in as\n"
"\"root\" to do anything and everything, it may also be very dangerous! A\n"
"very simple mistake could mean that your system will not work any more. If\n"
"you make a serious mistake as a regular user, the worst that will happen is\n"
"that you will lose some information, but not affect the entire system.\n"
"\n"
"The first field asks you for a real name. Of course, this is not mandatory\n"
"-- you can actually enter whatever you like. DrakX will use the first word\n"
"you typed in this field and copy it to the \"%s\" field, which is the name\n"
"this user will enter to log onto the system. If you like, you may override\n"
"the default and change the username. The next step is to enter a password.\n"
"From a security point of view, a non-privileged (regular) user password is\n"
"not as crucial as the \"root\" password, but that is no reason to neglect\n"
"it by making it blank or too simple: after all, your files could be the\n"
"ones at risk.\n"
"\n"
"Once you click on \"%s\", you can add other users. Add a user for each one\n"
"of your friends: your father or your sister, for example. Click \"%s\" when\n"
"you have finished adding users.\n"
"\n"
"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
"that user (bash by default).\n"
"\n"
"When you have finished adding users, you will be asked to choose a user\n"
"that can automatically log into the system when the computer boots up. If\n"
"you are interested in that feature (and do not care much about local\n"
"security), choose the desired user and window manager, then click \"%s\".\n"
"If you are not interested in this feature, uncheck the \"%s\" box."
msgstr ""
"¡uGNU/Linux¡v¬O¤@­Ó¦h¤Hªº¨t²Î¡A²³æ»¡¨C­Ó¨Ï¥ÎªÌ³£¦³¨ä¿W¥ßªº§@·~Àô¹Ò¡C±z¥i¥H¸Ô"
"¾\¡yUser Guide¡z¤å¥ó»¡©ú¥H«K©ó±oª¾§ó¦h¸ê°T¡C¨t²Î¦³¤@­Ó±b¸¹¬° \"root\"¡A³o¬O¨t"
"²ÎªººÞ²zªÌ¡C¨t²ÎºÞ²zªÌ¯à°÷Åܧó¨t²Î©Ò¦³³]©w¡A¥]§t¨Ï¥ÎªÌªºÀɮ׸ê®Æ¡C¹ê»Ú¤W¨Ï¥Î"
"¨t²Î®É¡A±z»Ý­n«Ø¥ß¤@­Ó¤@¯ë¨Ï¥ÎªÌ±b¸¹¶i¦æ¤@¯ë¨Æ°È¾Þ§@¡A·í»Ý­n¶i¦æ¨t²ÎºÞ²zºûÅ@"
"®É¡A¤~»Ý­n¤Á´«¦¨¬°¨t²ÎºÞ²zªÌ¨­¥÷¨Ó³B²z¡C¦Ó¥Ñ©ó¨t²ÎºÞ²zªÌ¦³³Ì°ªªºÅv§Q¡A©Ò¥H¤£"
"·í¾Þ§@¨t²Î®É¡A¦³¥i¯à»´©öªºÅý¨t²Î³y¦¨¤£¥i¹w´Áªº¿ù»~¡C\n"
"\n"
"±µ¤U¨Óªº¨BÆJ¡A¬O«Ø¥ß¨Ï¥ÎªÌ±b¸¹¡A¥]§t³]©w¸Ó¨Ï¥ÎªÌ±K½X¡C¸ê®Æ³£¿é¤J§¹²¦«á¡A½ÐÂI"
"¿ï\"±µ¨ü¨Ï¥ÎªÌ\"´N¥i¥H«Ø¥ß¸Ó±b¸¹¡C³£¿é¤J§¹¦¨­n¨ì¤U¤@­Ó¨BÆJ®É¡A½Ð¿ï¨ú\"§¹¦¨"
"\"§Y¥i¡C\n"
"­Y¬O±z¿ï¾Ü\"¶i¶¥\"«ö¶s¡A¥i¥H³]©w¸Ó¨Ï¥ÎªÌÃB¥~ªº¶µ¥Ø¡C¤ñ¤è¥]§t¸Ó¨Ï¥ÎªÌªºShellµ{"
"¦¡¦WºÙ¡C"

#: ../../standalone/drakconnect:1
#, c-format
msgid "Configure Internet Access..."
msgstr "³]©w internet ¦s¨ú"

#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
msgid "Norway"
msgstr "®¿«Â"

#: ../../keyboard.pm:1
#, c-format
msgid "Danish"
msgstr "¤¦³Á"

#: ../../services.pm:1
#, c-format
msgid ""
"Automatically switch on numlock key locker under console\n"
"and XFree at boot."
msgstr ""
"¯à°÷¦b¶}¾÷®É¶}±Ò NumLock ¿O¡A¥H«K©ó¦b console ©ÎªÌ¬O X ¤U¨Ï¥Î\n"
"¤E®cÁä¼Æ¦r¥\¯à¡C"

#: ../../network/network.pm:1
#, c-format
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
"notation (for example, 1.2.3.4)."
msgstr ""
"½Ð¿é¤J³o¥x¥D¾÷ªº IP ³]©w­È¡A³oÃ䪺¨C­Ó¶µ¥Øªº®æ¦¡\n"
"³£À³¸Ó¥Î¤p¼ÆÂI¶¡¹jªº¥|­Ó¤Q¶i¦ìªü©Ô§B¼Æ¦r¨Ó¿é¤J \n"
"(¨Ò¦p 1.2.3.4)¡C"

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"The Mandrake Linux installation is distributed on several CD-ROMs. DrakX\n"
"knows if a selected package is located on another CD-ROM so it will eject\n"
"the current CD and ask you to insert the correct CD as required."
msgstr ""
"Mandrake Linux ¦w¸Ë¤ù¥]§t¼Æ±i¥úºÐ¤ù¡CDrakeX ¦w¸Ëµ{¦¡¦w¸Ë¨ì¬Y­Ó\n"
"©Ò»Ý­nªº®M¥ó®É¡A·|´£¥Ü±z©ñ¤J©Ò»Ý­nªº¥úºÐ¤ù¡C"

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

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

#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "No NIC selected!"
msgstr "¥¼¿ï¾Üºô¸ô¥d!"

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

#: ../../network/netconnect.pm:1
#, c-format
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
"³]©w¥¢±Ñ¡C\n"
"½Ð°õ¦æ net_monitor µ{¦¡´ú¸Õ±zªº³s½uª¬ºA¡C­Y¬O±zµo²{±zªººô¸ô³s½u¨Ã¤£¥\¯à¡A±z»Ý"
"­n­«·s¦A¶i¦æ³]©w¡C"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "partition %s is now known as %s"
msgstr "¸Ó¤À³Î°Ï %s ¥Ø«e¬° %s"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Backup Other files..."
msgstr "³Æ¥÷¨ä¥LÀÉ®×..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "SMB server IP"
msgstr "ºôªÚ¥D¾÷ IP"

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

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "·Ç³Æ¼g¤JºÏºÐ %s ªºµwºÐ¤À³Îªí!"

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Installing HPOJ package..."
msgstr "¥¿¦b¦w¸Ë®M¥ó..."

#: ../../any.pm:1
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
"install\n"
"LILO (or grub) on your system, or another operating system removes LILO, or "
"LILO doesn't\n"
"work with your hardware configuration. A custom bootdisk can also be used "
"with\n"
"the Mandrake rescue image, making it much easier to recover from severe "
"system\n"
"failures. Would you like to create a bootdisk for your system?\n"
"%s"
msgstr ""
"»s§@¤@¶ô¶}¾÷¤ù¥i¥HÅý±z¤£¥²¨Ì¾aµwºÐ¤Wªº¶}¾÷\n"
"µ{¦¡´N¥i¥H¶}¾÷¶i¤J±zªº Linux ¨t²Î¡A·í±z¤£§Æ\n"
"±æ¦b¨t²Î¤W¦w¸Ë LILO (©Î grub) ªº®É­Ô·|«Ü¦³¥Î¡A\n"
"©ÎªÌ·í¨ä¥L§@·~¨t²Î»\±¼ LILO¡B·í LILO ¦b±zªºµw\n"
"Åé¤WµLªk¥¿±`¹B§@ªº®É­Ô¡A¦³¤@¶ô¶}¾÷¤ù±N·|Åý±z\n"
"¬Ù¨Æ¤£¤Ö¡A¦¹¥~¡A³o¶ô¶}¾÷¤ùÁÙ¥i¥H¸ò Mandrake ´£\n"
"¨Ñªº±Ï´©ºÏ¤ù (rescue disk) ¤@°_¨Ï¥Î¡AÅý±z¦b¨t²Î\n"
"µo¥Í°ÝÃD®É¥i¥H¶}¾÷¶i¥h¶i¦æ­×´_ªº¤u§@¡F±z§Æ±æ\n"
"¦w¸Ëµ{¦¡À°±z»s§@¤@±i¶}¾÷ºÏ¤ù¶Ü?\n"
"%s"

#: ../../keyboard.pm:1
#, c-format
msgid "Latvian"
msgstr "©Ô¦«ºû¨È"

#: ../../standalone/drakbackup:1
#, c-format
msgid "monthly"
msgstr "¨C¤ë"

#: ../../standalone/drakfloppy:1
#, c-format
msgid "Module name"
msgstr "¼Ò²Õ¦WºÙ"

#: ../../network/network.pm:1
#, c-format
msgid "Start at boot"
msgstr "©ó¶}¾÷®É±Ò°Ê"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Use Incremental Backups"
msgstr "¨Ï¥Î»¼¼W³Æ¥÷ (¤£·|Âл\¦³³Æ¥÷)"

#: ../../any.pm:1
#, c-format
msgid "First sector of drive (MBR)"
msgstr "µwºÐªº²Ä¤@­ÓºÏ°Ï (MBR)"

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

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

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

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

#: ../../standalone/harddrake2:1
#, c-format
msgid "the module of the GNU/Linux kernel that handles the device"
msgstr "¥Ø«e Linux ®Ö¤ß©Ò¨Ï¥ÎªºÅX°Êµ{¦¡¶µ¥Ø"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Trying to rescue partition table"
msgstr "¥¿¦b¸Õ¹Ï±Ï¦^µwºÐ¤À³Îªí"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Option %s must be an integer number!"
msgstr "%s °Ñ¼Æ»Ý­n¬°¾ã¼Æ !"

#: ../../interactive/stdio.pm:1
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
"¸ÓÄæ¦ì¶µ¥Ø±z»Ý­n¿é¤J¡G\n"
"%s"

#: ../../standalone/livedrake:1
#, c-format
msgid "Unable to start live upgrade !!!\n"
msgstr "µLªk±Ò°Ê½u¤W§ó·sµ{¦¡ !!!\n"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Name: "
msgstr "¦WºÙ¡G"

#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "16 million colors (24 bits)"
msgstr "1 ¤d 6 ¦Ê¸U¦â (24 ¦ì¤¸)"

#: ../../any.pm:1
#, c-format
msgid "Allow all users"
msgstr "¤¹³\©Ò¦³¨Ï¥ÎªÌ"

#: ../../share/advertising/08-store.pl:1
#, c-format
msgid "The official MandrakeSoft Store"
msgstr "Mandrake ©x¤è¯¸¥x"

#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Resizing"
msgstr "¥¿¦b­«³]¤j¤p"

#: ../../network/netconnect.pm:1
#, c-format
msgid "Cable connection"
msgstr "Cable ³s½u"

#: ../../standalone/logdrake:1
#, c-format
msgid "User"
msgstr "User (¨Ï¥ÎªÌ)"

#: ../../fsedit.pm:1
#, c-format
msgid ""
"I can't read the partition table of device %s, it's too corrupted for me :(\n"
"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
msgstr ""

#: ../../standalone/drakbackup:1
#, c-format
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "¦b¦^¦s«e¶i¦æ·sªº³Æ¥÷°Ê§@ (¥u¯à°÷¥Î¦b»¼¼W¦¡³Æ¥÷®É¡C)"

#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Name"
msgstr "¦WºÙ¡G"

#: ../../raid.pm:1
#, c-format
msgid "mkraid failed"
msgstr "mkraid ¥¢±Ñ"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Button 3 Emulation"
msgstr "¤TÁä¼ÒÀÀ"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Sending files..."
msgstr "¥¿¦b°e¥XÀÉ®×..."

#: ../../keyboard.pm:1
#, c-format
msgid "Israeli (Phonetic)"
msgstr "¥H¦â¦C (­µ¼Ð)"

#: ../../any.pm:1
#, c-format
msgid "access to rpm tools"
msgstr "¦s¨ú rpm ¤u¨ãµ{¦¡"

#: ../../standalone/drakperm:1
#, c-format
msgid "edit"
msgstr "½s¿è"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "You must choose/enter a printer/device!"
msgstr "±z»Ý­n¿ï¾Ü©Î¿é¤J¸Ó¦Lªí¾÷¦WºÙ©Î¸Ë¸m¶µ¥Ø!"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Permission problem accessing CD."
msgstr "¦]¬°Åv­­ªº­­¨îµLªk¦s¨ú CD ¤ù¡C"

#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Phone number"
msgstr "¹q¸Ü¸¹½X"

#: ../../harddrake/sound.pm:1
#, fuzzy, c-format
msgid "Error: The \"%s\" driver for your sound card is unlisted"
msgstr "©|¥¼¦³¥ô¦ó´£¨Ñ±z¨Ï¥Îªº­µ®Ä¥dÅX°Êµ{¦¡ (%s)"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer name, description, location"
msgstr "¦Lªí¾÷¦WºÙ,´y­z,¦ì¸m"

#: ../../standalone/drakxtv:1
#, c-format
msgid "USA (broadcast)"
msgstr "¬ü°ê (boradcast)"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Please choose the\n"
"media for backup."
msgstr "½Ð¿ï¾Ü­n¥Î¨Ó³Æ¥÷ªº¸Ë¸m"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "Use Xinerama extension"
msgstr "¨Ï¥Î Xinerama ©µ¦ù¤ä´©"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Loopback"
msgstr "Loopback"

#: ../../standalone/drakfloppy:1
#, c-format
msgid ""
"Unable to properly close mkbootdisk: \n"
" %s \n"
" %s"
msgstr ""
"µLªk¥¿±`Ãö³¬ mkbootdisk¡G\n"
" %s\n"
" %s"

#: ../../standalone/drakxtv:1
#, c-format
msgid "West Europe"
msgstr "¦è¼Ú"

#: ../../standalone.pm:1
#, c-format
msgid ""
"[OPTIONS] [PROGRAM_NAME]\n"
"\n"
"OPTIONS:\n"
"  --help            - print this help message.\n"
"  --report          - program should be one of mandrake tools\n"
"  --incident        - program should be one of mandrake tools"
msgstr ""

#: ../../standalone/harddrake2:1
#, c-format
msgid "Harddrake2 version %s"
msgstr "Harddrake2 ª©¥» %s"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Copying %s"
msgstr "¥¿¦b½Æ»s %s"

#: ../../standalone/draksplash:1
#, c-format
msgid "Choose color"
msgstr "¿ï¨ú¦â±m"

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

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

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

#: ../../standalone/drakbackup:1
#, c-format
msgid "Please check if you are using CDRW media"
msgstr "¦pªG±z¨Ï¥Îªº¬O CDRW ¸Ë¸m¡A½Ð¿ï¨ú¸Ó¶µ¥Ø"

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on this partition\n"
"will be lost and will not be recoverable!"
msgstr ""
"¿ï¾Ü±z§Æ±æ¥Î¨Ó¦w¸Ë Mandrake Linux ¨t²ÎªºµwºÐ¡C·í§A¿ï¾Ü¦n«á¡A¸ÓÁûµwºÐ¤W­±©Ò¦³"
"ªº¸ê®Æ±N·|³Q²M°£¦ÓµLªk®¾±Ï¡A½Ð¤p¤ß¾Þ§@³o­Ó¶µ¥Ø¡C"

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

#: ../../mouse.pm:1
#, c-format
msgid "Generic 2 Button Mouse"
msgstr "¤@¯ëªº¨âÁ䦡·Æ¹«"

#: ../../lvm.pm:1
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "¥ý²¾°£ logical volume ¸Ë¸m\n"

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

#: ../../standalone/drakboot:1
#, c-format
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
"µLªk¼g¤J /etc/sysconfig/bootsplash\n"
"Àɮק䤣¨ì¡C"

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

#: ../../standalone/draksplash:1
#, c-format
msgid ""
"y coordinate of text box\n"
"in number of characters"
msgstr "   ¦r¤¸¤å¦r¤è¶ôªº Y ¶b§¤¼Ð                       "

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr "­nÀò±o¥Ø«e³o¥x¦Lªí¾÷¥i¥Îªº¬ÛÃö°Ñ¼Æ¿ï¶µ¡A½ÐÂI¿ï¡y¦C¦L¿ï¶µ²M³æ¡z«ö¶s¡C"

#: ../../standalone/drakgw:1
#, c-format
msgid "Enabling servers..."
msgstr "¶}±Ò¦øªA¾¹¤¤..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printing test page(s)..."
msgstr "¥¿¦b¦C¦L´ú¸Õ­¶..."

#: ../../fsedit.pm:1
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "¤w¸g¦³¤À³Î°Ï¤À°t¨ì±¾¸üÂI %s ¤F\n"

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"At this point, you need to decide where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
"if an existing operating system is using all the available space you will\n"
"have to partition the drive. Basically, partitioning a hard drive consists\n"
"of logically dividing it to create the space needed to install your new\n"
"Mandrake Linux system.\n"
"\n"
"Because the process of partitioning a hard drive is usually irreversible\n"
"and can lead to lost data if there is an existing operating system already\n"
"installed on the drive, partitioning can be intimidating and stressful if\n"
"you are an inexperienced user. Fortunately, DrakX includes a wizard which\n"
"simplifies this process. Before continuing with this step, read through the\n"
"rest of this section and above all, take your time.\n"
"\n"
"Depending on your hard drive configuration, several options are available:\n"
"\n"
" * \"%s\": this option will perform an automatic partitioning of your blank\n"
"drive(s). If you use this option there will be no further prompts.\n"
"\n"
" * \"%s\": the wizard has detected one or more existing Linux partitions on\n"
"your hard drive. If you want to use them, choose this option. You will then\n"
"be asked to choose the mount points associated with each of the partitions.\n"
"The legacy mount points are selected by default, and for the most part it's\n"
"a good idea to keep them.\n"
"\n"
" * \"%s\": if Microsoft Windows is installed on your hard drive and takes\n"
"all the space available on it, you will have to create free space for\n"
"Linux. To do so, you can delete your Microsoft Windows partition and data\n"
"(see ``Erase entire disk'' solution) or resize your Microsoft Windows FAT\n"
"partition. Resizing can be performed without the loss of any data, provided\n"
"you have previously defragmented the Windows partition and that it uses the\n"
"FAT format. Backing up your data is strongly recommended.. Using this\n"
"option is recommended if you want to use both Mandrake Linux and Microsoft\n"
"Windows on the same computer.\n"
"\n"
"   Before choosing this option, please understand that after this\n"
"procedure, the size of your Microsoft Windows partition will be smaller\n"
"then when you started. You will have less free space under Microsoft\n"
"Windows to store your data or to install new software.\n"
"\n"
" * \"%s\": if you want to delete all data and all partitions present on\n"
"your hard drive and replace them with your new Mandrake Linux system,\n"
"choose this option. Be careful, because you will not be able to undo your\n"
"choice after you confirm.\n"
"\n"
"   !! If you choose this option, all data on your disk will be deleted. !!\n"
"\n"
" * \"%s\": this will simply erase everything on the drive and begin fresh,\n"
"partitioning everything from scratch. All data on your disk will be lost.\n"
"\n"
"   !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"%s\": choose this option if you want to manually partition your hard\n"
"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
"easily lose all your data. That's why this option is really only\n"
"recommended if you have done something like this before and have some\n"
"experience. For more instructions on how to use the DiskDrake utility,\n"
"refer to the ``Managing Your Partitions '' section in the ``Starter\n"
"Guide''."
msgstr ""
"±µ¤U¨Ó¡A±z»Ý­n¿ï¾Ü¤@Áû·Ç³Æ¥Î¨Ó¦w¸Ë¡yMandrake-Linux¡z§@·~¨t²ÎªºµwºÐ¡C¦pªG±zªº"
"µwºÐ¬O¥þ·s©|¥¼¨Ï¥Îªº¸Ü¡A±z»Ý­n¶i¦æ¤À³Îªº°Ê§@¥H«K©ó¤~¯à°÷¨Ï¥Î©Ò¹º¤À¥X¨Óªº¤À³Î"
"°Ï¶i¦æ¦w¸Ë¡C¦Ó­Y¬O±zµwºÐ­ì¥»´N¤w¸g¦³¦w¸Ë¨ä¥L§@·~¨t²Îªº¸Ü¡A¥u­nµwºÐÁÙ¦³ªÅªº¨S"
"¨Ï¥Îªº¤À³Î°Ï¡A¬Æ¦Ü¬O¤w¸g¹º¤Àµ¹¬Y§@·~¨t²Î¨Ï¥Î¡A³£ÁÙ¬O¯à°÷¤ä´©½Õ¾ã¤w¸g³Q¨Ï¥Îªº"
"¤À³Î°Ï¡A®¿¥X¥i¥Î¤À³Î°ÏªÅ¶¡¨Ó¶i¦æ¡yMandrake-Linux¡zªº¦w¸Ë¡C\n"
"\n"
"­Y¬O±zµwºÐ­ì¥»´N¤w¸g¦³¸ê®Æªº¸Ü¡A«á­±ªº¤À³Î°Ê§@¡A°ò¥»¤W¬O«Ü¦MÀIªº¡A­Y¬O¾Þ§@¥¢"
"»~±N¾É­P¤£¥i¹w´Áªº¸ê®Æ·´·lµ¥±¡ªp¡C­Y¬O±z¤£¼ô±x¤À³Îªº¤è¦¡¡A«Øij±z¥i¥H¨Ï¥ÎºëÆF"
"¼Ò¦¡¦Û°ÊÀ°±z¹º¤À¡C¬ÛÃö°ÝÃD¡A«Øij±z¥ý¾\Ū¤â¥U¤Wªº¬ÛÃö¸ê°T¡A¥H«K©ó¸`¬Ù±zªº®É"
"¶¡¡C\n"
"\n"
"­Y¬O±z·íªì¬O¿ï¾Ü¨Ï¥Î±M®a¼Ò¦¡¶i¦æ¦w¸Ëªº¸Ü¡A±N·|¶i¤JDiskDrakeµ{¦¡¡A±z·|¬Ý¨ì¤@­Ó"
"¾ã¦X¦¡ªº¤À³Î¤¶­±¡A±z±N¯à°÷«Ü¤è«Kªº¶i¦æ¤À³Î°Ê§@¡C­Y¬O±z¤£¼ô±x¤À³Îªº¤è¦¡¡A«Øij"
"±z¥i¥HÂI¿ïºëÆF¼Ò¦¡«ö¶sÅýµ{¦¡¦Û°ÊÀ°±z¨M©w¹º¤À¤è¦¡¡C\n"
"\n"
"¦pªG¸ÓµwºÐ¸Ë¸m¥ý«e¤w¸g¤À³Î¹L¤F¡A±z¥i¥Hª½±µ¿ï¾Ü¨M©w«ç»ò¨Ï¥Î³o¨Ç¤À³Î°Ï§@¬°Linux"
"¨t²Î¦w¸Ë¨Ï¥Î¡C\n"
"\n"
"¦pªGÁÙ¨S¦³¤À³Î°Ï«Ø¥ß¡A±z»Ý­n«Ø¥ß¾A·íµ¹Linux¨Ï¥Îªº¤À³Î°Ï¥H«K©ó¯à°÷§âLinux¨t²Î"
"¦w¸Ë¶i¥h¡C¥t¥~¡A¨Ì¾Ú±zµwºÐ³]©w²ÕºA¡A¥i¯à·|¦³³o¨Ç¶µ¥Ø¨Ï¥Î:\n"
"\n"
" ¡¯¡y¨Ï¥Î³Ñ¾lªÅ¶¡¡z¡G¸Ó¶µ¥Ø±N·|¦Û°Ê¹º¤À¥i¥Îªº³Ñ¾lªÅ¶¡¨Ó¨Ï¥Î¡C\n"
"\n"
" ¡¯¡y¨Ï¥Î²{¦³¤À³Î°Ï¡z¡G¸Ó¶µ¥Ø±N·|¦Û°Ê¨Ï¥Î­ì¥»¤w¸g¹º¤À¦nªº¤À³Î°Ï¡C\n"
"\n"
" ¡¯¡y¨Ï¥Î³Ñ¾l¥i¥ÎªºWindowsªÅ¶¡¡z¡G¦pªG±z¨t²Î¦³¦w¸Ë¡uMicrosoftWindows¡vªº¸Ü¡A"
"¨Ã¥BWindows¤À³Î°Ï¤W¦³³Ñ¾l¥i¥ÎªºªÅ¶¡ªº¸Ü¡A¸Ó¶µ¥Ø±N¯à°÷§Q¥Î³o¨ÇªÅ¶¡¡A³z¹L½Õ¾ã¸Ó"
"¤À³Î°Ï®¿¥X¥i¥ÎªÅ¶¡¥H«K©ó¨Ó¦w¸ËLinux¡C¤£¹Lª`·Nªº¬O¡A½Õ¾ã¸Ó¤À³Î°Ï¤j¤p¡A¦³¤@©wµ{"
"«×ªº­·ÀI¡A«Øij§A­n¨Ï¥Î¸Ó¶µ¥Øªº¸Ü¡A¥ý³Æ¥÷±zWindows¤Wªº­«­n¸ê®Æ¥H¨¾¤£´ú¡C\n"
"\n"
"¦¹¥~¡A½Ðª`·N¤@¤U¡A·í¨Ï¥Î³o­Ó¶µ¥Ø«á¡AWindows¥i¥Îªº³Ñ¾lªÅ¶¡±N·|´î¤Ö¡A³o·N¨ý±z¦b"
"WindowsÀô¹Ò¤U¥i¥ÎªºªÅ¶¡·|´î¤Ö¡C\n"
"\n"
" ¡¯¡y§R°£¾ã­ÓºÏºÐ¡z¡G¦pªG±z­n²MªÅ¬Y­ÓµwºÐ¤W©Ò¦³ªº¤À³Î°Ï¡A±z¥i¥H¿ï¾Ü¨Ï¥Î³o­Ó¶µ"
"¥Ø¡C¦ý¬O¤p¤ß¨Ï¥Î¡A¦]¬°§R°£«á­ì¥»µwºÐ¬ÛÃö¤À³Î°Ï¥H¤ÎÀx¦sªº¸ê®Æ³£·|®ø¥¢¡C\n"
"\n"
"¡¯¡y±M®a¼Ò¦¡¡z¡G³o­Ó¶µ¥Ø¯à°÷Åý±z¤â°Ê¦Û¦æ¨M©w¹º¤À¤è¦¡¡C¤£¹L½Ð¤p¤ß¨Ï¥Î¡A¦]¬°³o"
"¬Û·í¦n¥Î¡A¤]·N¨ýµÛ­Y¬O¾Þ§@¤£·í¥¢»~¥i¯à·|·´·l±zªºµwºÐ¸ê®Æ¡A¦]¦¹\n"
"½Ð¤p¤ß¨Ï¥Î¡C"

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

#: ../../standalone/drakbug:1
#, c-format
msgid "Application:"
msgstr "À³¥Îµ{¦¡¡G"

#: ../../network/isdn.pm:1
#, c-format
msgid "External ISDN modem"
msgstr "¥~³¡ ISDN Modem"

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

#: ../../interactive/stdio.pm:1
#, c-format
msgid "Your choice? (default %s) "
msgstr "±zªº¿ï¾Ü? (¹w³]¬° %s) "

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

#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid " / Region"
msgstr "Reunion"

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

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
"Printing status:\n"
"%s\n"
"\n"
msgstr ""
"´ú¸Õ­¶¤w¸g³Q°e¨ì¦C¦L¦øªAµ{¦¡¤F¡A±µµÛ¥i¯à»Ý­nªá\n"
"¤@ÂI®É¶¡¡A¦Lªí¾÷¤~·|§âµ²ªG¦L¥X¨Ó¡C\n"
"¥Ø«eªº¦C¦Lª¬ºA:\n"
"%s\n"
"\n"

#: ../../standalone/drakbackup:1
#, c-format
msgid "daily"
msgstr "¨C¤Ñ"

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "and one unknown printer"
msgstr ""
"\n"
"»P¤@¥x¥¼ª¾ªº¦Lªí¾÷¾÷«¬¬° "

#: ../../lang.pm:1 ../../standalone/drakxtv:1
#, c-format
msgid "Ireland"
msgstr "·Rº¸Äõ"

#: ../../standalone/drakfloppy:1
#, c-format
msgid "kernel version"
msgstr "®Ö¤ßª©¥»"

#: ../../standalone/drakbackup:1
#, c-format
msgid "         Restore Configuration       "
msgstr "         ¦^¦s²ÕºA³]©w       "

#: ../../Xconfig/test.pm:1
#, fuzzy, c-format
msgid "Is this the correct setting?"
msgstr "³o¼Ë¤l¥¿½T¶Ü¡H"

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"You will now set up your Internet/network connection. If you wish to\n"
"connect your computer to the Internet or to a local network, click \"%s\".\n"
"Mandrake Linux will attempt to autodetect network devices and modems. If\n"
"this detection fails, uncheck the \"%s\" box. You may also choose not to\n"
"configure the network, or to do it later, in which case clicking the \"%s\"\n"
"button will take you to the next step.\n"
"\n"
"When configuring your network, the available connections options are:\n"
"traditional modem, ISDN modem, ADSL connection, cable modem, and finally a\n"
"simple LAN connection (Ethernet).\n"
"\n"
"We will not detail each configuration option - just make sure that you have\n"
"all the parameters, such as IP address, default gateway, DNS servers, etc.\n"
"from your Internet Service Provider or system administrator.\n"
"\n"
"You can consult the ``Starter Guide'' chapter about Internet connections\n"
"for details about the configuration, or simply wait until your system is\n"
"installed and use the program described there to configure your connection."
msgstr ""
"¤U­±­n¶i¦æºô¸ôªº³s½u³]©w¡C­Y¬O±z§Æ±æ¯à°÷¦³ºô¸ô³s½u¥\¯à¡A½ÐÂI¿ï¡y½T©w¡z«ö¶s¡C"
"¤U­±ªº¹Lµ{³£·|¥Ñµ{¦¡¦Û°Ê°»´ú³]©w¡A­Y¬OµLªk¦Û°Ê°»´úªº¸Ü¡A½Ð¤U­±¡y¨Ï¥Î¦Û°Ê°»"
"´ú¡zªº«ö¶s¨ú®ø¤â°Ê³]©w¤§¡C­Y¬O±z¤£­n³]©wºô¸ôªº¸Ü¡A©ÎªÌ¬O§Æ±æ¨Æ«á¦A³]©w¡A½ÐÂI"
"¿ï¡y¨ú®ø¡z«ö¶s§Y¥i¡C\n"
"\n"
"¡yMandrake-Linux¡z¯à°÷¦b¦w¸Ë®É³]©w¦n Internet ³s½u³]©w¡A¨ä¤¤¥]§t¹³¬O¶Ç²Îªº "
"Modem ³s½u¡BIDSN Modem ³s½u¡BADSL¡BCable¥H¤Î¤@¯ëªº Lan ³s½u (Ethernet) ¥\"
"¯à¡C\n"
"\n"
"±µ¤U¨Óµe­±¡A½Ð¨Ì·Óµe­±¬ÛÃö«ü¥Ü¿é¤J¬ÛÃö¸ê®Æ§Y¥i¡C­Y¬O±z¤£½T©w±z©Ò»Ý­n¶ñ¤Jªº¬Û"
"Ãö¶µ¥Ø¡A«Øij½Ð¸ß°Ý±zªººô¸ôºÞ²zªÌ´£¨Ñ¬ÛÃö¸ê°T¡C\n"
"\n"
"¬ÛÃöºô¸ô³]©w¡A±z¤]¥i¥H¨Æ«á¦A³z¹L±±¨î¥xºô¸ô³s½u³]©w¨Ó¶i¦æ¡C³o­Ó¨BÆJ­Y¬O±z¤£·Ç"
"³Æ³]©w¡A¥i¥HÂI¿ï¡y¨ú®ø¡z¶µ¥Ø¡C"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Wizard Configuration"
msgstr "ºëÆF³]©w¼Ò¦¡"

#: ../../modules/interactive.pm:1
#, c-format
msgid "Autoprobe"
msgstr "¦Û°Ê°»´ú"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Backup system files..."
msgstr "³Æ¥÷¨t²ÎÀÉ®×..."

#: ../../install_any.pm:1
#, c-format
msgid "Can't use broadcast with no NIS domain"
msgstr "¨S¦³ NIS °ì¦WµLªk¬d¸ßºô¸ô¸ê°T"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Removing printer \"%s\"..."
msgstr "²¾°£¡u%s¡v¦Lªí¾÷¤¤ ..."

#: ../../standalone/drakfloppy:1
#, c-format
msgid "drakfloppy"
msgstr "drakfloppy »s§@¶}¾÷ºÏ¤ù"

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

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

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

#: ../../standalone/drakbackup:1
#, c-format
msgid " on device: %s"
msgstr " ¦ì©ó¦ì¸m¡G %s"

#: ../../install_interactive.pm:1
#, c-format
msgid "Remove Windows(TM)"
msgstr "²¾°£ Windows(TM)"

#: ../../services.pm:1
#, c-format
msgid "Starts the X Font Server (this is mandatory for XFree to run)."
msgstr ""
"±Ò°Ê X Font Server\n"
"(X Window Àô¹Ò·|»Ý­n¥Î¨ì)"

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

#: ../../standalone/drakfont:1
#, c-format
msgid "Select the font file or directory and click on 'Add'"
msgstr "¿ï¨ú¦rÅéÀɮסA©ÎªÌ¬O©Ò¦b¥Ø¿ý¡AÂI¿ï«á«ö¤U '¥[¤J'"

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

#: ../../standalone/drakbug:1
#, c-format
msgid "Urpmi"
msgstr "Urpmi ®M¥óºÞ²z"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Cron not available yet as non-root"
msgstr "Cron ¨Ï¥Î«D root ¨­¥÷°õ¦æ®ÉµLªk¨Ï¥Î"

#: ../../install_steps_interactive.pm:1 ../../services.pm:1
#: ../../standalone/drakbackup:1
#, c-format
msgid "System"
msgstr "¨t²Î"

#: ../../any.pm:1 ../../help.pm:1
#, fuzzy, c-format
msgid "Do you want to use this feature?"
msgstr "±z­n¨Ï¥Î aboot ¶Ü ?"

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

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
"- Options:\n"
msgstr ""
"\n"
"- ¿ï¶µ:\n"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Password required"
msgstr "»Ý­n¿é¤J±K½X"

#: ../../common.pm:1
#, c-format
msgid "%d minutes"
msgstr "%d ¤ÀÄÁ"

#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "Graphics card: %s"
msgstr "Åã¥Ü¥d: %s"

#: ../../standalone/drakbackup:1
#, c-format
msgid "WebDAV transfer failed!"
msgstr "WebDAV ¶Ç¿é¥¢±Ñ¡I"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "XFree configuration"
msgstr "XFree ³]©w"

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Choose action"
msgstr "¿ï¾Ü°Ê§@"

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

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"Usually, DrakX has no problems detecting the number of buttons on your\n"
"mouse. If it does, it assumes you have a two-button mouse and will\n"
"configure it for third-button emulation. The third-button mouse button of a\n"
"two-button mouse can be ``pressed'' by simultaneously clicking the left and\n"
"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
"a PS/2, serial or USB interface.\n"
"\n"
"If for some reason you wish to specify a different type of mouse, select it\n"
"from the list provided.\n"
"\n"
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct and that the mouse is working correctly. If the mouse is not\n"
"working well, press the space bar or [Return] key to cancel the test and to\n"
"go back to the list of choices.\n"
"\n"
"Wheel mice are occasionally not detected automatically, so you will need to\n"
"select your mouse from a list. Be sure to select the one corresponding to\n"
"the port that your mouse is attached to. After selecting a mouse and\n"
"pressing the \"%s\" button, a mouse image is displayed on-screen. Scroll\n"
"the mouse wheel to ensure that it is activated correctly. Once you see the\n"
"on-screen scroll wheel moving as you scroll your mouse wheel, test the\n"
"buttons and check that the mouse pointer moves on-screen as you move your\n"
"mouse."
msgstr ""
"¹w³]ªº±¡ªp¡A¡yDrakX¡zµ{¦¡·|¹w³]±z¨t²Î¥u¦³¨â­Ó«ö¶s¦¡ªº·Æ¹«¡A¨Ã¦Û°Ê¿ï¾Ü¼ÒÀÀ¤TÁä"
"ªº¥\¯à¡C¦¹¥~¡A¡yDrakX¡z¤]¯à°÷«Ü¦Û°Ê¤Æªº°»´ú¨ì±z¨t²Î¨Ï¥Îªº·Æ¹«¬OÄÝ©ó§Ç¦C¡B"
"¡uPS/2¡v©ÎªÌ¬O¡uUSB¡v³W®æªº·Æ¹«Ãþ«¬¡C\n"
"\n"
"¦pªG¹w³]ªº¶µ¥Ø¤£¬O§A©Ò¹w´Áªº¡A±z¥i¥H¥Ñ¤U­±²M³æ¦Cªí¿ï¾Ü±z©Ò­n¨Ï¥Îªº·Æ¹«Ãþ"
"«¬¡C\n"
"\n"
"·í§A¿ï¾Ü«D¦w¸Ëµ{¦¡¹w³]ªº·Æ¹«¶µ¥Ø®É¡Aµ¥µ¥·|¦³¤@­Ó·Æ¹«´ú¸Õªºµe­±¡A±z¥i¥H¦b¸Ó³B"
"´ú¸Õ·Æ¹«¬O§_¥i¥H¥¿±`¨Ï¥Î¡A¥H«K©ó½T»{±z¿ï¾Üªº¶µ¥Ø¥¿½TµL»~¡C­Y¬O±z¿ï¾Üªº¶µ¥ØµL"
"ªk¥¿±`¤u§@¡A¨Ï¥ÎÁä½L«ö¤UªÅ¥ÕÁä©ÎªÌ¬O¡uEnterÁä¡v¡AµM«á¿ï¾Ü¡y¨ú®ø¡z¦^¨ì·Æ¹«¿ï¾Ü"
"¶µ¥Ø§Y¥i¡C"

#: ../../services.pm:1
#, c-format
msgid "Support the OKI 4w and compatible winprinters."
msgstr "¤ä´© OKI 4w ¥H¤Î WindowsPrinter ¦Lªí¾÷¡C"

#: ../../services.pm:1
#, c-format
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "±Ò°Ê ALSA (Advanced Linux Sound Architecture) ­µ®Ä¨t²Î"

#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
#: ../../modules/interactive.pm:1
#, c-format
msgid "Installing driver for %s card %s"
msgstr "¥¿¦b¦w¸Ë %s ¥d %s ªºÅX°Êµ{¦¡"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Enable Server"
msgstr "¶}±ÒªA°È"

#: ../../keyboard.pm:1
#, c-format
msgid "Ukrainian"
msgstr "¯Q§JÄõ"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
"ºô¸ôªA°Èªº¦s¨ú¥\¯à¨Ã¥¼¶}±Ò¡A¦Ó¥B¤]µLªk±Ò°Ê³o­ÓªA°È¶µ¥Ø¡C\n"
"½ÐÀˬd¤@¤U±zªº³]©w¡A¬Æ¦Ü¥]§t±zªºµwÅé¬O§_³]©w¥¿½TµL»~¡C\n"
"·íÀˬd§¹²¦«á¡A¦A­«·s³]©w»·ºÝ¦C¦Lªº¬ÛÃö¶µ¥Ø¡C"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "½Ð¦b %s ºÏºÐ¾÷¤º´¡¤J¤@±i¥i¶}¾÷ºÏºÐ¤ù"

#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Local network(s)"
msgstr "¤º³¡ºô¸ôIP¦ì§}"

#: ../../help.pm:1
#, fuzzy, c-format
msgid "Remove Windows"
msgstr "²¾°£ Windows(TM)"

#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid ""
"Your %s has been configured.\n"
"You may now scan documents using \"XSane\" from Multimedia/Graphics in the "
"applications menu."
msgstr ""
"±zªº %s ±½´y¾¹¤w¸g³]©w§¹¦¨¤F¡C\n"
"±z¥i¥H°õ¦æ°õ¦æ ``XSane'' µ{¦¡¶i¦æ¤å¥ó±½´yªº¤u§@¡C©ÎªÌ±z¤]¥i¥H¦bµ{¦¡¶°¤º¡A©ó¦h"
"´CÅé/¹Ï§Î¶µ¥Ø¤º§ä¨ì¸Óµ{¦¡¡C"

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

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"After you have configured the general bootloader parameters, the list of\n"
"boot options that will be available at boot time will be displayed.\n"
"\n"
"If there are other operating systems installed on your machine they will\n"
"automatically be added to the boot menu. You can fine-tune the existing\n"
"options by clicking \"%s\" to create a new entry; selecting an entry and\n"
"clicking \"%s\" or \"%s\" to modify or remove it. \"%s\" validates your\n"
"changes.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone who goes to the console and reboots the machine. You can delete the\n"
"corresponding entries for the operating systems to remove them from the\n"
"bootloader menu, but you will need a boot disk in order to boot those other\n"
"operating systems!"
msgstr ""
"LILO (the LInux LOader) »P GRUB ³oÃþ³£¬O Linux ªº¶}¾÷®Ö¤ß¸ü¤Jµ{¦¡¡A³oÃþµ{¦¡¥»"
"¨­°£¤F¯à°÷¥Î¨Ó¸ü¤J Linux ®Ö¤ß¶i¤J Linux ¨t²Î¡A¤]¨ã³Æ¯à°÷¥Î¨Ó±Ò°Ê¨ä¥L§@·~¨t"
"²Î¡A¤ñ¤è¹³¬O DOS¡BWindows µ¥¡C§Ú­Ì±N·|°»´ú±z¥Ø«e¹q¸£¤W¤w¸g¦w¸Ë¦nªº§@·~¨t²Î¡A"
"¨Ã³]©w¦n³oÃþ¶}¾÷µ{¦¡¯à°÷Åý±z©ó¶}¾÷®É¿ï¾Ü­n±Ò°Ê§A§Æ±æ­ni¤Jªº§@·~¨t²ÎÀô¹Ò¡C­Y"
"¬O§A¨t²Î¦³¦w¸Ë¬Y­Ó§@·~¨t²Î¡A¦ý¬O³oÃä¨Ã¨S¦³°»´ú¥X¨Óªº¸Ü¡A±z¥i¥H©ó³oÃä¥Î¤â°Êªº"
"¤è¦¡¨Ó·s¼W¤@­Ó±Ò°Ê¶µ¥Ø¡C\n"
"\n"
"¥Ø«e°»´ú¦C¥Xªº¶µ¥Ø³¡¥÷¡A­Y¬O§A¥´ºâ§R°£¨ä¤¤´X­Ó±Ò°Êªº¶µ¥Øªº¸Ü¡A¨º±z±N·|¥¢¥h¯à"
"°÷¨Ï¥Î¸Ó¶µ¥Ø¶i¦æªº¶}¾÷¥\¯à¡C³o­Ó±¡ªp¤U¡A·í§A§R°£¨ä¤¤¤@­Ó±Ò°Ê¶µ¥Ø«á¡A«áÄò§A¤]"
"³\´N»Ý­n¨Ï¥Î¸Ó§@·~¨t²Îªº¶}¾÷¤ù¤~¯à°÷¶i¤J³o­Ó§@·~¨t²Î¤F!"

#: ../../standalone/drakboot:1
#, c-format
msgid "System mode"
msgstr "¨t²Î¼Ò¦¡"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
"print queue name for the printer you wish to access and any applicable user "
"name and password."
msgstr ""
"¦p­n¨Ï¥Î NetWare ¦Lªí¾÷¡A±z¥²¶·­n´£¨Ñ NetWare\n"
"¦C¦L¦øªA¾¹ªº¥D¾÷¦WºÙ (ª`·N! ³o­Ó¦WºÙ»P TCP/IP \n"
"ªº¥D¾÷¦WºÙ¥i¯à¨Ã¤£¬Û¦PAÁÙ­n¦³¤À¨É¥X¨Óªº¦C¦L\n"
"¦î¦C¦WºÙ¡A¥H¤Î¾A·íªº¨Ï¥ÎªÌ±b¸¹»P±K½X¡C"

#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "Netmask:"
msgstr "ºô¸ô¾B¸n"

#: ../../any.pm:1
#, c-format
msgid "Append"
msgstr "ªþ¥[°Ñ¼Æ"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr "§ó·s¦Lªí¾÷²M³æ (­«·s´M§ä»·ºÝ¥i¥Îªº©Ò¦³ CUPS ¦Lªí¾÷)"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"When this option is turned on, on every startup of CUPS it is automatically "
"made sure that\n"
"\n"
"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
"\n"
"- if /etc/cups/cupsd.conf is missing, it will be created\n"
"\n"
"- when printer information is broadcasted, it does not contain \"localhost\" "
"as the server name.\n"
"\n"
"If some of these measures lead to problems for you, turn this option off, "
"but then you have to take care of these points."
msgstr ""

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

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
"(this is meant for installing on another box).\n"
"\n"
"You may prefer to replay the installation.\n"
msgstr ""
"¦Û°Ê¦w¸Ë¥\¯à¡A¥i¥H§¹¥þº¡¨¬±z§Æ±æ¯à°÷¦Û°Ê¤Æªº¦b¤@¥x\n"
"¹q¸£¤Wi¦æ¨t²Î¦w¸Ëªº°Ê§@¡C\n"
"\n"
"³o­Ó¥\¯à¡A±z´N¥i¥Hi¦æ©Ò¿×ªº¦Û°Ê¤Æ¶i¦æ¦w¸Ëªº¾÷¨î¡C\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Network printer \"%s\", port %s"
msgstr "ºô¸ô¦Lªí¾÷ \"%s\"¡A³s±µ°ð %s"

#: ../../standalone/drakgw:1
#, c-format
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr "½Ð¿ï¾Ü­n³s½u¨ì°Ï°ìºô¸ô¤ºªººô¸ô¥d¡C"

#: ../../standalone/drakbackup:1
#, c-format
msgid "OK to restore the other files."
msgstr "¿ï¨ú OK ¨Ó¦^¦s¨ä¥LÀɮסC"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Please choose your keyboard layout."
msgstr "½Ð¿ï¨úÁä½L±Æ¦Cªº®æ¦¡¬O¨º¤@ºØ¡C"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer Device URI"
msgstr "¦Lªí¸Ë¸mªº URI"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Not erasable media!"
msgstr "¤£¬O¥i©Ù¼gªº´C¤¶¸Ë¸m¡I"

#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Terminal-based"
msgstr "Terminal-based"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "¦b %s ¦w¥þµ¥¯ÅÀô¹Ò¤U¥¿¦b¦w¸Ë¦C¦LªA°È¨t²Î¶µ¥Ø"

#: ../../any.pm:1
#, c-format
msgid "The user name is too long"
msgstr "³o­Ó¨Ï¥ÎªÌ¦WºÙ¤Óªø¤F"

#: ../../any.pm:1
#, c-format
msgid "Other OS (windows...)"
msgstr "¨ä¥L§@·~¨t²Î (windows...)"

#: ../../standalone/drakbackup:1
#, c-format
msgid "WebDAV remote site already in sync!"
msgstr "»·ºÝªº WebDAV ¯¸¥x¤w¸g¦bi¦æ¦P¨B¤F¡I"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Reading printer database..."
msgstr "¥¿¦bŪ¨ú¦Lªí¾÷¸ê®Æ ..."

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Generate auto install floppy"
msgstr "»s§@¦Û°Ê¦w¸ËºÏ¤ù"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
"\t\t ¨Ï¥ÎªÌ¦WºÙ: %s\n"
"\t\t ¦ì©ó¸ô®|: %s \n"

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

#: ../../harddrake/sound.pm:1
#, fuzzy, c-format
msgid "No open source driver"
msgstr "µL¤wª¾ªºÅX°Êµ{¦¡"

#: ../../security/level.pm:1
#, c-format
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
msgstr ""
"»P¤W¤@­Ó¼Ò¦¡¬Û¦P¡A¤£¹L¾ã­Ó¨t²Î´X¥G³£¬O«Ê³¬ªº¡C¨t²Î¾ã­Ó¦w¥þ³]©w¾÷¨î³£¬O¦b³ÌÄY"
"±Kªºª¬ºA¡C"

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

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

#: ../../network/isdn.pm:1
#, c-format
msgid "European protocol (EDSS1)"
msgstr "Europe ³q°T¨ó©w (EDSS1)"

#: ../../any.pm:1
#, c-format
msgid "Video mode"
msgstr "Åã¥Ü¼Ò¦¡"

#: ../../standalone/logdrake:1
#, c-format
msgid "Please enter your email address below "
msgstr "½Ð©ó¤U¤è¿é¤J§Aªº e-mail"

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

#: ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Network Monitoring"
msgstr "ºô¸ô³]©w"

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

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "New size in MB: "
msgstr "·s¤j¤p (MBG "

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Partition table type: %s\n"
msgstr "µwºÐ¤À³Îªí§Î¦¡¡G %s\n"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Authentication Windows Domain"
msgstr "Windows PDC »{ÃÒ"

#: ../../keyboard.pm:1
#, c-format
msgid "US keyboard"
msgstr "¬ü¦¡Áä½L"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Buttons emulation"
msgstr "«öÁä¼ÒÀÀ"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ", network printer \"%s\", port %s"
msgstr "¡Aºô¸ô¦Lªí¾÷ \"%s\"¡A³s±µ°ð %s"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
"\n"
"Drakbackup ¨Ï¥ÎºÏ±a¾÷¤è¦¡¶i¦æ³B²z¡G\n"
"\n"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
"\n"
"(!) FTP ³sµ²¿ù»~¡G¥Ñ©ó FTP ³s½u¿ù»~¡A³Æ¥÷ÀÉ®×±N¨S³z¹L FTP ³Æ¥÷¶Ç°e¥X¥h¡C\n"

#: ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Sending Speed:"
msgstr "¥¿¦b°e¥XÀÉ®×..."

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

#: ../../standalone/logdrake:1
#, c-format
msgid "Mail alert configuration"
msgstr "l¥óĵ¥Ü³qª¾²ÕºA³]©w"

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

#: ../../keyboard.pm:1
#, c-format
msgid "Bosnian"
msgstr "·R¨F¥§¨È"

#: ../../standalone/drakbug:1
#, c-format
msgid "Release: "
msgstr "µo¦æ¡G "

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Connection speed"
msgstr "³s½u³t«×"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
"½Ð¿é¤J±zªº¿N¿ý¾¹¸Ë¸m¦WºÙ\n"
"¤ñ¤è¹³¬O¡G 0,1,0"

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

#: ../../services.pm:1
#, c-format
msgid "Database Server"
msgstr "¸ê®Æ®w³nÅé"

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

#: ../../raid.pm:1
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "µLªk¦b _¤w®æ¦¡_ ¤ÆªººÏºÐ°}¦C md%d ¤¤¥[¤J¤À³Î°Ï"

#: ../../Xconfig/card.pm:1
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
"±zªºÅã¥Ü¥d·f°t XFree %s ¤~¯à°÷±Ò¥Î 3D µwÅé¥[³t¥\¯à¡A¦ý¬O½Ðª`·N¡A\n"
"³o¬O¹êÅç©Ê½èªº¤ä´©¶µ¥Ø¡A¦Ó¥B¤W¥i¯à·|¦³¤£¹w´Áªº±¡ªp¡C±zªºÅã¥Ü¥d\n"
"·f°t XFree %s ¦b 2D Åã¥Ü¤Wªº¤ä´©«×À³¸Ó·|¤ñ¸û¨}¦n¡C"

#: ../../standalone/draksec:1
#, c-format
msgid "Please wait, setting security options..."
msgstr "½Ðµy«á¡A³]©w¦w¥þ¿ï¶µ..."

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

#: ../../standalone/drakboot:1
#, c-format
msgid "Launch the graphical environment when your system starts"
msgstr "¶}¾÷®É±Ò°Ê X Window ¹Ï§Î§@·~Àô¹Ò"

#: ../../standalone/drakbackup:1
#, c-format
msgid "hourly"
msgstr "¨C¤p®É"

#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Right Shift key"
msgstr "¥k¤è Alt «öÁä"

#: ../../standalone/drakbackup:1
#, c-format
msgid "          Successfuly Restored on %s       "
msgstr "          ¦¨¥\¦^¦s¨ì %s                    "

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

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

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

#: ../../keyboard.pm:1
#, c-format
msgid "Spanish"
msgstr "¦è¯Z¤ú"

#: ../../services.pm:1
#, c-format
msgid "Start"
msgstr "±Ò°Ê"

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
"Activate/Disable ethernet cards promiscuity check."
msgstr ""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Configuring applications..."
msgstr "¥¿¦b³]©wÀ³¥Îµ{¦¡..."

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard will help you to install your printer(s) connected to this "
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"Please plug in and turn on all printers connected to this machine so that it/"
"they can be auto-detected. Also your network printer(s) and your Windows "
"machines must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
"detection of only the printers connected to this machine. So turn off the "
"auto-detection of network and/or Windows-hosted printers when you don't need "
"it.\n"
"\n"
" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
"to set up your printer(s) now."
msgstr ""
"\n"
"Åwªï¨Ó¨ì¦Lªí¾÷³]©wºëÆF\n"
"\n"
"±µ¤U¨Ó³]©wºëÆF±N·|¤Þ¾É±z§¹¦¨¦Lªí¾÷ªº³]©w¡A¥]§t¦ì©ó¥»¾÷ªº¦Lªí¾÷¥H¤Î»·ºÝºô¸ô¦L"
"ªí¾÷¡C\n"
"\n"
"­Y¬O±z­n³]©wªº¦Lªí¾÷¬Oª½±µ¦w¸Ë¦b§A¾÷¾¹¤Wªº¡A½Ð¥ý½T»{§Aªº½u¸ô¦³¦w´¡¥¿½T¡A¹q·½"
"¨Ã¥B¤w¸g¶}±Ò¡A¥H«K©ó¯à°÷¦Û°Ê°»´ú§A¦Lªí¾÷ªºÃþ«¬¡C­Y¬O±z­n¨Ï¥Îªº¬Oºô¸ô¦Lªí¾÷¡A"
"½Ð½T»{¸Ó¦Lªí¾÷ªº¹q·½¤]¬O³B©ó¶}±Òª¬ºA¡A¦Ó¥B¹ï¤è¾÷¾¹»Pºô¸ô¯à°÷¥¿½T³s³q¡C\n"
"\n"
"½Ðª`·N¡A¦Û°Ê°»´ú¦Lªí¾÷ªº¥\¯à¾A¥Î©ó¥»¾÷¦Lªí¾÷ªº±¡ªp¡A­Y¬O§A­n¨Ï¥Îªº¬Oºô¸ô¦Lªí"
"¾÷¡A³q±`§A»Ý­n§â¦Û°Ê°»´ú¥\¯àÃö³¬¡C\n"
"\n"
"·í§A½T»{¨S°ÝÃD¬O¡AÂI¿ï¡u¤U¤@¨B¡v¡A©ÎªÌ¬OÂI¿ï¡u¨ú®ø¡v©ñ±ó³]©w¡C"

#: ../../network/netconnect.pm:1
#, c-format
msgid "Normal modem connection"
msgstr "¤@¯ë modem ³s½u¤è¦¡"

#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
#, c-format
msgid "File Selection"
msgstr "Àɮ׿ï¨ú"

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

#: ../../standalone/harddrake2:1
#, c-format
msgid "Run config tool"
msgstr "°õ¦æ³]©wµ{¦¡"

#: ../../any.pm:1
#, c-format
msgid "Bootloader installation"
msgstr "¦w¸Ë¶}¾÷µ{¦¡"

#: ../../install_interactive.pm:1
#, c-format
msgid "Root partition size in MB: "
msgstr "®Ú¥Ø¿ý¤À³Î°Ïªº¤j¤p (MBG "

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "This is a mandatory package, it can't be unselected"
msgstr "³o¬O¤@­Ó¥²­nªº®M¥ó¡A±z¤£¥i¥H¿ï¾Ü¤£­n¦w¸Ë³o­Ó®M¥ó"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Etherboot ISO image is %s"
msgstr "ºô¸ô¶}¾÷ªº¬M¹³Àɮ׬O %s"

#: ../../services.pm:1
#, c-format
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
msgstr ""
"named (BIND) ¾A¥Î¨Ó´£¨Ñ Domain Name Server (DNS) ªA°Èªºµ{¦¡¡A\n"
"¥Î¨Ó¸ÑªR¥D¾÷¦WºÙ»P IP ¹ïÀ³ªºÃö«Y¡C"

#: ../../standalone/drakconnect:1
#, c-format
msgid "Disconnect..."
msgstr "Â_½u..."

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

#: ../../standalone/drakbug:1
#, c-format
msgid "Report"
msgstr "¦^³ø"

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

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "level"
msgstr "¶¥¼h"

#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
"technical expert."
msgstr "¦³¥ô¦ó°ÝÃD³£¥i¥H³z¹L MandrakeSoft ªº§Þ³NªA°È±o¨ì§¹³Æªº¸Ñ¨M¡C"

#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Package Group Selection"
msgstr "¨Ì¸s²Õ¿ï¨ú­n¦w¸Ëªº®M¥ó"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr "ºô¸ô¦^¦s¨Ï¥Îªº¨ó©w¡G%s"

#: ../../modules/interactive.pm:1
#, c-format
msgid "You can configure each parameter of the module here."
msgstr "±z¥i¥H¦b³oÃä¿é¤J¸Ó¼Ò²Õªº¬ÛÃö°Ñ¼Æ¡C"

#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "Choose the resolution and the color depth"
msgstr "¿ï¨ú¸ÑªR«×¥H¤ÎÃC¦â¼Æ"

#: ../../standalone/mousedrake:1
#, c-format
msgid "Emulate third button?"
msgstr "¼ÒÀÀ¤TÁä·Æ¹«ªº¥\¯à ¡H"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
"±zµLªk«Ø¥ß·sªº¤À³Î°Ï\n"
"(¦]¬°¨t²Î¤w¸g¨S¦³¥i¨Ñ¨Ï¥Îªº¥D¤À³Î°Ï¨Ñ°t¸m¤FC\n"
"±z»Ý­n²¾°£¤@­Ó¥D¤À³Î°Ï¡A¥H«K©ó°t¸m©µ¦ù¤À³Î°Ï¹º¤À¨Ï¥Î¡C"

#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Mount"
msgstr "±¾¸ü"

#: ../../standalone/drakautoinst:1
#, c-format
msgid "Creating auto install floppy"
msgstr "¥¿¦b»s§@¦Û°Ê¦w¸ËºÏ¤ù"

#: ../../steps.pm:1
#, fuzzy, c-format
msgid "Install updates"
msgstr "¦w¸Ë¨t²Î§ó·s"

#: ../../standalone/draksplash:1
#, c-format
msgid "text box height"
msgstr "¤å¦r¤è¶ô°ª«×                                  "

#: ../../standalone/drakconnect:1
#, c-format
msgid "State"
msgstr "ª¬ºA"

#: ../../standalone/drakfloppy:1
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "½Ð½T©w¸Ë¸m %s ¤º¤w©ñ¤JºÏºÐ¤ù"

#: ../../any.pm:1
#, c-format
msgid "Enable multiple profiles"
msgstr "¨Ï¥Î¦h­«³]©wÀÉ"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr "³o­Ó¿ï¶µ¯à°÷³Æ¥÷»PÁÙ­ì±z¨t²Îªº /etc ¥Ø¿ý¡C\n"

#: ../../printer/main.pm:1
#, c-format
msgid "Local printer"
msgstr "¥»¾÷¦Lªí¾÷"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Files Restored..."
msgstr "­n¦^¦sªºÀÉ®×..."

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Package selection"
msgstr "®M¥ó¿ï¨ú"

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

#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the Network that you use "
"for your local network; I will not reconfigure it and I will not touch your "
"DHCP server configuration.\n"
"\n"
"The default DNS entry is the Caching Nameserver configured on the firewall. "
"You can replace that with your ISP DNS IP, for example.\n"
"\t\t      \n"
"Otherwise, I can reconfigure your interface and (re)configure a DHCP server "
"for you.\n"
"\n"
msgstr ""
"³]©wµ{¦¡¤w¸g¬ö¿ý¤F¥Ø«eªº²ÕºA³]©w¸ê°T¡A¨Ã°²³]±z¤w¸g³]©w¦n¤F\n"
"DHCP ªA°È¡F±µ¤U¨Ó½Ð½T»{³]©wµ{¦¡¯à°÷¥¿½T¨úªº±z°Ï°ìºô¸ô¸ê°T¡F\n"
"¦pªG³]©wµ{¦¡µLªk¥¿½T¨ú±o DHCP ªA°È²ÕºAªº¸Ü¡A¬ÛÃö³]©w±N¤£·|Ä~Äò¡C\n"
"\n"
"¨S°ÝÃDªº¸Ü¡A¦w¸Ëµ{¦¡±N·|­«·s³]©w±zªººô¸ô¤¶­±¡A³]©w¥Ñ DHCP ¥D¾÷\n"
"¨ú±oIP¸ê°T¡C\n"
"\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
"printer: /dev/usb/lp1, ...)."
msgstr ""
"µLªk§ä¨ì¥»¦aºÝ¦Lªí¾÷! ½Ð¤â°Ê«ü©w¦Lªí¾÷ªº©Ò¦b¸Ë¸m¦WºÙ¡C\n"
"(¨Ã¦C°ð¡G/dev/lp0¡A/dev/lp1¡A... ¬Û·í©ó LPT1ALPT2:...¡A\n"
"²Ä¤@¥x USB ¦Lªí¾÷¬O¡G/dev/usb/lp0¡A²Ä¤G¥x¡G/dev/usb/lp1C"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "All primary partitions are used"
msgstr "¥D¤À³Î°Ï¼Æ¥Ø¤w¸gº¡¤F"

#: ../../network/netconnect.pm:1
#, c-format
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
"¦b§¹¦¨³o­Ó¶µ¥Ø«á¡A«Øij±z­«·s±Ò°Ê±zªº X Àô¹Ò¡A\n"
"¥HÁקK¦]¬°±z½Õ¾ã¤F¥D¾÷¦WºÙ³y¦¨ X ±Ò°Ê¤Wªº¤@¨Ç°ÝÃD¡C"

#: ../../services.pm:1
#, c-format
msgid "Automatic detection and configuration of hardware at boot."
msgstr "¨t²Î¶}¾÷®É¯à°÷¦Û°Ê°»´ú¶gÃä¸Ë¸mªºª¬ºA¨Ã¥B³]©w¡C"

#: ../../standalone/drakpxe:1
#, fuzzy, c-format
msgid "Installation Server Configuration"
msgstr "dhcpd ªA°È¥D¾÷³]©w"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Configuring IDE"
msgstr "³]©w IDE ¸Ë¸m"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Network functionality not configured"
msgstr "¥Ø«eºô¸ô¥\¯à©|¥¼³]©w"

#: ../../standalone/harddrake2:1
#, c-format
msgid "Configure module"
msgstr "³]©w¼Ò²Õ"

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

#: ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Disconnecting from the Internet "
msgstr "³s½u¨ì Internet"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr "±z»Ý­n­«·s¶}¾÷¥H«K©óÅý²§°Êªº³]©w¥Í®Ä"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Provider phone number"
msgstr "ISP ¹q¸Ü¸¹½X"

#: ../../printer/main.pm:1
#, fuzzy, c-format
msgid "Host %s"
msgstr "¥D¾÷¦WºÙ"

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

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

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (length, ndigits=0, nupper=0)\n"
"\n"
"Set the password minimum length and minimum number of digit and minimum "
"number of capitalized letters."
msgstr ""

#: ../../any.pm:1
#, c-format
msgid "Second floppy drive"
msgstr "²Ä¤G¥x³nºÐ"

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

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

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
msgstr ""
"´¡¤J³nºÐ¤ù\n"
"©Ò¦³¦b³o¤ù³nºÐ¤¤ªº¸ê®Æ³£±N³Q²M°£"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Size: %s"
msgstr "¤j¤p¡G %s"

#: ../../keyboard.pm:1
#, c-format
msgid "Control and Shift keys simultaneously"
msgstr "Ctrl »P Shift ²Õ¦X«öÁä"

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

#: ../../standalone/drakbackup:1
#, c-format
msgid "View Backup Configuration."
msgstr "À˵ø³Æ¥÷²ÕºA³]©w"

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

#. -PO: keep this short or else the buttons will not fit in the window
#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "No password"
msgstr "¨S¦³±K½X"

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

#: ../../install_interactive.pm:1
#, c-format
msgid "There is no existing partition to use"
msgstr "¨S¦³¤w¸g¦s¦bªº¤À³Î°Ï¥i¨Ñ¨Ï¥Î"

#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid ""
"The following scanners\n"
"\n"
"%s\n"
"are available on your system.\n"
msgstr ""
"\n"
"¥Ø«e¦³¤@¥x¥¼ª¾Ãþ«¬ªº¦Lªí¾÷¦w¸Ë¦b±z¥»¾÷¤W¡C"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
"of the printer and optionally the port number (default is 9100). On HP "
"JetDirect servers the port number is usually 9100, on other servers it can "
"vary. See the manual of your hardware."
msgstr ""
"­n³z¹LTCP/socket³oÃþ«¬ªº¦Lªí¾÷¶i¦æ¦C¦L¡A±z»Ý­n\n"
"´£¨Ñ¸Ó¦Lªí¾÷ªº¥D¾÷¦WºÙ¡A¦P®É¤]¥i¯à»Ý­n¿ï¾Ü©Ê¿é¤J\n"
"©Ò¦bPortªº¦ì§}¡C¦b¤j³¡¤ÀªºHP-JetDirect¦Lªí¾÷\n"
"¦øªA¥D¾÷©Ò¨Ï¥ÎªºPort¦h¥b¬°9100¡A¨ä¾lÃþ«¬ªº¦Lªí¾÷\n"
"´N¤£¤@©w¬°³o­Ó¼Æ­È¡C«Øij±z¥ý¾\Ū¦Lªí¾÷©Ò´£¨Ñªº\n"
"¤â¥U¡A´M§ä¥X§A¥Ø«e¨Ï¥Î³o´Ú¦Lªí¾÷ªº¬ÛÃöµwÅé¸ê°T¡C"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Hard drive information"
msgstr "µwºÐ¸ê°T"

#: ../../keyboard.pm:1
#, c-format
msgid "Russian"
msgstr "«Xù´µ"

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Jordan"
msgstr "¬ù¥¹"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Hide files"
msgstr "ÁôÂÃÀÉ®×"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Auto-detect printers connected to this machine"
msgstr "¦Û°Ê°»´ú¥»¾÷¦Lªí¾÷"

#: ../../standalone/drakxtv:1
#, c-format
msgid ""
"XawTV isn't installed!\n"
"\n"
"\n"
"If you do have a TV card but DrakX has neither detected it (no bttv nor "
"saa7134\n"
"module in \"/etc/modules\") nor installed xawtv, please send the\n"
"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
"with subject \"undetected TV card\".\n"
"\n"
"\n"
"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
"±zªº¨t²Î¨Ã¥¼¦w¸Ë XawTV µ{¦¡®M¥ó¡I\n"
"\n"
"\n"
"¦pªG±z¨t²Î¦³¦w¸Ë¤W¹qµø¥d¡A¦ý¬O DrakX ¨Ã¥¼°»´ú¨ìªº¸Ü\n"
"(¤@¯ë¥i¥H¥Ñ/etc/modules Àɮפº¬O§_¥]§t bttv ©Î¬O\n"
"saa7134 ¶µ¥Ø§P©w¤§)¡A½Ð°õ¦æ\"lspcidrake -v -f\"\n"
"µM«á±N°õ¦æµ²ªG¥H¼ÐÃD¬° \"Undeleted TV card\" ªº«H¥ó±H¨ì\n"
"\"install\\@mandrakesoft.com\"\n"
"¡C\n"
"\n"
"±z²{¦b¥i¥H¶}±Ò¤@­Ó²×ºÝ¾÷µ{¦¡¡A©ÎªÌ¬O¦b¤å¦r¤¶­±¤U¡A\n"
"¥Î root Åv­­¨­¥÷°õ¦æ \"urpmi xawtv\" ±N¸Ó®M¥ó¦w¸Ë¤W¡C"

#: ../../any.pm:1
#, c-format
msgid "Sorry, no floppy drive available"
msgstr "¤£¦n·N«ä¡A§ä¤£¨ì³nºÐ¾÷"

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

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
"protocol and set up printing from this machine with the \"%s\" connection "
"type in Printerdrake.\n"
"\n"
msgstr ""
"½Ð³]©w¦n±zªº Windows ¥D¾÷ªºªA°È¡A½T»{¦Lªí¾÷¯à°÷¦b IPP ³q°T¨ó©w¤W¥¿±`¹B§@¡A¥H"
"«K©ó¦b PrinterDrake µ{¦¡¤º¨Ï¥Î \"%s\" ³s½u¯à°÷¦s¨ú¨ì¡C\n"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Bad package"
msgstr "·´·lªº®M¥ó"

#: ../../share/advertising/07-server.pl:1
#, c-format
msgid ""
"Transform your computer into a powerful Linux server: Web server, mail, "
"firewall, router, file and print server (etc.) are just a few clicks away!"
msgstr ""
"³z¹L Mandrake ´£¨Ñªº³]©w¾÷¨î¡AÅý±zªº¾÷¾¹±N¨ã³Æ±j¤jªº¦øªA¾¹¥\¯à¡C"
"¨ä¤¤¹³¬O: Web Server¡BMail Server¡BFirewall¡BRouter¡BPrinter..."

#: ../../security/level.pm:1
#, c-format
msgid "DrakSec Basic Options"
msgstr "DrakSec °ò¥»°Ñ¼Æ¿ï¶µ"

#: ../../standalone/draksound:1
#, c-format
msgid ""
"\n"
"\n"
"\n"
"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
"program.  Just type \"sndconfig\" in a console."
msgstr ""
"\n"
"\n"
"\n"
"½Ðª`·N¡A­Y¬O±z¨Ï¥Îªº­µ®Ä¥d¬O ISA PnP Ãþ«¬ªº¸Ü¡A±z»Ý­n¨Ï¥Î sndconfig \n"
"³o­Óµ{¦¡¨Ó³]©w¡C½Ð¦b console ¼Ò¦¡¿é¤J°õ¦æ \"sndconfig\" §Y¥i¡C"

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

#: ../../standalone/scannerdrake:1
#, c-format
msgid "choose device"
msgstr "¿ï¨ú¸Ë¸m"

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

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Remove from LVM"
msgstr "¥ÑºÏºÐ°}¦C¤¤²¾°£"

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

#: ../../keyboard.pm:1
#, c-format
msgid "German"
msgstr "¼w°ê"

#: ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../interactive.pm:1
#: ../../my_gtk.pm:1 ../../ugtk2.pm:1 ../../interactive/newt.pm:1
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Next ->"
msgstr "¤U¤@¨B ->"

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

#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid ""
"\n"
"Chances are, this partition is\n"
"a Driver partition. You should\n"
"probably leave it alone.\n"
msgstr ""
"\n"
"Chances areo­Ó¤À³Î°Ï¬Ý°_¨Ó¦ü¥G\n"
"¬O³z¹LÅX°Êµ{¦¡²£¥Í¥X¨Óªº¡C©Ò¥H\n"
"±zÀ³¸Ó¤£­n¥h²§°Ê³o­Ó¤À³Î°Ï¸ê®Æ¡C\n"

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

#: ../../Xconfig/monitor.pm:1
#, c-format
msgid "Horizontal refresh rate"
msgstr "¤ô¥­§ó·sÀW²v"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
"¦]¬°³o­Ó¤À³Î°Ï³Q¥Î§@ loop back ¨Ï¥Î¡A©Ò¥HµLªk¸Ñ°£\n"
"³o­Ó±¾¸üÂI¡F½Ð¥ý¨ú®ø loopback ªº³]©w¡C"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network is accessable after booting your "
"system and correct the configuration using the Mandrake Control Center, "
"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
"printer, also using the Mandrake Control Center, section \"Hardware\"/"
"\"Printer\""
msgstr ""
"¦b¨t²Î¾ã­Ó¦w¸Ë¹Lµ{¤¤¡A¨t²Îªººô¸ôªA°È¨Ã¥¼±Ò°Ê¡C«Øij±z¥i¥H¦b\n"
"¾ã­Ó¦w¸Ë§¹¦¨¡A­«·s¶}¾÷¶i¤J¨t²Î«á¡A³z¹L Mandrake ±±¨î¥xµ{¦¡\n"
"¿ï¾Ü¡yºô¸ô¡z¡y³s½u¡z¶µ¥Ø¶i¦æ³]©w¡C¦¹¥~¡A«áÄò¹³¬O¦Lªí¾÷\n"
"ªº³]©w¡A±z¤]¥i¥H³z¹L Mandrake ±±¨î¥xµ{¦¡¡A¦b¡yµwÅé¡z¤ºªº\n"
"¡y¦Lªí¾÷¡z¶µ¥Ø¨Ó¶i¦æ³]©w"

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

#: ../../Xconfig/various.pm:1
#, c-format
msgid "What norm is your TV using?"
msgstr ""

#: ../../standalone/drakconnect:1
#, c-format
msgid "Type:"
msgstr "®æ¦¡¡G"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Share name"
msgstr "¦Lªí¾÷¦WºÙ"

#: ../../standalone/drakgw:1
#, c-format
msgid "enable"
msgstr "¶}±Ò"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "³sµ²¨ì Mirror Linux Web Site ¬d¸ß¥i¥Îªº¬M®g¯¸¥x"

#: ../../network/netconnect.pm:1
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
"\n"
"%s"
msgstr ""
"­«·s±Ò°Êºô¸ô®Éµo¥Í¤F¤U­±ªº¿ù»~¡G\n"
"\n"
"%s"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Remove the loopback file?"
msgstr "²¾°£Â¶¦^¸Ë¸m (loopback) ÀɮסH"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Selected size is larger than available space"
msgstr "©Ò¿ï¨ú¬ö¿ýªº¶µ¥Ø¶W¹L¥i¥ÎªººÏºÐªÅ¶¡"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "NCP server name missing!"
msgstr "NCP ¦øªA¾¹¦WºÙ¨S«ü©w!"

#: ../../any.pm:1
#, fuzzy, c-format
msgid "Please choose your country."
msgstr "½Ð¿ï¨ú·Æ¹«ªº§Î¦¡¡C"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Hard Disk Backup files..."
msgstr "µwºÐ³Æ¥÷ÀÉ®×..."

#: ../../keyboard.pm:1
#, c-format
msgid "Laotian"
msgstr "¦Ñ¾â°ê"

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

#: ../../services.pm:1
#, c-format
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
msgstr ""
"rstat ³q°T¨ó©w¡A¯à°÷Åý¦ì©óºô¸ô¤Wªº¨Ï¥ÎªÌ±µ¦¬¨ìºô¸ô¤W¥ô¦ó¤@¥x\n"
"¥D¾÷ªº¹B§@®Ä¯à¸ê°T¡C"

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

#: ../../harddrake/data.pm:1
#, fuzzy, c-format
msgid "Scanner"
msgstr "¿ï¨ú±zªº±½´y¾¹"

#: ../../Xconfig/test.pm:1
#, c-format
msgid "Warning: testing this graphic card may freeze your computer"
msgstr "ĵ§i¡G¦b³o±i¥d¤W­±§@Åã¥Ü´ú¸Õ®É¥i¯à·|Åý±z¨t²Î°±¤î¦^À³"

#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Bad Ip"
msgstr "¤¶­±¥d IO"

#: ../../any.pm:1
#, c-format
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "¨Ï¥ÎªÌ±b¸¹¥u¯à§t¦³¤p¼g­^¤å¦r¥À¡B¼Æ¦r¡B `-' ©Î `_'"

#: ../../standalone/drakbug:1
#, c-format
msgid "Menudrake"
msgstr "Mandrake ¿ï³æ½s¿è¾¹"

#: ../../security/level.pm:1
#, c-format
msgid "Welcome To Crackers"
msgstr "¦H"

#: ../../modules/interactive.pm:1
#, c-format
msgid "Module options:"
msgstr "¼Ò²Õ°Ñ¼Æ¡G"

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

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Go on without configuring the network"
msgstr "²¤¹Lºô¸ô³]©w¶µ¥ØÄ~Äò¶i¦æ¤U­±ªº¨BÆJ"

#: ../../network/isdn.pm:1
#, c-format
msgid "Abort"
msgstr "©ñ±ó"

#: ../../standalone/drakbackup:1
#, c-format
msgid "No password prompt on %s at port %s"
msgstr "%s µL±K½X¦^À³ (¦ì©ó³s±µ°ð %s)"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Please check if you want to use the non-rewinding device."
msgstr "¦pªG±z­n¨Ï¥Î non-rewinding ªº¸Ë¸m¡A½Ð¿ï¨ú¸Ó¶µ¥Ø¡C"

#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Usage of remote scanners"
msgstr "¨Ï¥Î¥¼¥Î¨ìªºªÅ¶¡"

#: ../../standalone/drakbackup:1
#, c-format
msgid "\t-CDROM.\n"
msgstr "\t-¥úºÐ¾÷\n"

#: ../../install_interactive.pm:1
#, c-format
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
"installation."
msgstr "±zªº Windows ¤À³Î°ÏÀɮרt²Î¦³ÄY­«ªºÂ_Â÷±¡ªp¡A½Ð¥ý­«²Õ°Ê§@¦Ai¦æ"

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

#: ../../standalone/drakbackup:1
#, c-format
msgid "Hard Disk Backup Progress..."
msgstr "µwºÐ³Æ¥÷¶i«×..."

#: ../../standalone/drakfloppy:1
#, c-format
msgid "Unable to fork: %s"
msgstr "µLªk«Ø¥ß¥t¤@¦æµ{¡G%s"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Type: "
msgstr "®æ¦¡¡G "

#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "<-- Edit Client"
msgstr "<-- §R°£¥Î¤áºÝ"

#: ../../standalone/drakfont:1
#, c-format
msgid "no fonts found"
msgstr "§ä¤£¨ì¦r«¬ÀÉ"

#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#: ../../harddrake/data.pm:1
#, c-format
msgid "Mouse"
msgstr "·Æ¹«"

#: ../../bootloader.pm:1
#, c-format
msgid "not enough room in /boot"
msgstr "/boot ¨S¦³¨¬°÷ªºªÅ¶¡"

#: ../../harddrake/sound.pm:1
#, c-format
msgid "Choosing an arbitratry driver"
msgstr ""

#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
msgid "Host name"
msgstr "¥D¾÷¦WºÙ"

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

#: ../../standalone/draksplash:1
#, c-format
msgid "the color of the progress bar"
msgstr "   i«×Barªº¦â±m                                 "

#: ../../standalone/drakfont:1
#, c-format
msgid "Suppress Fonts Files"
msgstr "¤£§R°£¦r«¬ÀÉ"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Add to RAID"
msgstr "¥[¤JºÏºÐ°}¦C"

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"You can add additional entries in yaboot for other operating systems,\n"
"alternate kernels, or for an emergency boot image.\n"
"\n"
"For other OSs, the entry consists only of a label and the \"root\"\n"
"partition.\n"
"\n"
"For Linux, there are a few possible options:\n"
"\n"
" * Label: this is the name you will have to type at the yaboot prompt to\n"
"select this boot option.\n"
"\n"
" * Image: this is the name of the kernel to boot. Typically, vmlinux or a\n"
"variation of vmlinux with an extension.\n"
"\n"
" * Root: the \"root\" device or ``/'' for your Linux installation.\n"
"\n"
" * Append: on Apple hardware, the kernel append option is often used to\n"
"assist in initializing video hardware, or to enable keyboard mouse button\n"
"emulation for the missing 2nd and 3rd mouse buttons on a stock Apple mouse.\n"
"The following are some examples:\n"
"\n"
"         video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
"         video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
"\n"
" * Initrd: this option can be used either to load initial modules before\n"
"the boot device is available, or to load a ramdisk image for an emergency\n"
"boot situation.\n"
"\n"
" * Initrd-size: the default ramdisk size is generally 4096 Kbytes. If you\n"
"need to allocate a large ramdisk, this option can be used to specify a\n"
"ramdisk larger than the default.\n"
"\n"
" * Read-write: normally the \"root\" partition is initially mounted as\n"
"read-only, to allow a file system check before the system becomes ``live''.\n"
"You can override the default with this option.\n"
"\n"
" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
"problematic, you can select this option to boot in ``novideo'' mode, with\n"
"native frame buffer support.\n"
"\n"
" * Default: selects this entry as being the default Linux selection,\n"
"selectable by pressing ENTER at the yaboot prompt. This entry will also be\n"
"highlighted with a ``*'' if you press [Tab] to see the boot selections."
msgstr ""
"±z¥i¥H¦b yaboot ¤º·s¼WÃB¥~ªº¶µ¥Ø¡A¹³¬O¥Î¨Ó±Ò°Ê¨ä¥L§@·~¨t²Î¶µ¥Ø¡B®Ö¤ß¶µ¥Ø©ÎªÌ"
"¬Oĵ«æ¶}¾÷®Ö¤ßÀÉ®×µ¥¡C\n"
"\n"
"°w¹ï­n·s¼W¤@­Ó±Ò°Ê¨ä¥L§@·~¨t²Î¶µ¥Ø¨Ó¬Ý¡A¦Ü¤Ö­n¥]§t¤@­Ó \"¼ÐÅÒ\" »P®Ú¤À³Î°Ï©Ò"
"¦b¦ì¸mªº¶µ¥Ø¡C\n"
"\n"
"°w¹ï Linux ¨Ó»¡¡A¦Ü¤Ö¥]§t¹³¬O:\n"
"\n"
" * ¼ÐÅÒ: ´N¬O Label¡A³o­Ó¶µ¥Ø´N¬O¤@­Ó¥i¥HÅý±z¦b¶}¾÷´£¥Ü°T®§®É¿é¤J¸Ó¦WºÙ¡A§Y¥i"
"¨Ï¥Î¸Ó§@·~¨t²Î¶}¾÷¡C\n"
"\n"
" * ®Ö¤ß: ´N¬O Image¡A³o­Ó¶µ¥Ø¬O«ü¦V¨ì­n¨Ï¥Î¸Ó®Ö¤ßÀɮ׶}¾÷ªºÀɮצWºÙ¡C¤@¯ë¨Ó"
"»¡¡A´N¬O¨Ï¥Î vmlinuz ©ÎªÌ¬O vmlinuz-2.4.8 µ¥³oÃþ¦WºÙ¡C\n"
"\n"
" * / ¤À³Î°Ï: «ü¦V¸Ó Linux ¨t²Î©Ò¦bªº / ®Ú¤À³Î°Ï¦ì¸m¡C\n"
"\n"
" * ªþ¥[°Ñ¼Æ: ³oÃä¥i¥H¿é¤J¤@¨ÇÃB¥~­n¶Çµ¹®Ö¤ßªº°Ñ¼Æ¡C¦b Apple ÀWªG¹q¸£µwÅé¶gÃä"
"¸Ë¸m¤W¡A³o¸Ì¥i¥H«ü©w¤@¨Ç°Ñ¼Æ¥H«K©óªì©l¸ÜÅã¥Ü¥d¸Ë¸m¡A©ÎªÌ¬O±Ò°Ê¦bÁä½L¤Wªº·Æ¹«"
"¸Ë¸m¡C¤U­±¬O¤@¨Ç¥i¥Îªº°Ñ¼Æ«ü©w¡A¤ñ¤è¹³¬O:\n"
"\n"
"         video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
"hda=autotune\n"
"\n"
"         video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
"\n"
" * Initrd: ³o­Ó°Ñ¼Æ¬O¥Î¨Ó¯à°÷¦b®Ö¤ß¸ü¤J®É¡A¹w¥ý¸ü¤J¥i¥Îªº¼Ò²Õ¸Ë¸mÀɮסA¥H«K©ó"
"¯à°÷¦b±¾¤J¨t²Î / ¤À³Î°Ï®É´N¤w¸g¯à°÷¦s¨ú / ©Ò¦b¸Ë¸m¡C¤@¯ë¨Ó»¡¡A·í±z¨t²Î¦w¸Ë¦b "
"RAID¡BSCSI ¸Ë¸m¤W®É¡A¨t²Î»Ý­n¦b®Ö¤ß¸ü¤J®É¶¶«K±¾¤JÅX°Ê³o¨ÇµwÅé¸Ë¸mªºÅX°Êµ{¦¡¡A"
"¥H«K©ó¤U­±¤~¯à°÷¥¿±`¦s¨ú³o¨Ç¸Ë¸m¡C¨Ï¥Î¸Ó¶µ¥Ø®É¡A¨t²Î·|©ó¶}¾÷®É¸ü¤J¤@­Ó©Ò¿×ªº"
"initrd-image Àɮ׶i¦æ«áÄò°Ê§@¡C\n"
"\n"
" * Initrd-size: ·í±z­n¨Ï¥Î initrd-image ®É¡A¨t²Î·|¹w¥ý°t¸m¤@¶ôramdisk¥H«K©ó¸ü"
"¤J initrd-image ÀɮרӨϥΡC¸Ó¶µ¥Ø¹w³]¼Æ­È¬°4096 KBytes¡C­Y¬O±z»Ý­n°t¸m¤@­Ó«Ü"
"¤jªº ramdisk ¨Ï¥Î¡A³oÃä¥i¥H¤â°Ê«ü©w¡C\n"
"\n"
" * / ¥iŪ¼g: ¤@¯ë¨Ó»¡¡A®Ö¤ß¸ü¤J¨t²Î«á¡A¹w³]±¾¤J / ®Ú¤À³Î°Ï®É¡A¬O¨Ï¥Îread-"
"only °ßŪ¼Ò¦¡¡A¥H«K©ó¥i¥H¦b¶}¾÷®É°»´ú¨t²ÎµwºÐ±¡ªp¡A©I¥s fsck µ{¦¡¶i¦æÀË´ú°Ê"
"§@¡C­Y¬O§A¦³¨ä¥L»Ý­nªº¸Ü¡A§A¤~»Ý­n§â³o­Ó¶µ¥Ø¶}±Ò¡A­n¤£µM«Øij±z¤£¥Î¿ï¨ú³o­Ó¶µ"
"¥Ø¡C\n"
"\n"
" * NoVideo: ¤@¯ë¬Oµ¹ Apple Åã¥Ü¥dµwÅé¸Ë¸m¸Ñ¨M¤@¨Ç°ÝÃD¨Ï¥Îªº¡C·íµM±z¥i¥H§â³o­Ó"
"¶µ¥Ø¿ï¾Ü©ó \"novideo\" ¼Ò¦¡¡AÅý¨t²Î¨Ï¥Î­ì¥»Åã¥Ü¤è¦¡¡C\n"
"\n"
" * ¹w³]: ¿ï¾Ü¥Î¨Ó¹w³]¶}¾÷ªº¼ÐÅÒ¶µ¥Ø¡C¨Ì·Ó¦w¸Ë¤è¦¡ªº¤£¦P¡A¶}¾÷®É±z¥i¯à·|¬Ý¨ì¿ï"
"³æ¼Ò¦¡¡A³o®É­Ô±z¥i¥H¥Î¤è¦VÁä¿ï¾Ü§A­n±Ò°Êªº¶µ¥Ø¡C©ÎªÌ¬O§A¬Ý¨ìªº¬O³æ¯Âªº boot: "
"´£¥Ü°T®§¡A¦¹®É±z¥i¥H«ö¤U [Tab] «öÁä¥i¥HÀò±o¯à°÷¿ï¾Ü¿é¤Jªº¶}¾÷¶µ¥Ø¼ÐÅÒ¡C"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
"³o¥x¦Lªí¾÷ \"%s\" ¤w¸g¦¨¥\ªº·s¼W©ó Star Office/OpenOffice.org/GIMP ¤º¡C"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "No floppy drive available!"
msgstr "¨S¦³¥i¥Îªº³nºÐ¾÷"

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
"list shown below or click on the \"Print option list\" button.%s%s%s\n"
"\n"
msgstr ""
"­nÀò±o¥Ø«e³o¥x¦Lªí¾÷¥i¥Îªº¬ÛÃö°Ñ¼Æ¿ï¶µ¡A©ÎªÌ¬O¬d¬Ý¤U­±²M³æ\n"
"©ÒÅã¥Üªº¶µ¥Ø¡A½ÐÂI¿ïÂI¿ï¡y¦C¦L¿ï¶µ²M³æ¡z«ö¶s¡C%s%s\n"
"\n"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Continue anyway?"
msgstr "¤£ºÞ¦p¦ó³£­nÄ~Äò¶Ü ?"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr "¦pªG¸Ó¦Lªí¾÷¨Ã¥¼¦C¥X¡A½Ð¿ï¾Ü¬Û®e©ÎªÌ¬O¬Û«Hªº¦Lªí¾÷«¬¸¹¡C"

#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#: ../../harddrake/data.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer"
msgstr "¦Lªí¾÷"

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

#: ../../services.pm:1
#, c-format
msgid "Internet"
msgstr "Internet"

#: ../../standalone/service_harddrake:1
#, c-format
msgid "Some devices were added:\n"
msgstr "¤@¨Ç¸Ë¸m¶µ¥Ø¤w¸g·s¼W¤F¡G\n"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "µwºÐ¸ê°T¡G %s ºÏ¬W, %s Ū¼gÀY, %s ºÏ°Ï\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "¨Ï¥Î¡u%s¡v¦Lªí¾÷¶i¦æ¦C¦L"

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

#: ../../standalone/drakbackup:1
#, c-format
msgid "Restore From Tape"
msgstr "¨Ï¥ÎºÏ±a¦^¦s"

#: ../../network/netconnect.pm:1
#, c-format
msgid "Choose the profile to configure"
msgstr "½Ð¿ï¨ú­n³]©wªº¶µ¥Ø"

#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
msgid ""
"\n"
"\n"
"Enter a Zeroconf host name without any dot if you don't\n"
"want to use the default host name."
msgstr ""

#: ../../standalone/drakbackup:1
#, c-format
msgid "Backup Now from configuration file"
msgstr "¨Ì¾Ú¥Ø«e²ÕºA³]©w¶}©l³Æ¥÷"

#: ../../fsedit.pm:1
#, fuzzy, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "¦Lªí¾÷ªº¦WºÙÀ³¸Ó¥u¦³¥]§t­^¤å¦r¥À¡B¼Æ¦r»P©³½u³oÃþ¦r¤¸"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Restarting printing system..."
msgstr "¥¿¦b­«·s±Ò°Ê¦C¦L¨t²ÎªA°È ..."

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (name)\n"
"\n"
"Add the name as an exception to the handling of password aging by msec."
msgstr ""

#: ../../modules/interactive.pm:1
#, c-format
msgid "See hardware info"
msgstr "À˵øµwÅé¸ê°T"

#: ../../any.pm:1
#, c-format
msgid "First sector of boot partition"
msgstr "¶}¾÷¤À³Î°Ïªº²Ä¤@­ÓºÏ°Ï"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer manufacturer, model"
msgstr "¦Lªí¾÷¼t°Ó,«¬¸¹"

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

#: ../../standalone.pm:1
#, c-format
msgid ""
"[OPTIONS]...\n"
"Mandrake Terminal Server Configurator\n"
"--enable         : enable MTS\n"
"--disable        : disable MTS\n"
"--start          : start MTS\n"
"--stop           : stop MTS\n"
"--adduser        : add an existing system user to MTS (requires username)\n"
"--deluser        : delete an existing system user from MTS (requires "
"username)\n"
"--addclient      : add a client machine to MTS (requires MAC address, IP, "
"nbi image name)\n"
"--delclient      : delete a client machine from MTS (requires MAC address, "
"IP, nbi image name)"
msgstr ""

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

#: ../../standalone/drakboot:1
#, c-format
msgid "LiLo and Bootsplash themes installation successfull"
msgstr "lilo »P¶}¾÷¶i«×µe­±ªº§G´ºÀɮפw¸g¦w¸Ë¦¨¥\"

#: ../../Xconfig/monitor.pm:1
#, c-format
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
"at which the whole screen is refreshed, and most importantly the horizontal\n"
"sync rate, which is the rate at which scanlines are displayed.\n"
"\n"
"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
"range\n"
"that is beyond the capabilities of your monitor: you may damage your "
"monitor.\n"
" If in doubt, choose a conservative setting."
msgstr ""
"³o¨â­Ó°Ñ¼Æ¤D¬O±z¿Ã¹õªº««ª½§ó·sÀW²v¡A¥H¤Î«Ü­«­n\n"
"ªº¤ô¥­§ó·sÀW²v¡A«eªÌ¬O±z¾ã­Ó¿Ã¹õ¼v¹³§ó·sªº¶g´Á¡A\n"
"«áªÌ¬O¹q¤lºj±½´yªº³t²v¡C\n"
"\n"
"±z¥²¶·¯S§Oª`·N¡A¤£­n³]©w¶W¹L¿Ã¹õÀW¼eÅã¥Ü¯à¤Oªº\n"
"¼Æ­È¡G¹L°ªªºÀW²v¦³¥i¯à¶Ë®`±zÄ_¶Qªº¿Ã¹õ¡C\n"
"­Y±z¤£½T©w¿Ã¹õ³W®æªº¸Ü¡A½Ð¿ï¾Ü«O¦u¤@ÂIªº³]©w­È¡C"

#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
#, c-format
msgid "Modify"
msgstr "­×§ï"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
"a particular printing job. Simply add the desired settings to the command "
"line, e. g. \"%s <file>\".\n"
msgstr ""
"\n"
"\"%s\" »P \"%s\" «ü¥O¡A¯à°÷Åý±z­×§ï¬Y­Ó³]©w¦C¦L¤u§@¶µ¥Ø\n"
"ªº°Ñ¼Æ³]©w¡C²³æ¤@ÂIªº¤è¦¡´N¬O¦b©R¥O¦C¥[¤W±z­n¶ñ¤Jªº³]©w­È¡A\n"
"¤ñ¤è \"%s <ÀÉ®×>\"¡C\n"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Need hostname, username and password!"
msgstr "»Ý­n«ü©w¥D¾÷¦WºÙ¡B¨Ï¥ÎªÌ»P±K½X¡I"

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

#: ../../standalone/drakbug:1
#, c-format
msgid "HardDrake"
msgstr "HardDrake µwÅé°»´ú³]©w"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "new"
msgstr "·sªº"

#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Would you like to try again?"
msgstr "±z­n³]©w¦Lªí¾÷¦C¦L¶µ¥Ø¶Ü¡H"

#: ../../help.pm:1 ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Wizard"
msgstr "ºëÆF"

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Edit selected server"
msgstr "°»´ú¨ì %s "

#: ../../standalone/drakbackup:1
#, c-format
msgid "Please choose where you want to backup"
msgstr "½Ð¿ï¨ú±z­n³Æ¥÷ªº¶µ¥Ø"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr "±z¶·­n­«·s¶}¾÷¥H¨Ï¥Î§ó°Ê¹LªºµwºÐ¤À³Îªí"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Do not include the browser cache"
msgstr "¤£­n¥]§tÂsÄý¾¹ªº§Ö¨ú¸ê®ÆÀÉ"

#: ../../standalone/keyboarddrake:1
#, c-format
msgid "Please, choose your keyboard layout."
msgstr "½Ð¿ï¨úÁä½L±Æ¦Cªº®æ¦¡¬O¨º¤@ºØ¡C"

#: ../../mouse.pm:1 ../../security/level.pm:1
#, c-format
msgid "Standard"
msgstr "¼Ð·Ç"

#: ../../standalone/mousedrake:1
#, c-format
msgid "Please choose your mouse type."
msgstr "½Ð¿ï¨ú·Æ¹«ªº§Î¦¡¡C"

#: ../../standalone/drakconnect:1
#, c-format
msgid "Connect..."
msgstr "³s½u..."

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Failed to configure printer \"%s\"!"
msgstr "¥¿¦b³]©w¡u%s¡v¦Lªí¾÷¤¤ ..."

#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "not configured"
msgstr "­«·s³]©w"

#: ../../network/isdn.pm:1
#, c-format
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"

#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "About"
msgstr "©ñ±ó"

#: ../../network/network.pm:1
#, c-format
msgid "Proxies configuration"
msgstr "³]©w­n¨Ï¥Îªº¥N²z¦øªA¾¹"

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

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Start: sector %s\n"
msgstr "¶}©l: ²Ä %s ºÏ°Ï\n"

#: ../../standalone/drakgw:1
#, c-format
msgid "Network interface already configured"
msgstr "ºô¸ô¤¶­±¤w¸g³]©w§¹¦¨"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Couldn't access the floppy!"
msgstr "µLªk¦s¨ú¨ì³nºÐ"

#: ../../standalone/drakbug:1
#, c-format
msgid "connecting to Bugzilla wizard ..."
msgstr "³s½u¨ì¯äÂεo§GºëÆF ..."

#: ../../network/drakfirewall.pm:1
#, c-format
msgid "Mail Server"
msgstr "Mail ¦øªA¾¹"

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Please click on a partition"
msgstr "½ÐÂI¿ï¤@­Ó¤À³Î°Ï"

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

#: ../../standalone/drakxtv:1
#, c-format
msgid "Have a nice day!"
msgstr "¯¬¦³¬ü¦nªº¤@¤Ñ¡I"

#: ../../standalone/drakbackup:1
#, c-format
msgid "across Network"
msgstr "³z¹Lºô¸ô"

#: ../../help.pm:1
#, c-format
msgid "/dev/fd0"
msgstr "/dev/fd0"

#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Upgrade %s"
msgstr "¤É¯Å"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Select Printer Connection"
msgstr "¿ï¾Ü¦Lªí¾÷³s½u"

#: ../../standalone/drakxtv:1
#, c-format
msgid "Scanning for TV channels in progress ..."
msgstr "·Ç³Æ¶}©l±½´y¹qµøÀW¹D"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
"¨Ï¥Î FTP ¤W¶ÇÀɮ׮ɵo¥Í¿ù»~¡C\n"
"½ÐÀ˵ø±zªº FTP ³]©w¬O§_³]©w¡C"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "IP Range Start:"
msgstr ""

#: ../../services.pm:1
#, c-format
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
"starting\n"
"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
"disables\n"
"all of the services it is responsible for."
msgstr ""
"internet superserver daemon (¤@¯ëºÙ©I¬° inetd)¡A¥¦¥N¬°¹³¬O telnet¡Bftp,\n"
"rsh¡Brlogin µ¥µ¥³oÃþªA°ÈªººÊÅ¥¡AµM«á¦³³s½u½Ð¨D®É¡A¦b¹ê»Ú©I¥s´£¨ÑªA°Èªº\n"
"µ{¦¡¶i¦æ«áÄò¥æ½Í·¾³qªº°Ê§@¡CÃö³¬³o­Ó¶µ¥Ø¡A¥õ¿à©ó³o­ÓªA°È¥N¬°ºÊÅ¥±Ò°Êªº\n"
"¶µ¥Ø±N·|µLªk¨Ï¥Î"

#: ../../standalone/draksplash:1
#, c-format
msgid "the height of the progress bar"
msgstr "   ¶i«×Barªº°ª«×                                 "

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
"\n"
"- Àx¦s %s ©ó¯¸¥x - %s\n"

#: ../../lang.pm:1 ../../standalone/drakxtv:1
#, c-format
msgid "Argentina"
msgstr "ªü®Ú§Ê"

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
" Accept/Refuse broadcasted icmp echo."
msgstr ""

#: ../../network/drakfirewall.pm:1
#, c-format
msgid "Domain Name Server"
msgstr "DNS ¦øªA¾¹"

#: ../../standalone/draksec:1
#, c-format
msgid "Security Level:"
msgstr "¦w¥þµ¥¯Å:"

#: ../../fsedit.pm:1
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "«ü©wªº±¾¸üÂI»Ý¥H / ¶}ÀY"

#: ../../standalone/logdrake:1
#, c-format
msgid "Postfix Mail Server"
msgstr "Postfix ¶l¥ó¦øªA¾¹"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Quit without saving"
msgstr "¤£Àx¦s´NÂ÷¶}"

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

#: ../../share/advertising/11-mnf.pl:1
#, c-format
msgid "This product is available on the MandrakeStore Web site."
msgstr "±z¥i¥H³z¹L MandrakeStore ¯¸¥xÀò±o§ó¦h¸Ó²£«~¸ê°T"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr "½Ð¿é¤J³Æ¥÷¤¹³\³Ì¤jªº¤j¤p"

#: ../../interactive/stdio.pm:1
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "%s ¤W¦³«Ü¦hªº¶µ¥Ø¥i¨Ñ¿ï¾Ü¡C\n"

#: ../../steps.pm:1
#, c-format
msgid "Hard drive detection"
msgstr "µwºÐ°»´ú"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
"±z¨Ã¥¼¿ï¨ú¥ô¦ó®M¥ó¸s²Õ\n"
"½Ð¿ï¾Ü±z©Ò»Ý­nªº³Ì¤p¦w¸Ë"

#: ../../diskdrake/dav.pm:1
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "½Ð¿é¤J WevDAV ¥D¾÷ URL"

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

#: ../../help.pm:1 ../../install_steps_gtk.pm:1
#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
#, c-format
msgid "Accept"
msgstr "±µ¨ü"

#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
#, c-format
msgid "Description"
msgstr "´y­z"

#: ../../fsedit.pm:1
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "¥¿¦b¶}±Ò %s ¥H¼g¤JÀɮ׮ɵo¥Í¿ù»~¡G %s"

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Mouse type: %s\n"
msgstr "·Æ¹«ªººØÃþ¡G %s\n"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "±zªºÅã¥Ü¥d·f°t XFree %s ¦³ 3D µwÅé¥[³t¥\¯à¡C"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Please choose your CD/DVD media size (Mb)"
msgstr "½Ð¿ï¨ú±z CD/DVD ®e¶q¤j¤p"

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
" Enabling su only from members of the wheel group or allow su from any user."
msgstr ""

#: ../../standalone/drakfloppy:1
#, c-format
msgid "Expert Area"
msgstr "±M®a°Ï°ì"

#: ../../Xconfig/monitor.pm:1
#, c-format
msgid "Choose a monitor"
msgstr "¿ï¨ú¦X¾Aªº¿Ã¹õ"

#: ../../any.pm:1
#, c-format
msgid "Empty label not allowed"
msgstr "¼ÐÅÒ¤£¥i¥HªÅ¥Õ"

#: ../../keyboard.pm:1
#, c-format
msgid "Maltese (UK)"
msgstr "°¨º¸¥L»y (UK)"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "I can't add any more partition"
msgstr "µ{¦¡µLªk¦A·s¼W¥ô¦ó¤À³Î°Ï¤F"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Size in MB: "
msgstr "¤j¤p (MB)¡G "

#: ../../printer/main.pm:1
#, c-format
msgid "Remote printer"
msgstr "»·ºÝ¦Lªí¾÷"

#: ../../any.pm:1
#, c-format
msgid "Please choose a language to use."
msgstr "½Ð¿ï¾Ü­n¨Ï¥Î¨º­Ó»y¨t¡C"

#: ../../network/network.pm:1
#, c-format
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
msgstr ""
"ĵ§i: ³o­Ó¸Ë¸m¥ý«e¤w¸g³Q³]©w³Ì¬°³s½u¨ìInternetªº¶µ¥Ø¤F¡C\n"
"­Y¬O±z­nºû«ù³o­Ó¸Ë¸mªº³]©w¡A½Ð¿ï¾Ü±µ¨ü¡C\n"
"­Y¬O±z­×§ï¤U­±Äæ¦ì¡A±N·|­â¶V­ì¥»ªº³]©w¡C"

#: ../../any.pm:1
#, fuzzy, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"²{¦b¯à°÷³]©w©ó¶}¾÷«á¦Û°Ê¥H¬Y­Ó¨Ï¥ÎªÌ¨­¥÷µn¤J¨t²Î¡C\n"
"±z­n¨Ï¥Î³o­Ó¥\¯à¶Ü¡H"

#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Floppy format"
msgstr "®æ¦¡¤Æ"

#: ../../standalone/drakfont:1
#, c-format
msgid "Generic Printers"
msgstr "¤@¯ë¦Lªí¾÷"

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid ""
"Please choose the printer to which the print jobs should go or enter a "
"device name/file name in the input line"
msgstr "½Ð¿ï¾Ü±z¦Lªí¾÷ªº³s±µ°ð¡A©ÎªÌ¬O¿é¤J¸Ó¸Ë¸mªº¦WºÙ"

#: ../../standalone/scannerdrake:1
#, c-format
msgid "The scanners on this machine are available to other computers"
msgstr ""

#: ../../any.pm:1
#, fuzzy, c-format
msgid "First sector of the root partition"
msgstr "¶}¾÷¤À³Î°Ïªº²Ä¤@­ÓºÏ°Ï"

#: ../../standalone/harddrake2:1
#, c-format
msgid "Alternative drivers"
msgstr "¥t¥~¥i¨Ñ¿ï¾ÜªºÅX°Êµ{¦¡"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
"\n"
"½ÐÀ˵ø±z©Ò»Ý­nªº¥þ³¡¶µ¥Ø¡C\n"

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

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

#: ../../standalone/harddrake2:1
#, c-format
msgid "whether this cpu has the Cyrix 6x86 Coma bug"
msgstr ""

#: ../../standalone/harddrake2:1
#, c-format
msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
msgstr ""

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

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Please choose the port that your printer is connected to or enter a device "
"name/file name in the input line"
msgstr "½Ð¿ï¾Ü±z¦Lªí¾÷ªº³s±µ°ð¡A©ÎªÌ¬O¿é¤J¸Ó¸Ë¸mªº¦WºÙ"

#: ../../standalone/logdrake:1
#, c-format
msgid "/Options/Test"
msgstr "/¿ï¶µ/´ú¸Õ"

#: ../../security/level.pm:1
#, c-format
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive. It must not be used for a machine connected to others\n"
"or to the Internet. There is no password access."
msgstr ""
"§â¦w¥þ¾÷¨î³]©w¦b³o­Óµ¥¯Å®É¥²¶·­n«D±`ÂÔ·V¡A\n"
"¥¦·|Åý±zªº¨t²Î¥Î°_¨Ó§ó¥[²©ö¤è«K¡A¥i¬O«o·¥©ö\n"
"¨ü¨ì¯}Ãa: ³o­Ó³]©w¤£À³¸Ó³Q¥Î¦b¦³³s½u¨ìInternet\n"
"ªº¥D¾÷¡A¦]¬°©Ò¦³ªº¦s¨ú°Ê§@³£¨S¦³¥Î±K½X¥[¥H\n"
"­­¨î¡C"

#: ../../fs.pm:1
#, fuzzy, c-format
msgid "Mounting partition %s"
msgstr "¥¿¦b®æ¦¡¤Æ¤À³Î°Ï %s"

#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "User name"
msgstr "¨Ï¥ÎªÌ±b¸¹"

#: ../../standalone/drakbug:1
#, c-format
msgid "Userdrake"
msgstr "Userdrake ¨Ï¥ÎªÌºÞ²z"

#: ../../install_interactive.pm:1
#, c-format
msgid "Which partition do you want to use for Linux4Win?"
msgstr "±z§Æ±æ­n¥Î¨º­Ó¤À³Î°Ïµ¹ Linux4Win ¨Ó¨Ï¥Î©O¡H"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Backup system"
msgstr "³Æ¥÷¨t²Î¸ê®Æ"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Test pages"
msgstr "¦C¦L´ú¸Õ­¶"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
"­n¦^¦sªº¸ê®Æ²M³æ:\n"
"\n"

#: ../../fs.pm:1
#, fuzzy, c-format
msgid "Checking %s"
msgstr "¥¿¦b½Æ»s %s"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "TCP/Socket Printer Options"
msgstr "TCP/Socket ¦Lªí¾÷¿ï¶µ"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Card mem (DMA)"
msgstr "¤¶­±¥d mem (DMA)"

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

#: ../../standalone/drakperm:1
#, c-format
msgid "browse"
msgstr "ÂsÄý"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Checking installed software..."
msgstr "¥¿¦bÀˬd¤w¸g¦w¸Ëªº³nÅé"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remote printer name missing!"
msgstr "¨S«ü©w¦Lªí¾÷¦WºÙ !"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Do you want to enable printing on printers in the local network?\n"
msgstr "±z­n¶}±Ò¤º³¡ºô¸ôªº¦Lªí¾÷¦C¦LªA°È¶Ü¡H\n"

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

#: ../../network/adsl.pm:1
#, c-format
msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch USB"

#: ../../standalone/harddrake2:1
#, c-format
msgid "Number of buttons"
msgstr "¨â­Ó«öÁä"

#: ../../keyboard.pm:1
#, c-format
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "¶V«n \"numeric row\" QWERTY ¦¡"

#: ../../standalone/harddrake2:1
#, c-format
msgid "Module"
msgstr "«¬¸¹"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
"°£¦¹¤§¥~¡Aqueues µLªk³z¹L¸Óµ{¦¡«Ø¥ß¡A©ÎªÌ¬O \"foomatic-configure\"\n"
"µLªk¶i¦æ¶Ç¿é¡C"

#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Hardware"
msgstr "HardDrake µwÅé°»´ú³]©w"

#: ../../keyboard.pm:1
#, c-format
msgid "Ctrl and Alt keys simultaneously"
msgstr "Ctrl »P Alt ²Õ¦X«öÁä"

#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
msgid "United States"
msgstr "¬ü°ê"

#: ../../any.pm:1
#, c-format
msgid "Default OS?"
msgstr "¹w³] OS ?"

#: ../../keyboard.pm:1
#, c-format
msgid "Swiss (German layout)"
msgstr "·ç¤h (¼w°ê¦¡°t¸m)"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "Configure all heads independently"
msgstr "³]©w©Ò¦³Åã¥Ü¥d"

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid ""
"Please choose the printer you want to set up. The configuration of the "
"printer will work fully automatically. If your printer was not correctly "
"detected or if you prefer a customized printer configuration, turn on "
"\"Manual configuration\"."
msgstr ""
"¤U­±¦C¥Xªº¬O¦Û°Ê°»´ú©Ò§ä¨ìªº¦Lªí¾÷¡C¬ÛÃö¦Lªí¾÷ªº²ÕºA³]©w\n"
"³£¯à°÷¦Û°Ê§¹¦¨¦Ó¤£»Ý­n¥t¥~³]©w¡C­Y¬O¤U­±¦C¥X©Ò§ä¨ìªº¦Lªí¾÷\n"
"¨Ã¤£¬O±z©Ò¹w´Áªº¡A©ÎªÌ¬O§A§Æ±æ¤â°Ê¤è¦¡³]©w¡A½Ð¿ï¾Ü¡y¤â°Ê³]©w¡z¡C"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "NTP Server"
msgstr "NTP ¦øªA¥D¾÷"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Load/Save on floppy"
msgstr "¥Ñ³nºÐ¸ü¤J/Àx¦s"

#: ../../standalone/draksplash:1
#, c-format
msgid "This theme does not yet have a bootsplash in %s !"
msgstr "%s ¤º©|¥¼¦³¥ô¦ó¶}¾÷¸ü¤Jµe­±"

#: ../../pkgs.pm:1
#, c-format
msgid "nice"
msgstr "¦n¥Îªº"

#: ../../Xconfig/test.pm:1
#, fuzzy, c-format
msgid "Leaving in %d seconds"
msgstr "%d ’"

#: ../../network/modem.pm:1
#, c-format
msgid "Please choose which serial port your modem is connected to."
msgstr "½Ð¿ï¨ú±z¼Æ¾Ú¾÷³s±µªº§Ç¦C°ð¡C"

#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Country"
msgstr "°ê®a¡G"

#: ../../standalone/drakperm:1
#, c-format
msgid "Property"
msgstr "¯S©Ê"

#: ../../standalone/drakfont:1
#, c-format
msgid "Ghostscript"
msgstr "GhostScript"

#: ../../standalone/drakconnect:1
#, c-format
msgid "LAN Configuration"
msgstr "°Ï°ìºô¸ô³]©w"

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

#: ../../standalone/drakbackup:1
#, c-format
msgid "Path or Module required"
msgstr "»Ý­n¿é¤J¸ô®|©Î¬O¼Ò²Õ¦WºÙ"

#: ../../standalone/drakfont:1
#, c-format
msgid "Advanced Options"
msgstr "¶i¶¥¿ï¶µ"

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

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
"defined, either from a previous installation of GNU/Linux or by another\n"
"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
"partitions must be defined.\n"
"\n"
"To create partitions, you must first select a hard drive. You can select\n"
"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
"\n"
"To partition the selected hard drive, you can use these options:\n"
"\n"
" * \"%s\": this option deletes all partitions on the selected hard drive\n"
"\n"
" * \"%s\": this option enables you to automatically create ext3 and swap\n"
"partitions in the free space of your hard drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
"\n"
" * \"%s\": saves the partition table to a floppy. Useful for later\n"
"partition-table recovery if necessary. It is strongly recommended that you\n"
"perform this step.\n"
"\n"
" * \"%s\": allows you to restore a previously saved partition table from a\n"
"floppy disk.\n"
"\n"
" * \"%s\": if your partition table is damaged, you can try to recover it\n"
"using this option. Please be careful and remember that it doesn't always\n"
"work.\n"
"\n"
" * \"%s\": discards all changes and reloads the partition table that was\n"
"originally on the hard drive.\n"
"\n"
" * \"%s\": unchecking this option will force users to manually mount and\n"
"unmount removable media such as floppies and CD-ROMs.\n"
"\n"
" * \"%s\": use this option if you wish to use a wizard to partition your\n"
"hard drive. This is recommended if you do not have a good understanding of\n"
"partitioning.\n"
"\n"
" * \"%s\": use this option to cancel your changes.\n"
"\n"
" * \"%s\": allows additional actions on partitions (type, options, format)\n"
"and gives more information about the hard drive.\n"
"\n"
" * \"%s\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
"\n"
"When defining the size of a partition, you can finely set the partition\n"
"size by using the Arrow keys of your keyboard.\n"
"\n"
"Note: you can reach any option using the keyboard. Navigate through the\n"
"partitions using [Tab] and the [Up/Down] arrows.\n"
"\n"
"When a partition is selected, you can use:\n"
"\n"
" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
"\n"
" * Ctrl-d to delete a partition\n"
"\n"
" * Ctrl-m to set the mount point\n"
"\n"
"To get information about the different file system types available, please\n"
"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
"may find it a useful place to store a spare kernel and ramdisk images for\n"
"emergency boot situations."
msgstr ""
"¦b³o­Ó¶¥¬q¡A±z»Ý­n¿ï¾Ü­n¥Î¨Ó¦w¸Ë¡yMandrake-Linux¡z¨t²Îªº¤À³Î°Ï¡C±z¥i¥H­«·s¹º"
"¤À·sªº¤À³Î°Ï¨Ó¨Ï¥Î¡A©ÎªÌ¬O¨Ï¥Î­ì¥»¤w¸g¹º¤À¦nªº´N¦³¤À³Î°Ï¡C\n"
"\n"
"­n«Ø¥ß·s¤À³Î°Ï¡A±z»Ý­n¥ý¿ï¾Ü¤@¥xµwºÐ¶i¦æ¾Þ§@¡C¤ñ¤è¿ï¨ú¡uhda¡v¡B¡uhdb¡v³oÃþ "
"IDE µwºÐ¸Ë¸m¡A©ÎªÌ¬O¡usda¡v.. µ¥ SCSI µwºÐ¸Ë¸m¡C\n"
"\n"
"¶i¦æ¤À³Îªº°Ê§@¡A¦b±z¿ï¦n¤@¥xµwºÐ¸Ë¸m«á¡A±z¦³³o¨Ç¶µ¥Ø¥i¥H¨Ï¥Î:\n"
"\n"
" *¡y²M°£¥þ³¡¡z¡G³o­Ó¶µ¥Ø±N·|§â©Ò¿ï¨úªºµwºÐ¤W©Ò¦³¤À³Î°Ï³£²M°£±¼¡C\n"
"\n"
" *¡y¦Û°Ê°t¸m¡z¡G³o­Ó¶µ¥Ø±N·|¦Û°Ê§ä´M©Ò¿ï¨úªºµwºÐ³Ñ¾l¥i¥ÎªºªÅ¶¡¡A¦Û°Ê¹º¤À¥X"
"¡uExt2¡v»P¡uswap¡v¤À³Î°Ï¶i¦æ¦w¸Ë¨Ï¥Î¡C\n"
"\n"
" *¡y§ó¦h¡z¡G´£¨Ñ¶i¶¥ªº¿ï¶µ³]©w:\n"
"\n"
" *¡yÀx¦s¦ÜºÏ¤ù¡z¡G§â¥Ø«e¤À³Îªí¹º¤Àª¬ºAÀx¦s¨ìºÏ¤ù¤º¡A¥H«K©ó¦b¬Y¨ÇÀô¹Ò¤U¥i¥H¥Î"
"¨Ó«æ±Ï´_­ì¡C«Øij§A­Y¬O¤£¼ô±xºÏºÐ¹º¤À¡A¥i¥H¦h§Q¥Î³o­Ó¶µ¥Ø¡C\n"
"\n"
" *¡y¸ü¤J³nºÐ¤¤ªº³]©w­È¡z¡G³o­Ó¶µ¥Ø¯à°÷¦^¦s¥ý«eÀx¦s¦bºÏ¤ùªºµwºÐªº¤À³Îªí¹º¤Àª¬"
"ºA\n"
"\n"
" *¡y±Ï´©¤À³Î°Ï¡z¡G¦pªG±zªº¤À³Î°Ï·´·l¤F¡A¤]³\±z¥i¥H¨Ï¥Î³o­Ó¶µ¥Ø¶i¦æ«æ±Ïªº°Ê"
"§@¡C¤£¹L½Ð¤p¤ß¨Ï¥Î³o­Ó¶µ¥Ø¡A¥HÁקK²£¥Í§ó¦hªº§ó¦h¿ù»~¡C\n"
"\n"
" *¡y´_­ì¤À³Î°Ï¡z¡G¨ú®ø­è­èªººÏºÐ¤À³Îªº¹º¤À¾Þ§@ªºÅܧó¡C\n"
"\n"
" *¡y­«Åª¤À³Î°Ï¡z¡G­n©ñ±ó­è­è¹ïºÏºÐ¥ô¦ó¹º¤À°Ê§@¡A¨Ã¦^¨ì³Ì­ì¥»ª¬ºA¡AÅýµ{¦¡­«·s"
"Ū¨ú±z³Ì­ì¥»ªºª¬ºA¡C\n"
"\n"
" *¡y¥i²¾°£¸Ë¸m¦Û°Ê±¾¸ü¡z¡G­Y¬O±z§Æ±æ¯à°÷¦Û°Êªº±¾¤JºÏºÐ¤ù»P¥úºÐ¤ùªº¸Ü¡A½Ð¿ï¨ú"
"¸Ó¶µ¥Ø¡C\n"
"\n"
" *¡yºëÆF¡z¡G¦pªG±z§Æ±æ¥Ñµ{¦¡À°±z¦Û°Ê¤À°tºÏºÐ¤À³Îªº¸Ü¡A¥i¥H¨Ï¥Î¸Ó¶µ¥Ø¡C¤@¯ë«Ø"
"ijµ¹ªì¾ÇªÌ¨Ó¨Ï¥Î¡C\n"
"\n"
" *¡y¤Á´«¦Ü¤@¯ë/±M®a¼Ò¦¡¡z¡G´£¨Ñ§ó¦hÃB¥~ªº¤À³Î°Ï¸ê°T¶µ¥Ø (Ãþ«¬¡B¿ï¶µ¡B®æ¦¡¤Æ) "
"杭C\n"
"\n"
" *¡y§¹¦¨¡z¡G·í±z§¹¦¨ºÏºÐ¹º¤À°Ê§@®É¡A½Ð¿ï¾Ü³o­Ó¶µ¥Ø¡A¥H«K©ó§â¥Ø«e¤À³Îªºµ²ªG¼g"
"¤J¨ìµwºÐ§ó·s¡C\n"
"\n"
"½Ðª`·N¡G³oÃä±z¥i¥H¦h§Q¥Î [Tab] »P [Up/Down] Áä¨Ó©¹ªðºÏºÐ¤À³Îµe­±¾Þ§@¡C\n"
"\n"
"·í¿ï¨ú¦n¤@­Ó¤À³Î°Ï®É¡A±z¥i¥H¨Ï¥Î:\n"
"\n"
" * Ctrl-c¡G«Ø¥ß¤@­Ó·s¤À³Î°Ï (·íªÅªº¤À³Î°Ï³Q¿ï¨ú®É¨Ï¥Î);\n"
"\n"
" * Ctrl-d¡G§R°£¸Ó¤À³Î°Ï;\n"
"\n"
" * Ctrl-m¡G³]©w¸Ó¤À³Î°Ïªº±¾¸üÂI¡C\n"
"\n"
"¦pªG±z¬O¨Ï¥Î PowerPC ªº¾÷¾¹¡A±z»Ý­n«Øij¤@­Ó¤j¬ù 1MB ªº HFS¤À³Î°Ï§@¬°yaboot¶}"
"¾÷µ{¦¡¨Ï¥Î¡A¥H«K©ó¯à°÷Åý yaboot ¶}¾÷µ{¦¡¯à°÷±Ò°Ê Linux ¨t²Î¡C·íµM¡A¤@¯ë§Ú­Ì«Ø"
"ij¡A±z¥i¥HÅý³o¶ô«O¯dªº¤À³Î°Ï¦³¤j¤@ÂIªºªÅ¶¡¡A¤ñ¤è«O¯d¤@¶ô¡u20M¡vªº¤À³Î°Ï¡A¨º±z"
"´N¯à°÷¦b¸Ó¤À³Î°Ï¤W©ñ¸m³\¦h¥÷ªº¶}¾÷®Ö¤ß¬ÛÃöÀɮרӨϥΡC"

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

#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "There was an error installing packages:"
msgstr "¦w¸Ë®M¥ó®Éµo¥Í¿ù»~¡G"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Lexmark inkjet configuration"
msgstr "Lexmark ¼Q¾¥¦Lªí¾÷³]©w"

#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Undo"
msgstr "´_­ì"

#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Save partition table"
msgstr "¼g¤JµwºÐ¤À³Îªí"

#: ../../keyboard.pm:1
#, c-format
msgid "Finnish"
msgstr "ªâÄõ"

#: ../../lang.pm:1
#, c-format
msgid "Macedonia"
msgstr "°¨¨ä¹y"

#: ../../any.pm:1
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
"¨C­Ó¨Ï¥ÎªÌªº¤À¨É³£¬O¨Ï¥Î¡yfileshare¡z¸Ó¸s²Õªº³]©w¡C\n"
"±z¥i¥H°õ¦æ¡yuserdrake¡zµ{¦¡¦b¸Ó¸s²Õ¤º¥[¤J¨Ï¥ÎªÌ§Y¥i¡C"

#: ../../keyboard.pm:1
#, c-format
msgid "Slovenian"
msgstr "´µ¬¥ªk¥§¨È"

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Libya"
msgstr "§Q¤ñ§Q¨È"

#: ../../standalone/drakgw:1
#, c-format
msgid "Configuring scripts, installing software, starting servers..."
msgstr "³]©w script, ¦w¸Ë³nÅé¡A±Ò°Ê¬ÛÃöªº servers ªA°È"

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Printer on parallel port #%s"
msgstr "¦Lªí¾÷¦ì©ó¨Ã¦C°ð \\/*%s"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
"- Burn to CD"
msgstr ""
"\n"
"- ¿N¿ý¨ì CD ¤ù"

#: ../../any.pm:1
#, c-format
msgid "Table"
msgstr "¤À³Îªí"

#: ../../fs.pm:1
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "¤£ª¾¹D­n¦p¦ó±N %s ®æ¦¡¤Æ¬° %s ®æ¦¡"

#: ../../standalone/harddrake2:1
#, c-format
msgid "Model"
msgstr "«¬¸¹"

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
"Enable/Disable libsafe if libsafe is found on the system."
msgstr ""

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "USB printer #%s"
msgstr "USB ¦Lªí¾÷ \\/*%s"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Stop Server"
msgstr "°±¤îªA°È"

#: ../../standalone/drakboot:1
#, c-format
msgid ""
"\n"
"Select the theme for\n"
"lilo and bootsplash,\n"
"you can choose\n"
"them separately"
msgstr ""
"\n"
"½Ð¿ï¾Ü lilo »P¶}¾÷¸ü¤Jµe­±¶µ¥Ø¡A\n"
"±z¥i¥H¤À¶}¿ï¾Ü"

#: ../../harddrake/data.pm:1
#, fuzzy, c-format
msgid "Modem"
msgstr "«¬¸¹"

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg, listen_tcp=None)\n"
"\n"
"Allow/Forbid X connections. First arg specifies what is done\n"
"on the client side: ALL (all connections are allowed), LOCAL (only\n"
"local connection) and NONE (no connection)."
msgstr ""

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

#: ../../help.pm:1 ../../network/netconnect.pm:1
#, c-format
msgid "Use auto detection"
msgstr "¨Ï¥Î¦Û°Ê°»´ú"

#: ../../services.pm:1
#, c-format
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
"operations,\n"
"and includes support for pop-up menus on the console."
msgstr ""
"GPM ¯à°÷Åý¨t²Î¦b¤å¦r¼Ò¦¡¤UÅX°ÊÅã¥Ü¥X·Æ¹«´å¼Ð¡A¯à°÷¦b Midnight Commander\n"
"³oÃþµ{¦¡¤¤©Ò¨Ï¥Î¡C¥t¥~ÁÙ¯à°÷¤ä´©¦b¤å¦r¼Ò¦¡¤U¿Ã¹õ¤å¦rªº°Å¶K½Æ»s¥\¯à¡C"

#: ../../standalone/drakconnect:1
#, c-format
msgid "Started on boot"
msgstr "©ó¶}¾÷®É±Ò°Ê"

#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
"your knowledge and help others by becoming a recognized Expert on the online "
"technical support website:"
msgstr ""
"¥[¤J MandrakeSoft Support ªº¦¨­û¡A¨Ã¥B³z¹L½u¤WªºÀô¹Ò¤À¨É\n"
"±zªº¸gÅç¡AÅý±z¯à°÷¨ó§U¸Ñ¨M¨Ï¥ÎªÌºÃ°Ý¥~¡A¨Ã¥B¦¨¬° Linux ±M®a¡C"

#: ../../standalone/draksec:1
#, c-format
msgid ""
"The following options can be set to customize your\n"
"system security. If you need an explanation, look at the help tooltip.\n"
msgstr ""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Automatically find available printers on remote machines"
msgstr ""

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
"\n"
"- Àx¦s©ó¸ÓºÏ±a¾÷¸Ë¸m¡G%s"

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

#: ../../standalone/drakconnect:1
#, c-format
msgid "Del profile..."
msgstr "§R°£³]©wÀɤ¤..."

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
"Allow/Forbid the list of users on the system on display managers (kdm and "
"gdm)."
msgstr ""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Installing Foomatic..."
msgstr "¥¿¦b¦w¸Ë Foomatic ®M¥ó..."

#: ../../standalone/XFdrake:1
#, c-format
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "½Ðµn¥X¡AµM«á¥Î Ctrl-Alt-BackSpace ­«·s±Ò°Ê X"

#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "detected"
msgstr "°»´ú¨ì %s "

#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "The network needs to be restarted. Do you want to restart it ?"
msgstr "³o­Ó %s ®M¥ó»Ý­n¦w¸Ë¤W¡A±z­n¦w¸Ë¸Ó®M¥ó¶Ü¡H"

#: ../../standalone/drakbug:1
#, c-format
msgid "Package: "
msgstr "®M¥ó¡G "

#: ../../standalone/drakboot:1
#, c-format
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr "µLªk¼g¤J /etc/sysconfig/bootsplash¡C"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "SECURITY WARNING!"
msgstr "¦w¥þ©Êĵ§i"

#: ../../standalone/drakfont:1
#, c-format
msgid "StarOffice"
msgstr "StarOffice"

#: ../../standalone/drakboot:1
#, c-format
msgid "No, I don't want autologin"
msgstr "¤£¡A§Ú¤£»Ý­n¦Û°Êµn¤J (AutoLogin)"

#: ../../standalone/drakbug:1
#, c-format
msgid "Windows Migration tool"
msgstr "Windows ¾ã¦X¤u¨ã"

#: ../../any.pm:1 ../../help.pm:1
#, fuzzy, c-format
msgid "All languages"
msgstr "¿ï¾Ü»y¨t"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Removing %s"
msgstr "¥¿¦b²¾°£ %s"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Testing your connection..."
msgstr "¥¿¦b´ú¸Õºô¸ô³s½u"

#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Cache size"
msgstr "²Õ¶ô¤j¤p"

#: ../../security/level.pm:1
#, c-format
msgid ""
"Passwords are now enabled, but use as a networked computer is still not "
"recommended."
msgstr "¤w±Ò°Ê±K½X»{ÃÒ¥\¯à¡A¦ý¤´µM¤£«Øij±N¦¹¨t²Î¹B§@©óºô¸ô¤Wºô¸ôÀô¹Ò¡C"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Start sector: "
msgstr "¶}©lªººÏ°Ï¡G "

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

#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "³o­Ó %s ®M¥ó»Ý­n¦w¸Ë¤W¡A±z­n¦w¸Ë¸Ó®M¥ó¶Ü¡H"

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

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
"detection with the models listed in its printer database to find the best "
"match. This choice can be wrong, especially when your printer is not listed "
"at all in the database. So check whether the choice is correct and click "
"\"The model is correct\" if so and if not, click \"Select model manually\" "
"so that you can choose your printer model manually on the next screen.\n"
"\n"
"For your printer Printerdrake has found:\n"
"\n"
"%s"
msgstr ""
"PrinterDrake µ{¦¡¤w¸g¤ñ¸û¤F²{¦³¸ê®Æ®w¤º¥H¤Î¦Û°Ê°»´úªºµ²ªG¡A¥H«K©ó¯à°÷§ä¥X³Ì¾A"
"¥Îªº¦Lªí¾÷Ãþ«¬¡C³o­Óµ²ªG¥i¯à¦³°ÝÃD¡A¤×¨ä±zªº¦Lªí¾÷ªº¶µ¥Ø¨Ã¨S¦³µn°O¦b¥Ø«e¤wª¾"
"ªº¸ê®Æ®w¤º®É¡A©Ò¥H½ÐÀ˵ø³o­Óµ²ªG¬O§_¥¿½T¡A¥²­n®É½Ð¿ï¾Ü¡u¤â°Ê¿ï¾Ü«¬¸¹¡v¶µ¥Ø¬D"
"¿ï¥X¥¿½Tªº«¬¸¹¶µ¥Ø¡C\n"
"\n"
"¥Ø«e PrinterDrake µ{¦¡©Ò§ä¨ìªº¦Lªí¾÷¶µ¥Ø¦p¤U¡G\n"
"\n"
"%s"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Bad password on %s"
msgstr "%s - ¿ù»~ªº±K½X"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
"There is one unknown printer directly connected to your system"
msgstr ""
"\n"
"¥Ø«e¦³¤@¥x¥¼ª¾Ãþ«¬ªº¦Lªí¾÷¦w¸Ë¦b±z¥»¾÷¤W¡C"

#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Right Control key"
msgstr "¥k¤è Alt «öÁä"

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

#: ../../security/level.pm:1
#, c-format
msgid "Security Administrator (login or email)"
msgstr "¦w¥þ©ÊºÞ²zªÌ (login ©Î¬O email)"

#: ../../standalone/drakgw:1
#, c-format
msgid "Sorry, we support only 2.4 kernels."
msgstr "©êºp¡A¥Ø«e¥u¦³¤ä´©¨Ï¥Î 2.4 ªº®Ö¤ßª©¥»¡C"

#: ../../keyboard.pm:1
#, c-format
msgid "Romanian (qwerty)"
msgstr "ù°¨¥§¨È (qwerty)"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Under Devel ... please wait."
msgstr ""

#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
msgid "Czech Republic"
msgstr "±¶§J¦@©M°ê"

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

#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Sound card"
msgstr "­µ®Ä¥d"

#: ../../standalone/drakfont:1
#, c-format
msgid "Import Fonts"
msgstr "¦r«¬¶×¤J"

#: ../../diskdrake/hd_gtk.pm:1
#, fuzzy, c-format
msgid ""
"You have one big MicroSoft Windows partition.\n"
"I suggest you first resize that partition\n"
"(click on it, then click on \"Resize\")"
msgstr ""
"±z¦³¤@­Ó«Ü¤jªº fat ¤À³Î°Ï (MicroSoft ªº\n"
"Dos/Windows §@·~¨t²Î¥Îªº®æ¦¡)¡A«Øij±z­«\n"
"³]³o­Ó¤À³Î°Ïªº¤j¤p (ÂI¿ï³o­Ó¤À³Î°Ï¡AµM\n"
"«á«ö \"§ïÅܤj¤p\" )"

#: ../../standalone/drakfont:1
#, c-format
msgid "Suppress Temporary Files"
msgstr "¤£§R°£¼È®ÉÀÉ®×"

#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"\n"
msgstr ""
"®¥³ß ! ºô¸ô³]©w²ÕºA¤w¸g³]©w§¹¦¨¤F¡C\n"
"±zªº¨t²Î¤w¸g¯à°÷¨Ï¥Î¸Ó³]©w¡C\n"
"\n"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Change partition type"
msgstr "§ïÅܤÀ³Î°Ï®æ¦¡"

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

#: ../../standalone/draksec:1
#, c-format
msgid "Network Options"
msgstr "ºô¸ô¿ï¶µ"

#: ../../standalone/drakboot:1
#, c-format
msgid ""
"Display theme\n"
"under console"
msgstr ""
"¦b console\n"
"Åã¥Ü§G´º"

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

#: ../../printer/cups.pm:1
#, c-format
msgid "(on %s)"
msgstr "(©ó %s)"

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

#: ../../security/level.pm:1
#, c-format
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr "¯à°÷°»´ú¨¾¿m½w½Ä°Ï·¸¦ì»P®æ¦¡¤Æ¦r¦ê³oÃþ§ðÀ»ªºµ{¦¡®w®M¥ó¡C"

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

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "New printer name"
msgstr "·s¦Lªí¾÷¦WºÙ"

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

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
"Allow/Forbid autologin."
msgstr ""

#: ../../standalone/drakbackup:1
#, c-format
msgid "Build Backup"
msgstr "«Ø¥ß³Æ¥÷"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
"­n¦b²×ºÝ¾÷©R¥O¦CÀô¹Ò¦C¦LÀɮתº¸Ü¡A±z¥i¥H°õ¦æ³o­Ó«ü¥O: \"%s <ÀÉ®×>\" ©ÎªÌ¬O "
"\"%s <ÀÉ®×>\"¡C\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Currently, no alternative possibility is available"
msgstr ""

#: ../../keyboard.pm:1
#, c-format
msgid "Romanian (qwertz)"
msgstr "ù°¨¥§¨È (qwertz)"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Write Config"
msgstr "¼g¤J³]©w"

#: ../../services.pm:1
#, c-format
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
"routing protocols are needed for complex networks."
msgstr ""
"routed ªA°Èµ{¦¡¤¹³\³z¹L RIP ³q°T¨ó©w¨Ó§ó·s¸ô¥Ñªíªº¸ê°T¡C\n"
"¤@¯ë¨Ó»¡¡ARIP ¬Oµ¹¤p«¬ºô¸ô¥Î³~¨Ï¥Î¡C"

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

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
"Allow/Forbid remote root login."
msgstr ""

#: ../../standalone/draksplash:1
#, c-format
msgid "Browse"
msgstr "ÂsÄý"

#: ../../harddrake/data.pm:1
#, fuzzy, c-format
msgid "CDROM"
msgstr "©ó CDROM ¸Ë¸m"

#: ../../network/tools.pm:1
#, c-format
msgid "Do you want to try to connect to the Internet now?"
msgstr "±z·Q­n¸ÕµÛ³s½u¨ì Internet ¤W­±¶Ü?"

#: ../../keyboard.pm:1
#, c-format
msgid "Belgian"
msgstr "¤ñ§Q®É"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "±z¨t²Î¦³ ISA ­µ®Ä¥d¶Ü¡H"

#: ../../network/ethernet.pm:1
#, c-format
msgid ""
"No ethernet network adapter has been detected on your system.\n"
"I cannot set up this connection type."
msgstr "¨t²Î°»´ú¤£¨ì¦³¥ô¦óºô¸ô¥dªº¦w¸Ë¡C©Ò¥HµLªk³]©w³sµ²Ãþ«¬¡C"

#: ../../diskdrake/hd_gtk.pm:1
#, fuzzy, c-format
msgid "Windows"
msgstr "Windows ºô°ì"

#: ../../common.pm:1
#, c-format
msgid "Can't make screenshots before partitioning"
msgstr "¦b©|¥¼¶i¦æ¤À³Î«eµLªk´£¨Ñµe­±®·®»¥\¯à"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Host Name"
msgstr "¥D¾÷¦WºÙ"

#: ../../standalone/logdrake:1
#, c-format
msgid "/File/Save _As"
msgstr "/ÀÉ®×/¥t¦s·sÀÉ (_A)"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"To get access to printers on remote CUPS servers in your local network you "
"only need to turn on the \"Automatically find available printers on remote "
"machines\" option; the CUPS servers inform your machine automatically about "
"their printers. All printers currently known to your machine are listed in "
"the \"Remote printers\" section in the main window of Printerdrake. If your "
"CUPS server(s) is/are not in your local network, you have to enter the IP "
"address(es) and optionally the port number(s) here to get the printer "
"information from the server(s)."
msgstr ""

#: ../../standalone/scannerdrake:1
#, c-format
msgid "%s is not in the scanner database, configure it manually?"
msgstr "¦b±½´y¾¹¸ê®Æ®w¤º§ä¤£¨ì¦¹«¬¸¹ - %s¡A±z­n¤â°Ê³]©w¶Ü¡H"

#: ../../any.pm:1
#, c-format
msgid "Delay before booting default image"
msgstr "¦b±Ò°Ê§@·~¨t²Î«e¥ý©µ¿ðªº®É¶¡"

#: ../../any.pm:1
#, c-format
msgid "Restrict command line options"
msgstr "­­¨î¦b boot: «ü¥O¦æ¿é¤J°Ñ¼Æ"

#: ../../standalone/drakxtv:1
#, c-format
msgid "East Europe"
msgstr "ªF¼Ú"

#: ../../help.pm:1 ../../install_interactive.pm:1
#, c-format
msgid "Use free space"
msgstr "¨Ï¥Î¥¼¥Î¨ìªºªÅ¶¡"

#: ../../network/adsl.pm:1
#, c-format
msgid "use dhcp"
msgstr "¨Ï¥Î dhcp"

#: ../../standalone/logdrake:1
#, c-format
msgid "Mail alert"
msgstr "¶l¥óĵ¥Ü"

#: ../../network/tools.pm:1
#, c-format
msgid "Internet configuration"
msgstr "Internet ³]©w"

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

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Detected %s"
msgstr "°»´ú¨ì %s"

#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "/Autodetect _printers"
msgstr "¦Û°Ê°»´ú"

#: ../../interactive.pm:1 ../../my_gtk.pm:1 ../../ugtk2.pm:1
#: ../../interactive/newt.pm:1
#, c-format
msgid "Finish"
msgstr "§¹¦¨"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Show automatically selected packages"
msgstr "Åã¥Ü¦Û°Ê¿ï¨úªº®M¥ó"

#: ../../standalone/harddrake2:1
#, c-format
msgid "CPU flags reported by the kernel"
msgstr ""

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

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Something went wrong! - Is mkisofs installed?"
msgstr "»s§@®Éµo¥Í¿ù»~¡A±z½T»{§A¦³¦w¸Ë mkisofs µ{¦¡"

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

#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Please try again"
msgstr "½Ð¦A¸Õ¤@¦¸"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "The model is correct"
msgstr "¸Ó«¬¸¹¥¿½T"

#: ../../install_interactive.pm:1
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT ­«©w¤j¤p¥¢±Ñ¡G %s"

#: ../../help.pm:1 ../../install_steps_gtk.pm:1
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Individual package selection"
msgstr "¿ï¨ú³æ¤@®M¥ó"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "This partition is not resizeable"
msgstr "³o­Ó¤À³Î°ÏµLªk½Õ¾ã¤j¤p"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Location"
msgstr "¦ì¸m"

#: ../../standalone/drakxtv:1
#, c-format
msgid "USA (cable-hrc)"
msgstr "¬ü°ê (cable-hrc)"

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

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

#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "This machine"
msgstr "(¦ì©ó³o­Ó¾÷¾¹¤W)"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS ©³¤UªººÏºÐ¥N¸¹¡G %s (²q´ú­È¡A¶È¨Ñ°Ñ¦Ò)\n"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Select the files or directories and click on 'OK'"
msgstr "¿ï¨úÀɮשΪ̬O¥Ø¿ý¡AµM«áÂI¿ï '¥[¤J'"

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

#: ../../standalone/drakfloppy:1
#, c-format
msgid "omit scsi modules"
msgstr "¬Ù²¤ scsi ¼Ò²Õ"

#: ../../standalone/harddrake2:1
#, c-format
msgid "family of the cpu (eg: 6 for i686 class)"
msgstr ""

#: ../../network/netconnect.pm:1
#, c-format
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
"Click on Ok to keep your configuration, or cancel to reconfigure your "
"Internet & Network connection.\n"
msgstr ""
"¦]¬°±z¬O³z¹Lºô¸ô¦w¸Ë¡A©Ò¥H±zªººô¸ô²ÕºA¤w¸g³]©w¹L¤F¡C\n"
"±z¥i¥HÂI¿ï½T©w¨Ï¥Î­ì¥»ºô¸ôªº³]©w²ÕºA¡A©ÎªÌ¬O¿ï¨ú¨ú®ø\n"
"¨Ó­«·s³]©wºô¸ô³s½u¤è¦¡¡C\n"

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Áä½Lªº§Î¦¡¡G %s\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Here you can choose whether the printers connected to this machine should be "
"accessable by remote machines and by which remote machines."
msgstr ""

#: ../../keyboard.pm:1
#, c-format
msgid "Maltese (US)"
msgstr "°¨º¸¥L»y (US)"

#: ../../services.pm:1
#, c-format
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
msgstr ""
"±¾¸ü»P¨ø¤U©Ò¦³ºô¸ôÀɮרt²Î¡A¤ñ¤è¹³¬O ºô¸ôÀɮרt²Î(NFS), SMB, \n"
"NCP (NetWare) ³oÃþ¡C"

#: ../../harddrake/data.pm:1
#, fuzzy, c-format
msgid "Tvcard"
msgstr "¹qµø¥d"

#: ../../help.pm:1
#, fuzzy, c-format
msgid "Toggle between normal/expert mode"
msgstr "¤Á´«¨ì¤@¯ë¼Ò¦¡"

#: ../../standalone/drakfloppy:1
#, c-format
msgid "Size"
msgstr "¤j¤p"

#: ../../help.pm:1
#, fuzzy, c-format
msgid "GRUB"
msgstr "GB"

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

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

#: ../../standalone/drakbackup:1
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr "¤£¥¿½TªººÏ±a¼ÐÅÒ¡AºÏ±a¼ÐÅÒ¬° %s¡C"

#: ../../standalone/drakgw:1
#, c-format
msgid ""
"The setup of Internet Connection Sharing has already been done.\n"
"It's currently enabled.\n"
"\n"
"What would you like to do?"
msgstr ""
"¥Ø«e Internet ³s½u¤À¨Éªº³]©w¤w¸g§¹¦¨¤F.. ¥Ø«e¤w¸g¥i¥Î¤F..\n"
"±z¥Ø«e¥´ºâ­n°µ¤°»ò©O¡H"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Delete All NBIs"
msgstr "§R°£©Ò¦³ NBI"

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"This dialog allows you to fine tune your bootloader:\n"
"\n"
" * \"%s\": there are three choices for your bootloader:\n"
"\n"
"    * \"%s\": if you prefer grub (text menu).\n"
"\n"
"    * \"%s\": if you prefer LILO with its text menu interface.\n"
"\n"
"    * \"%s\": if you prefer LILO with its graphical interface.\n"
"\n"
" * \"%s\": in most cases, you will not change the default (\"%s\"), but if\n"
"you prefer, the bootloader can be installed on the second hard drive\n"
"(\"%s\"), or even on a floppy disk (\"%s\");\n"
"\n"
" * \"%s\": after a boot or a reboot of the computer, this is the delay\n"
"given to the user at the console to select a boot entry other than the\n"
"default.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
"\"%s\"), you must ensure that you have a way to boot your Mandrake Linux\n"
"system! Be sure you know what you are doing before changing any of the\n"
"options. !!\n"
"\n"
"Clicking the \"%s\" button in this dialog will offer advanced options which\n"
"are normally reserved for the expert user."
msgstr ""
"LILO »P GRUB ³£¬O GNU/Linux ªº¶}¾÷±Ò°Êµ{¦¡¡C¤@¯ë¨Ó»¡¡A³o­Ó³]©w¶¥¬q¬O¥þ¦Û°Ê"
"ªº¡C¨Æ¹ê¤W¡ADrakX ·|¤ÀªR¨t²ÎºÏºÐ¶}¾÷ºÏ°Ï¤W­±ªº¤º®e¡A¨Ó¨M©w¤@¨Ç¨Æ±¡:\n"
"\n"
" * ­Y¬O¦³§ä¨ì Windows ªº¶}¾÷ºÏ°Ï¡Aµ{¦¡±N·|¨Ï¥ÎGRUB/LILOµ{¦¡¥[¥H¨ú¥N¡A¦p¦¹¡A±z"
"´N¥i¥H¨Ï¥Î GRUB ©ÎªÌ¬O LILO ¶}¾÷µ{¦¡¨Ó±Ò°Ê Linux ¨t²Î¡A¬Æ¦Ü¬O¥i¥H±Ò°Ê¥t¥~¤@­Ó"
"§@·~¨t²Î(¤ñ¤è¹³¬O Windows µ¥)¡C\n"
"\n"
" * ¦pªG¦b¶}¾÷ºÏ°Ï¤W¤w¸g§ä¨ì¤F GRUB ©ÎªÌ¬O LILO ¶}¾÷µ{¦¡¡Aµ{¦¡±N·|¨Ï¥Î·sªº³]©w"
"­ÈÂл\¡A¦pªG¦w¸Ëµ{¦¡¦³µLªk¦Û°Ê³B²zªº±¡ªp¡A¥¦·|Åã¥Ü¥X¤U­±ªº¿ï¶µ¡C\n"
"\n"
" * \"­n¨Ï¥Î¨º­Ó¶}¾÷ºÞ²zµ{¦¡\": ±z¦³¤T¦U¶µ¥Ø¥i¥H¿ï¾Ü:\n"
"\n"
"    * ¡uGRUB¡v: ¦pªG±z¤ñ¸û³ßÅw¨Ï¥Î GRUB (³o¬O¤å¦r¼Ò¦¡ªº¶}¾÷¿ï³æ)¡C\n"
"\n"
"    * ¡u¹Ï§Î¿ï³æ LILO ¤¶­±¡v: ¦pªG±z§Æ±æ¨Ï¥Î¹Ï§Î¤Æªº LILO ¶}¾÷¿ï³æ¡C\n"
"\n"
"    * ¡u¤å¦r¿ï³æ LILO ¤¶­±¡v: ¦pªG±z§Æ±æ¨Ï¥Î¤å¦r¼Ò¦¡ªº LILO ¶}¾÷¿ï³æ¡C\n"
"\n"
" * \"¶}¾÷¸Ë¸m\" ³o­Ó¦a¤è¡A¤@¯ë¨Ó»¡¥i¥H¤£¥Î§ó§ï¡A¤ñ¤è¹³¬O¤@¯ë\n"
"¦w¸Ë¦b²Ä¤@¥xµwºÐ (/dev/hda) ¤W¡A±z¤]¥i¥HÅܧó¿ï¾Ü¡A¤ñ¤è¹³¬O\n"
"¦w¸Ë¨ì²Ä¤G¥xµwºÐ (/dev/hdb)¡A¬Æ¦Ü¬O¦w¸Ë¨ì³nºÐ (/dev/fd0)\n"
"³£¬O¥i¦æªº¡C\n"
"\n"
" * \"¦b±Ò°Ê§@·~¨t²Î«e¥ý©µ¿ðªº®É¶¡\": ·í±Ò°Ê¹q¸£®É¡A·|¥ý¼È°±¤@·|®É¶¡µM«áÅý¨Ï¥Î"
"ªÌ¿ï¾Ü­n±Ò°Ê¨º­Ó¶µ¥Ø¶i¦æ¶}¾÷¡C\n"
"\n"
"!! ½Ðª`·N¡A¦pªG±z¿ï¨ú¡y¨ú®ø¡z¥´ºâ¤£¦w¸Ë¶}¾÷±Ò°Êµ{¦¡ªº¸Ü¡A±z±o½T©w±z¦³¿ìªk¯à°÷"
"¦b¤U¦¸­«·s±Ò°Ê¹q¸£«á¯à°÷¶i¤J Mandrake Linux ¨t²ÎÀô¹Ò¡C¦]¦¹¡A·í§A­n¿ï¾Ü¨ú®ø³o"
"­Ó¦w¸Ë¶µ¥Ø«e¡A½Ð¤T«ä!!!\n"
"\n"
"±z¥i¥HÂI¿ï¡y¶i¶¥¡z«ö¶s¡A±z±N¦³§ó¦hµ¹±M®aµ¥¯Å¨Ï¥ÎªÌ©Ò¨Ï¥Îªº¶i¶¥¿ï¶µ¡C\n"
"\n"
"Mandrake Linux ¦w¸Ëµ{¦¡±N·|§â¶}¾÷ºÞ²zµ{¦¡¦w¸Ë¨ì¨t²Î¤º¡A¦p¦¹±z´N¯à°÷³z¹L³o­Ó¶}"
"¾÷ºÞ²zµ{¦¡±Ò°Ê±z¹q¸£ªº GNU/Linux Àô¹Ò¡A¬Æ¦Ü¬O¨ä¥L¤w¸g¦w¸Ë©ó²Îªº§@·~¨t²ÎÀô"
"¹Ò¡C\n"
"\n"
"·í¦w¸Ëµ{¦¡°»´ú¨ì±z¨t²Î¤w¸g¦³¦w¸Ë¤F¨ä¥L§@·~¨t²Î¡A±Ò°Ê¸Ó§@·~¨t²Îªº¶µ¥Ø±N·|¦Û°Ê"
"ªº¥[¤J¶}¾÷¿ï³æ¤º¡A¨Ã¥]§t¤â°Ê·s¼W¶}¾÷¶µ¥Ø»P­×§ï¶}¾÷¶µ¥Øªº¤º®e³]©w¡C\n"
"±z¥i¥H¦bÅã¥Ü¥X¥i¨Ñ¿ï¾Ü¶}¾÷¶µ¥Ø¤W§Ö³tÂI¨â¦¸Åܧ󤺮e¬Æ¦Ü¬O§R°£¸Ó±Ò°Ê¶µ¥Ø;¨Ï¥Î"
"¡y·s¼W¡z¨Ó«Ø¥ß¶}¾÷¶µ¥Ø¤º®e; µM«áÂI¿ï¡y§¹¦¨¡z¥H«K©óÄ~Äò¶i¦æ¤U­±ªº¦w¸Ë¶µ¥Ø¡C"

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

#: ../../Xconfig/card.pm:1
#, c-format
msgid "Which configuration of XFree do you want to have?"
msgstr "±z­n¥Î­þ¤@­Ó XFree ³]©w ?"

#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "More"
msgstr "§ó¦h"

#: ../../security/level.pm:1
#, c-format
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
"The security is now high enough to use the system as a server which can "
"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
"Internet, you should choose a lower level."
msgstr "°ª«×ªº¦w¥þ©Ê¬ÛÃöªºÀˬd»P³]©w¡A¾A¦X´£¨Ñ¦b¬[³]¹ï¥~ªA°Èªº¦øªA¾¹¨Ï¥Î¡C"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Account Password"
msgstr "±b¸¹ªº±K½X"

#: ../../any.pm:1
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
"System Commander).\n"
"\n"
"On which drive are you booting?"
msgstr ""
"±z½T©w­n±N¶}¾÷ºÞ²zµ{¦¡¦w¸Ë©ó¤À³Î°Ï¤W­±¡C\n"
"³o¥i¯à·|ªþ»\±¼­ì¥»¤À³Î°Ï¤W­±­ì¦³ªº¶}¾÷ºÞ²zµ{¦¡\n"
"(¤ñ¤è System Commander)¡C\n"
"\n"
"±z¥´ºâ¥Î¨ºÁûµwºÐ¶}¾÷©O¡H"

#: ../../keyboard.pm:1
#, c-format
msgid "Tajik keyboard"
msgstr "Tajik Áä½L"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
"s to %s, your current spooler. All the configuration data (printer name, "
"description, location, connection type, and default option settings) is "
"overtaken, but jobs will not be transferred.\n"
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
"­Y¬O±z¤w¸g³]©w¹L %s spooler ¦Lªí¾÷¶µ¥Øªº¸Ü¡A±z¥i¥H«Ü²³æ\n"
"±N²ÕºA³]©w¤º®e®M¥Îµ¹ %s ¶µ¥Ø¡C¯à°÷®M¥Îªº²ÕºA¶µ¥Ø¡A¥]§t¹³¬O\n"
"¦Lªí¾÷ªº¦WºÙ¡B´y­z¸ê°T¡B¦ì¸m¡B³s½uÃþ«¬¡B¹w³]°Ñ¼Æµ¥µ¥¶µ¥Ø¡A\n"
"¤£¹L¤£¥]§t¶Ç°e­n¦C¦Lªº¤u§@¶µ¥Ø¥\¯à¡C\n"
"¥t¥~¨Ã¤£¬O©Ò¦³ªº¦C¦L¤u§@³£¯à°÷³Q¶Ç¿é¹L¨Ó¡A¦]¬°¤U­±­ì¦]¡G\n"

#: ../../standalone/drakfont:1
#, c-format
msgid "Font List"
msgstr "¦r«¬²M³æ"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
" enable the bootloader.  If you don't see the bootloader prompt at\n"
" reboot, hold down Command-Option-O-F at reboot and enter:\n"
" setenv boot-device %s,\\\\:tbxi\n"
" Then type: shut-down\n"
"At your next boot you should see the bootloader prompt."
msgstr ""
"±z¤]³\»Ý­n§ïÅܱzªº Open Firmware ¤W­±ªº¶}¾÷¸Ë¸m³]©w¡A\n"
"¥H«K©ó¶}±Ò¶}¾÷±Ò°Êµ{¦¡ªº¥\¯à¡C¦pªG±z¶}¾÷®É¨Ã¨S¦³¶}¨ì\n"
"¶}¾÷µ{¦¡ªº¥ô¦ó°T®§¡A©ó­«·s¶}¾÷®É«ö¦í Command-Option-O-F¡A\n"
"µM«á¿é¤J: setenv boot-device %s,\\\\:tbxi\n"
"µM«á¦A¿é¤J: shut-down\n"
"µM«á§A¤U¤@¦¸¶}¾÷®ÉÀ³¸Ó´N¥i¥H¬Ý¨ì¶}¾÷±Ò°Êµ{¦¡ªº°T®§¤F¡C"

#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
"The install will continue, but you'll\n"
" need to use BootX or some other means to boot your machine"
msgstr ""
"±zªº¨t²Î¦ü¥G¦³ OldWorld ©ÎªÌ¬O¨ä¥L¤£»{ÃѪº¶µ¥Ø¡A\n"
"³o±N·|¾É­Pyaboot ¶}¾÷±Ò°Êµ{¦¡µLªk¥¿±`¹B§@¡C\n"
"¦w¸ËÁÙ¬O·|Ä~Äò¤U¥h¡A¤£¹L±z¤]³\»Ý­n¨Ï¥Î bootX \n"
"¨Ó±Ò°Ê§Aªº¹q¸£¡C"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Select file"
msgstr "¿ï¾ÜÀÉ®×"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Choose the network or host on which the local printers should be made "
"available:"
msgstr ""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
"³o­Ó«ü¥O¥\¯à¡A¨ä¹ê±z¤]¥i¥H¦b³\¦hÀ³¥Îµ{¦¡¦C¦L¹ï¸Ü¤è¶ôªº \"¦C¦L©R¥O\" ¨Ï¥Î"
"¥¦¡C\n"
"¦ý¬O³oÃ䤣´£¨Ñ©Ò¿×ªºÀɮצWºÙ¡A¦]¬°¬ÛÃöÀɮתº¦C¦L¥\¯à¬O¥Ñ¬ÛÃöÀ³¥Îµ{¦¡´£¨Ñ¡C\n"

#: ../../lang.pm:1
#, c-format
msgid "Japan"
msgstr "¤é¥»"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Print option list"
msgstr "¦C¦L¿ï¶µ²M³æ"

#: ../../standalone/localedrake:1
#, c-format
msgid "The change is done, but to be effective you must logout"
msgstr "Åܧó¤w¸g§¹¦¨¡A¤£¹L±z»Ý­n­«·sµn¤J¤~¯à°÷¥Í®Ä"

#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Search servers"
msgstr "·j´M¦øªA¾¹"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "NCP queue name missing!"
msgstr "NCP ¦C¦L¦î¦C¦WºÙ¦WºÙ¨S«ü©w"

#: ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid ""
"Warning, another internet connection has been detected, maybe using your "
"network"
msgstr "ĵ§i¡A°»´ú¨ì±z¨t²Î¤w¸g¦³²{¦¨ªººô¸ô³s½u¡A¤]³\¥¿¦b¦s¨ú±zªººô¸ôªA°È"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "¼Ð¬° \"%s\" ªº¥úºÐ¤ù"

#: ../../services.pm:1
#, c-format
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
msgstr "Àx¦s»P¦^¦s°ª«~½è¨t²Î¶Ã¼Æ²£¥Í¾¹"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
"µLªkÀˬd¸Ó %s Àɮרt²Î¡A±z­n­×´_¸Ó¿ù»~¶Ü¡H(½Ðª`·N¡A­×´_¥i¯à¾É­P¿ò¥¢¸ê®Æ)"

#: ../../share/advertising/07-server.pl:1
#, c-format
msgid "Turn your computer into a reliable server"
msgstr ""

#: ../../network/network.pm:1
#, c-format
msgid " (driver %s)"
msgstr "(driver %s)"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"Loopback file(s):\n"
"   %s\n"
msgstr ""
"¶¦^¸Ë¸m (loopback) ÀÉ®×:\n"
"   %s\n"

#: ../../network/isdn.pm:1
#, c-format
msgid "I don't know"
msgstr "¤£²M·¡"

#: ../../printer/main.pm:1
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr "¡ATCP/IP ¥D¾÷ \"%s\"¡A³s±µ°ð %s"

#: ../../standalone/drakautoinst:1
#, c-format
msgid ""
"You are about to configure an Auto Install floppy. This feature is somewhat "
"dangerous and must be used circumspectly.\n"
"\n"
"With that feature, you will be able to replay the installation you've "
"performed on this computer, being interactively prompted for some steps, in "
"order to change their values.\n"
"\n"
"For maximum safety, the partitioning and formatting will never be performed "
"automatically, whatever you chose during the install of this computer.\n"
"\n"
"Do you want to continue?"
msgstr ""
"¥Ø«e·Ç³Æ³]©w¦Û°Ê¦w¸ËºÏ¤ù¡C³o­Ó¥\¯à¦³ÂI¦MÀI¡A¨Ï¥Î¤W­n«Ü·V­«¡C\n"
"\n"
"³o­Ó¥\¯à¡A±z±N¯à°÷«Ü¦Û°Êªº¦b©Ò­n¦w¸Ëªº¹q¸£¤W¦Û°Ê¶i¦æ¦w¸Ëªº\n"
"°Ê§@¡A¦³¨Ç¨BÆJ«h¯à°÷°±¤U¨ÓÅý¨Ï¥ÎªÌ¦Û¤v¤â°Ê¶i¦æ¤@¨Ç¾Þ§@¡C\n"
"\n"
"¬°¤F³Ì¦w¥þ¦Ò¶q¡A©Ò¦³¤À³Î°Ï¹º¤À¥H¤Î®æ¦¡¤Æ°Ê§@±N·|¦Û°Ê¶i¦æ¡C\n"
"\n"
"±z§Æ±æÄ~Äò¶Ü¡H"

#: ../../harddrake/sound.pm:1
#, c-format
msgid ""
"\n"
"\n"
"Your card currently use the %s\"%s\" driver (default driver for your card is "
"\"%s\")"
msgstr ""

#: ../../standalone/drakfont:1
#, c-format
msgid "Post Uninstall"
msgstr "«áÄò¤Ï¦w¸Ë³]©w"

#: ../../standalone/scannerdrake:1
#, c-format
msgid " ("
msgstr ""

#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Cpuid level"
msgstr "¦w¥þµ¥¯Å"

#: ../../keyboard.pm:1
#, c-format
msgid "Mongolian (cyrillic)"
msgstr "¶ëº¸ºû¨È (cyrillic)"

#: ../../standalone/drakfloppy:1
#, c-format
msgid "Add a module"
msgstr "·s¼W¼Ò²Õ"

#: ../../standalone/drakconnect:1
#, c-format
msgid "Profile to delete:"
msgstr "­n§R°£¨º­Ó³]©wÀÉ¡G"

#: ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Local measure"
msgstr "¥»¾÷±K½XÀÉ"

#: ../../network/network.pm:1
#, c-format
msgid "Warning : IP address %s is usually reserved !"
msgstr ""

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

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Account Login (user name)"
msgstr "µn¤Jªº±b¸¹ (¨Ï¥ÎªÌ¦WºÙ)"

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

#: ../../network/drakfirewall.pm:1
#, c-format
msgid ""
"drakfirewall configurator\n"
"\n"
"Make sure you have configured your Network/Internet access with\n"
"drakconnect before going any further."
msgstr ""

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

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

#: ../../standalone/drakperm:1
#, c-format
msgid "Path selection"
msgstr "¸ô®|¿ï¾Ü"

#: ../../standalone/scannerdrake:1
#, c-format
msgid "Name/IP address of host:"
msgstr ""

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Monitor: %s\n"
msgstr "¿Ã¹õ¡G %s\n"

#: ../../partition_table/raw.pm:1
#, fuzzy, c-format
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
"It means writing anything on the disk will end up with random, corrupted "
"data."
msgstr ""
"±zªºµwºÐµo¥Í¤F¤@­ÓÄY­«ªº¿ù»~¡A\n"
"µwºÐŪ¨ú¼g¤JÀË´ú¥¢±Ñ¤F...\n"
"³o·N¨ýµÛ±zªºµwºÐ¦³¹êÅ骺·´·l°ÝÃD¡A¥ô¦ó¦s¨ú¥i¯à³£·|µo¥Í¿ù»~¡C"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer host name or IP missing!"
msgstr "¨S«ü©w¦Lªí¾÷¥D¾÷¦WºÙ©Î¬OIP !"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Please check all users that you want to include in your backup."
msgstr "½ÐÀˬd§Æ±æ­n³Æ¥÷ªº©Ò¦³¨Ï¥ÎªÌ¶µ¥Ø¡C"

#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid ""
"The %s must be configured by printerdrake.\n"
"You can launch printerdrake from the Mandrake Control Center in Hardware "
"section."
msgstr ""
"³o¥x %s ±½´y¾¹»Ý­n¥ý°õ¦æ printerdrake µ{¦¡¶i¦æ³]©w¡C\n"
"±z¥i¥H³z¹L Mandrake ±±¨î¥x¤ºªºµwÅ鶵¥Ø¤º°õ¦æ¸Óµ{¦¡¡C"

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

#: ../../standalone/drakxtv:1
#, c-format
msgid "Japan (cable)"
msgstr "¤é¥» (cable)"

#: ../../standalone/drakfont:1
#, c-format
msgid "Initial tests"
msgstr "ªì©l´ú¸Õ"

#: ../../network/isdn.pm:1
#, c-format
msgid "Continue"
msgstr "Ä~Äò"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Custom Restore"
msgstr "¦Û­q¦^¦s¤è¦¡"

#: ../../help.pm:1
#, c-format
msgid ""
"\"%s\": if a sound card is detected on your system, it is displayed here.\n"
"If you notice the sound card displayed is not the one that is actually\n"
"present on your system, you can click on the button and choose another\n"
"driver."
msgstr ""

#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Script-based"
msgstr "Script-based"

#: ../../install_any.pm:1 ../../partition_table.pm:1
#, c-format
msgid "Error reading file %s"
msgstr "Ū¨úÀÉ®× %s ®Éµo¥Í¿ù»~"

#: ../../harddrake/v4l.pm:1
#, c-format
msgid "PLL setting:"
msgstr "PLL ³]©w¡G"

#: ../../install_interactive.pm:1 ../../install_steps.pm:1
#, c-format
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "±z¥²¶·¦³¤@­Ó±¾¸ü©ó /boot/efi ªº FAT ¤À³Î°Ï"

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

#: ../../diskdrake/dav.pm:1
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "URL ®æ¦¡¥²¶·¬° http:// ©Î¬O https:// Ãþ«¬"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
"±z¥i¥Hª½±µ¨Ï¥Î URI ªº¤è¦¡¦s¨ú¸Ó¦Lªí¾÷¡CURI ¥²¶·§¹¾ã¿é¤J\n"
"CUPS¦øªA¾¹©Ò¦b¦ì§}¡A©ÎªÌ¬O¥Î Foomatic ³W®æ¤è¦¡¿é¤J¡C\n"
"½Ðª`·N¡A¨Ã¤£¬O©Ò¦³ªº URI Ãþ«¬³£¯à°÷³Q©Ò¦³ªº spooler ¤ä´©¡C"

#: ../../any.pm:1
#, c-format
msgid "Other OS (SunOS...)"
msgstr "¨ä¥L§@·~¨t²Î (SunOS...)"

#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Install/Upgrade"
msgstr "¦w¸Ë/¤É¯Å"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "%d packages"
msgstr "%d ­Ó®M¥ó"

#: ../../standalone.pm:1
#, c-format
msgid ""
"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
"Backup and Restore application\n"
"\n"
"--default             : save default directories.\n"
"--debug               : show all debug messages.\n"
"--show-conf           : list of files or directories to backup.\n"
"--config-info         : explain configuration file options (for non-X "
"users).\n"
"--daemon              : use daemon configuration. \n"
"--help                : show this message.\n"
"--version             : show version number.\n"
msgstr ""

#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Domain Authentication Required"
msgstr "»Ý­n Domain »{ÃÒ"

#: ../../standalone/drakTermServ:1
#, c-format
msgid ""
"\n"
"\n"
" Thanks:\n"
"\t- LTSP Project http://www.ltsp.org\n"
"\t- Michael Brown <mbrown\\@fensystems.co.uk>\n"
"\n"
msgstr ""

#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
msgid "Costa Rica"
msgstr "­ô´µ¤j¾¤¥["

#: ../../security/level.pm:1
#, c-format
msgid "Use libsafe for servers"
msgstr "±Ò¥Î¡ulibsafe¡v¨¾Å@¥\¯à"

#: ../../keyboard.pm:1
#, c-format
msgid "Icelandic"
msgstr "¦B®q"

#: ../../standalone.pm:1
#, c-format
msgid ""
"\n"
"Usage: %s  [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
"testing] [-v|--version] "
msgstr ""

#: ../../standalone/XFdrake:1
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "½Ð­«·sµn¤J %s ¦nÅýÅܧó¥Í®Ä"

#: ../../my_gtk.pm:1
#, c-format
msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
msgstr ""

#: ../../standalone/drakboot:1
#, c-format
msgid "Lilo/grub mode"
msgstr "Lilo/grub ¼Ò¦¡"

#: ../../standalone/drakfloppy:1
#, c-format
msgid "Output"
msgstr "¿é¥X"

#: ../../loopback.pm:1
#, c-format
msgid "Circular mounts %s\n"
msgstr "%s ³Q´`Àô±¾¸ü\n"

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

#: ../../standalone/drakbackup:1
#, c-format
msgid "HardDrive / NFS"
msgstr "µwºÐ / NFS"

#: ../../modules/parameters.pm:1
#, c-format
msgid "a number"
msgstr "¤@­Ó¼Æ¦r"

#: ../../keyboard.pm:1
#, c-format
msgid "Swedish"
msgstr "·ç¨å"

#. -PO: the %s is the driver type (scsi, network, sound,...)
#: ../../modules/interactive.pm:1
#, c-format
msgid "Which %s driver should I try?"
msgstr "§ÚÀ³¸Ó¸Õ¨º­Ó %s ÅX°Êµ{¦¡©O¡H"

#: ../../standalone/logdrake:1
#, fuzzy, c-format
msgid ""
"You will receive an alert if one of the selected services is no longer "
"running"
msgstr "­Y¬O±z©Ò¿ï¨úªºªA°È¶µ¥Ø­Y¬O¨S°õ¦æªº¸Ü¡A±z±N·|¦¬¨ìĵ¥Ü³qª¾"

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Filesystem types:"
msgstr "Àɮרt²Î®æ¦¡¡G"

#: ../../printer/main.pm:1
#, c-format
msgid ", multi-function device on HP JetDirect"
msgstr "HP JetDirect ¤Wªº¦h¥\¯à¸Ë¸m"

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

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

#: ../../standalone/drakperm:1
#, c-format
msgid "user :"
msgstr "¨Ï¥ÎªÌ¡G"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Please enter your password"
msgstr "½Ð¿é¤Jµn¤J±K½X"

#: ../../standalone/drakconnect:1
#, c-format
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one) :"
msgstr "­n«Ø¥ßªº³]©wÀɦWºÙ (·sªº³]©wÀÉ·|¥ý¥Ñ¥Ø«eªº³]©wÀɽƻs¤º®e¹L¨Ó)¡G"

#: ../../harddrake/data.pm:1
#, fuzzy, c-format
msgid "Floppy"
msgstr "¶}¾÷¤ù"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "¦pªG±z­n¥ý²M°£¸ÓŪ¼g´C¤¶¸Ë¸m¤Wªº¸ê®Æ (1st Session)¡A½Ð¿ï¨ú¸Ó¶µ¥Ø"

#: ../../standalone/drakfont:1
#, c-format
msgid "Ghostscript referencing"
msgstr ""

#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Bootloader"
msgstr "­n¨Ï¥Î¨º­Ó¶}¾÷µ{¦¡"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Move"
msgstr "²¾°Ê"

#: ../../any.pm:1 ../../help.pm:1
#, c-format
msgid "Bootloader to use"
msgstr "­n¨Ï¥Î¨º­Ó¶}¾÷µ{¦¡"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "SMB server host"
msgstr "ºôªÚ¥D¾÷¦WºÙ¡¨"

#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "Name Servers:"
msgstr "Samba ¦øªA¾¹"

#: ../../install_messages.pm:1
#, c-format
msgid ""
"\n"
"Warning\n"
"\n"
"Please read carefully the terms below. If you disagree with any\n"
"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
"to continue the installation without using these media.\n"
"\n"
"\n"
"Some components contained in the next CD media are not governed\n"
"by the GPL License or similar agreements. Each such component is then\n"
"governed by the terms and conditions of its own specific license. \n"
"Please read carefully and comply with such specific licenses before \n"
"you use or redistribute the said components. \n"
"Such licenses will in general prevent the transfer,  duplication \n"
"(except for backup purposes), redistribution, reverse engineering, \n"
"de-assembly, de-compilation or modification of the component. \n"
"Any breach of agreement will immediately terminate your rights under \n"
"the specific license. Unless the specific license terms grant you such\n"
"rights, you usually cannot install the programs on more than one\n"
"system, or adapt it to be used on a network. In doubt, please contact \n"
"directly the distributor or editor of the component. \n"
"Transfer to third parties or copying of such components including the \n"
"documentation is usually forbidden.\n"
"\n"
"\n"
"All rights to the components of the next CD media belong to their \n"
"respective authors and are protected by intellectual property and \n"
"copyright laws applicable to software programs.\n"
msgstr ""
"\n"
"Warning\n"
"\n"
"Please read carefully the terms below. If you disagree with any\n"
"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
"to continue the installation without using these media.\n"
"\n"
"\n"
"Some components contained in the next CD media are not governed\n"
"by the GPL License or similar agreements. Each such component is then\n"
"governed by the terms and conditions of its own specific license. \n"
"Please read carefully and comply with such specific licenses before \n"
"you use or redistribute the said components. \n"
"Such licenses will in general prevent the transfer,  duplication \n"
"(except for backup purposes), redistribution, reverse engineering, \n"
"de-assembly, de-compilation or modification of the component. \n"
"Any breach of agreement will immediately terminate your rights under \n"
"the specific license. Unless the specific license terms grant you such\n"
"rights, you usually cannot install the programs on more than one\n"
"system, or adapt it to be used on a network. In doubt, please contact \n"
"directly the distributor or editor of the component. \n"
"Transfer to third parties or copying of such components including the \n"
"documentation is usually forbidden.\n"
"\n"
"\n"
"All rights to the components of the next CD media belong to their \n"
"respective authors and are protected by intellectual property and \n"
"copyright laws applicable to software programs.\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr "²¾°£¦ì©ó Star Office/OpenOffice.org/GIMP ªº¦Lªí¾÷"

#: ../../services.pm:1
#, c-format
msgid ""
"Linux Virtual Server, used to build a high-performance and highly\n"
"available server."
msgstr "Linux Virtual Server, ¥Î¨Ó¬[³]¤@­Ó°ª®Ä¯à»P°ª®Ä²vªº LVS ¦øªA¾¹¡C"

#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "4 billion colors (32 bits)"
msgstr "4 »õ¦â (32 ¦ì¤¸)"

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

#: ../../steps.pm:1
#, c-format
msgid "License"
msgstr ""

#: ../../standalone/drakbackup:1
#, c-format
msgid "This may take a moment to generate the keys."
msgstr "²£¥Í¾ÌÃÒÀɮסA½Ðµy«á...¡C"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr "¦Lªí¾÷¦Û°Ê°»´ú (¥»¾÷¡BTCP/Socket »P SMB ºô¸ô¦Lªí¾÷)"

#: ../../network/adsl.pm:1
#, c-format
msgid "Sagem (using pppoa) usb"
msgstr ""

#: ../../install_any.pm:1
#, c-format
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"µo¥Í¤F¤@­Ó¿ù»~ - §ä¤£¨ì¥ô¦ó¥i¥Îªº¸Ë¸m¥i¥H¥Î¨Ó«Ø¥ß·sªºÀɮרt²Î¡A½ÐÀˬd±zªºµwÅé"
"ª¬ªp¥H§ä¥X°ÝÃDªº"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Starting the printing system at boot time"
msgstr "©ó¶}¾÷®É±Ò°Ê¦C¦LªA°È¨t²Î"

#: ../../network/netconnect.pm:1
#, c-format
msgid "Do you want to start the connection at boot?"
msgstr "±z­n¦b¶}¾÷®É¦Û°Ê±Ò°Ê¸Ó³s½u¶Ü¡H"

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

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

#: ../../keyboard.pm:1
#, c-format
msgid "Polish (qwerty layout)"
msgstr "ªiÄõ (qwerty ¦¡°t¸m)"

#: ../../standalone/drakconnect:1
#, c-format
msgid "activate now"
msgstr "¥ß§Y±Ò°Ê"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
"\n"
"Drakbackup ¨Ï¥Î CD ¤è¦¡¶i¦æ³B²z¡G\n"
"\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
"s security level.\n"
"\n"
"This printing system runs a daemon (background process) which waits for "
"print jobs and handles them. This daemon is also accessable by remote "
"machines through the network and so it is a possible point for attacks. "
"Therefore only a few selected daemons are started by default in this "
"security level.\n"
"\n"
"Do you really want to configure printing on this machine?"
msgstr ""
"±z¥Ø«e¥¿·Ç³Æ¦b¡u%s¡v¦w¥þµ¥¯ÅªºÀô¹Ò¦w¸Ë¨Ó¦w¸Ë¡u%s¡z\n"
"³o­Ó¦C¦L¨t²Î¶µ¥Ø¡C\n"
"\n"
"³o­Ó¦C¦LªA°È¶µ¥Ø¡A¬ÛÃöµ{¦¡±N·|¦b¹õ«á¹B§@¡A¥H«K©ó¯à°÷\n"
"´£¨Ñ¬ÛÃö¦Lªí¥\¯à¡C¦¹¥~¡A¦C¦L¬ÛÃöªºªA°È¡A¤]¯à°÷¸g¥Ñºô¸ô\n"
"ªº¤è¦¡¶i¦æ¦s¨ú¡A©Ò¥H¬Y­Ó¼h­±¨Ó»¡³o¥i¯à¦³³Q§ðÀ»ªº¦MÀI¡C\n"
"¦]¦¹¡A¦b³o­Ó¦w¥þµ¥¯ÅÀô¹Ò¤U¡A±N¥u¦³¤Ö³¡¥÷ªºªA°Èµ{¦¡¹w³]\n"
"·|¦b¶}¾÷®É±Ò°Ê¡C\n"
"\n"
"±z½T©w­n¶}©l³]©w³o¥x¾÷¾¹¤Wªº¦C¦L¶µ¥Ø³]©w¶Ü¡H"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Host \"%s\", port %s"
msgstr "¥D¾÷ \"%s\"¡A³s±µ°ð %s"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "This partition can't be used for loopback"
msgstr "³o­Ó¤À³Î°Ï¤£¯à¥Î¨Ó§@¬° loopback ¸Ë¸m"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "File already exists. Use it?"
msgstr "Àɮפw¸g¦s¦b¤F¡A­n¨Ï¥Î³o­ÓÀɮ׶Ü?"

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

#: ../../keyboard.pm:1
#, c-format
msgid "Right Alt key"
msgstr "¥k¤è Alt «öÁä"

#: ../../standalone/harddrake2:1
#, c-format
msgid "the list of alternative drivers for this sound card"
msgstr "¥i¨Ñ±zªº­µ®Ä¥dÃB¥~¥i¿ï¾ÜªºÅX°Êµ{¦¡²M³æ"

#: ../../standalone/drakconnect:1
#, c-format
msgid "Gateway"
msgstr "¹h¹D"

#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Scanner sharing"
msgstr "ÀɮפÀ¨É"

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

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

#: ../../standalone/drakconnect:1
#, c-format
msgid "Profile: "
msgstr "³]©wÀÉ¡G"

#: ../../standalone/harddrake2:1
#, c-format
msgid ""
"Click on a device in the left tree in order to display its information here."
msgstr ""

#: ../../standalone/drakxtv:1
#, c-format
msgid "XawTV isn't installed!"
msgstr "XawTV µ{¦¡¨Ã¥¼¦w¸Ë¡I"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
"«Ø¥ß/¶Ç°e\n"
"³Æ¥÷ SSH ªº¾ÌÃÒÀÉ®×"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "¤£­n¥]§t­«­nªºÀÉ®× (passwd¡Bgroup¡Bfstab)"

#: ../../standalone/harddrake2:1
#, c-format
msgid "old static device name used in dev package"
msgstr "dev ®M¥ó¤º©Ò¨Ï¥ÎªºÂ¦³¸Ë¸m¦WºÙ"

#: ../../any.pm:1
#, c-format
msgid "This label is already used"
msgstr "³o­Ó¼ÐÅÒ¤w¸g¥Î¹L¤F"

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard will help you to install your printer(s) connected to this "
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
"detection of only the printers connected to this machine. So turn off the "
"auto-detection of network printers when you don't need it.\n"
"\n"
" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
"to set up your printer(s) now."
msgstr ""
"\n"
"Åwªï¨Ó¨ì¦Lªí¾÷³]©wºëÆF\n"
"\n"
"±µ¤U¨Ó³]©wºëÆF±N·|¤Þ¾É±z§¹¦¨¦Lªí¾÷ªº³]©w¡A¥]§t¦ì©ó¥»¾÷ªº¦Lªí¾÷¥H¤Î»·ºÝºô¸ô¦L"
"ªí¾÷¡C\n"
"­Y¬O±z­n³]©wªº¦Lªí¾÷¬Oª½±µ¦w¸Ë¦b§A¾÷¾¹¤Wªº¡A½Ð¥ý½T»{§Aªº½u¸ô¦³¦w´¡¥¿½T¡A¹q·½"
"¨Ã¥B¤w¸g¶}±Ò¡A¥H«K©ó¯à°÷¦Û°Ê°»´ú§A¦Lªí¾÷ªºÃþ«¬¡C­Y¬O±z­n¨Ï¥Îªº¬Oºô¸ô¦Lªí¾÷¡A"
"½Ð½T»{¸Ó¦Lªí¾÷ªº¹q·½¤]¬O³B©ó¶}±Òª¬ºA¡A¦Ó¥B¹ï¤è¾÷¾¹»Pºô¸ô¯à°÷¥¿½T³s³q¡C\n"
"\n"
"½Ðª`·N¡A¦Û°Ê°»´ú¦Lªí¾÷ªº¥\¯à¾A¥Î©ó¥»¾÷¦Lªí¾÷ªº±¡ªp¡A­Y¬O§A­n¨Ï¥Îªº¬Oºô¸ô¦Lªí"
"¾÷¡A³q±`§A»Ý­n§â¦Û°Ê°»´ú¥\¯àÃö³¬¡C\n"
"\n"
"·í§A½T»{¨S°ÝÃD¬O¡AÂI¿ï¡u¤U¤@¨B¡v¡A©ÎªÌ¬OÂI¿ï¡u¨ú®ø¡v©ñ±ó³]©w¡C"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "¦b¹ï¤À³Î°Ï %s ¶i¦æ®æ¦¡¤Æªº°Ê§@¥H«á¡A©Ò¦³¦b³o­Ó¤À³Î°Ï¤Wªº¸ê®Æ³£·|³Q²M°£"

#: ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Connection Time: "
msgstr "³s½u¶µ¥Ø¡G "

#: ../../standalone/drakperm:1
#, c-format
msgid "select perm file to see/edit"
msgstr "¿ï¨ú­n¬d¬Ý½s¿èªºÀÉ®×"

#: ../../standalone/livedrake:1
#, c-format
msgid ""
"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
"If you don't have it, press Cancel to avoid live upgrade."
msgstr ""
"½Ð©ñ¤J¦w¸Ë CD ¥úºÐ¤ù¡AµM«á«ö¤U¡y½T©w¡z«ö¶sÄ~Äò¦w¸Ë¡C¦pªG±z¨Ã¨S¦³³o¤ù\n"
"¥úºÐ¤ùªº¸Ü¡A½Ð«ö¤U¨ú®ø«ö¶s¥HÁקK±Ò°Ê½u¤W¤É¯Åªºµ{¦¡¡C"

#: ../../standalone/drakperm:1
#, c-format
msgid "Use group id for execution"
msgstr "°õ¦æ®É¥t¥~¨ã³Æ¸Ó¸s²ÕÅv­­"

#: ../../any.pm:1
#, c-format
msgid "Choose the default user:"
msgstr "½Ð¿ï¨ú¹w³]ªº¨Ï¥ÎªÌ¡G"

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

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid ""
"\n"
"Printers on remote CUPS servers do not need to be configured here; these "
"printers will be automatically detected."
msgstr ""
"\n"
"±zªº Printer ¦ì©ó CUPS ªA°È¥D¾÷¤W¡A©Ò¥H±z³oÃä¨Ã¤£»Ý­n³]©w¡F\n"
"³o¨Ç¦Lªí¾÷±N¯à°÷¦Û°Ê°»´ú¨ì¡C"

#: ../../any.pm:1
#, c-format
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "±z¥i¥H¿ï¾Ü¦b¦w¸Ë§¹¦¨¥H«á¨Ï¥Î¨ä¥Lªº»y¨¥"

#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Domain"
msgstr "ºô°ì"

#: ../../any.pm:1
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "»Ý­nªº¸Ü¡A¿é¤J¥¿½Tªº°O¾ÐÅé¤j¤p (§ä¨ì %d MB)"

#: ../../help.pm:1
#, c-format
msgid ""
"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
"automated. DrakX will analyze the disk boot sector and act according to\n"
"what it finds there:\n"
"\n"
" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
"boot sector. This way you will be able to load either GNU/Linux or another\n"
"OS.\n"
"\n"
" * if a grub or LILO boot sector is found, it will replace it with a new\n"
"one.\n"
"\n"
"If it cannot make a determination, DrakX will ask you where to place the\n"
"bootloader."
msgstr ""

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Provider dns 2 (optional)"
msgstr "ISP ²Ä¤G¥x dns (¥i¤£¥Î¿é¤J)"

#: ../../any.pm:1 ../../help.pm:1
#, c-format
msgid "Boot device"
msgstr "¶}¾÷¸Ë¸m"

#: ../../install_interactive.pm:1
#, c-format
msgid "Which partition do you want to resize?"
msgstr "±z­n±q·s³]©w¨º­Ó¤À³Î°Ïªº¤j¤p ?"

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

#: ../../standalone/logdrake:1
#, c-format
msgid "A tool to monitor your logs"
msgstr "ºÊ¹î°O¿ýÀɪº¤u¨ã"

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

#: ../../network/netconnect.pm:1
#, c-format
msgid "detected on port %s"
msgstr "©ó port %s °»´ú¨ì"

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

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Graphics card: %s\n"
msgstr "Åã¥Ü¥d¡G %s\n"

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

#: ../../standalone/drakbackup:1
#, c-format
msgid "Please check if you are using a DVDRAM device"
msgstr "¦pªG±z¨Ï¥Îªº¬O DVDRAM ¸Ë¸m¡A½Ð¿ï¨ú¸Ó¶µ¥Ø"

#: ../../standalone/drakboot:1
#, c-format
msgid "Splash selection"
msgstr "µe­±¿ï¨ú"

#: ../../partition_table.pm:1
#, c-format
msgid "Extended partition not supported on this platform"
msgstr "³o­Ó¥­¥x¨Ã¤£¤ä´©©µ¦ù¤À³Î°Ï"

#: ../../network/isdn.pm:1
#, c-format
msgid "ISDN Configuration"
msgstr "ISDN ³]©w"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "high"
msgstr "°ª"

#: ../../standalone/drakgw:1
#, c-format
msgid "Internet Connection Sharing"
msgstr "Internet ³s½u¤À¨É"

#: ../../standalone/logdrake:1
#, c-format
msgid "Choose file"
msgstr "¿ï¨úÀÉ®×"

#: ../../network/shorewall.pm:1
#, c-format
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fixes after installation."
msgstr ""
"ĵ§i ! °»´ú¨ì²{¦³¤w¸g¦s¦bªº¨¾¤õÀð²ÕºA³]©w¡C\n"
"±zÀ³¸Ó¦b¦w¸Ë¤§«á¤â°Ê­×¥¿¤@¨Ç¥²­nªº³]©w¶µ¥Ø¡C"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr ""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Do you want to enable printing on the printers mentioned above or on "
"printers in the local network?\n"
msgstr "±z­n±Ò¤W­±´£¤Î¦Lªí¾÷¦C¦LªA°È¡A©ÎªÌ¬O¨Ï¥Î¤º³¡ºô¸ô¤ºªº¦Lªí¾÷¶Ü¡H\n"

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Printer default settings"
msgstr "¦Lªí¾÷«¬¸¹¿ï¾Ü"

#: ../../standalone/harddrake2:1
#, c-format
msgid ""
"the WP flag in the CR0 register of the cpu enforce write proctection at the "
"memory page level, thus enabling the processor to prevent unchecked kernel "
"accesses to user memory (aka this is a bug guard)"
msgstr ""

#: ../../mouse.pm:1
#, c-format
msgid "Generic PS2 Wheel Mouse"
msgstr "¤@¯ë PS/2 Wheel ·Æ¹«"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Removing old printer \"%s\"..."
msgstr "¥¿¦b§R°£Â¦³¦Lªí¾÷ \"%s\" ..."

#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Select a device !"
msgstr "¿ï¨ú±zªº±½´y¾¹"

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Remove selected server"
msgstr "²¾°£¿ï¨ú¶µ¥Ø"

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

#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "the vendor name of the processor"
msgstr "¸Ë¸mªº¼t°Ó¦WºÙ"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "All data on this partition should be backed-up"
msgstr "©Ò¦³¦b³o­Ó¤À³Î°Ï¤Wªº¸ê®Æ³£À³¸Ó¥ý¸g¹L³Æ¥÷"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Installing package %s"
msgstr "¥¿¦b¦w¸Ë %s ®M¥ó"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Checking device and configuring HPOJ..."
msgstr ""

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr "»Ý­n¦³§ó¦hªº¤À³Î°Ïªº¸Ü¡A½Ð§R°£¤@­Ó¥D¤À³Î°Ï¥H«Ø¥ß©µ¦ù¤À³Î°Ï"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
"\"man mtools\" on the command line for more info). You find the card's file "
"system under the drive letter \"p:\", or subsequent drive letters when you "
"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
"can switch between drive letters with the field at the upper-right corners "
"of the file lists."
msgstr ""

#: ../../steps.pm:1
#, c-format
msgid "Choose packages to install"
msgstr "¿ï¨úµ{¦¡®M¥ó"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
" a bad configuration of postfix. To solve it you have to\n"
" set myhostname or mydomain in /etc/postfix/main.cf\n"
"\n"
msgstr ""
"\n"
"¥Ñ©ó¤£¥¿½Tªº³]©w©Î¬Oµ{¦¡¿ù»~¡A¾É­P«H¥óµLªk¥¿±`µo°e\n"
"¥X¥h¡C½ÐÀ˵ø±zªº postfix ©ÎªÌ¬O sendmail ³]©w²ÕºA¡C\n"

#: ../../install_interactive.pm:1
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "©Ò¦³¦b %s ºÏºÐ¤Wªº¤À³Î°Ï¸ò¸ê®Æ³£·|³Q²M°£±¼"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
"> %d)"
msgstr "±zªº¨t²Î¨S¦³¨¬°÷ªºªÅ¶¡¥i¥H¥Î¨Ó¦w¸Ë©Î¤É¯Å¤F (%d > %d)"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
"¨C¤@­Ó¦Lªí¾÷³£»Ý­n«ü©w¤@­Ó¦WºÙ (¤ñ¤è¹³¬O printer)¡C\n"
"¦Ü©ó´y­z»P¦ì¸mÄæ¦ì¥i¥H¤£¥²¶ñ¤J¡A¦]¬°³o¨ÇÄæ¦ì¬Oµù¸Ñ¡C"

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

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

#: ../../standalone/drakgw:1
#, c-format
msgid "Network interface"
msgstr "ºô¸ô¤¶­±"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Reading printer data..."
msgstr "Ū¨ú¦Lªí¾÷¸ê®Æ ..."

#: ../../keyboard.pm:1
#, c-format
msgid "Korean keyboard"
msgstr "Áú¦¡Áä½L"

#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
#, c-format
msgid "Not connected"
msgstr "©|¥¼³s½u"

#: ../../keyboard.pm:1
#, c-format
msgid "Greek"
msgstr "§Æþ"

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
"If \\fIarg\\fP = ALL allow /etc/issue and /etc/issue.net to exist. If \\fIarg"
"\\fP = NONE no issues are\n"
"allowed else only /etc/issue is allowed."
msgstr ""

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

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Transfer successful\n"
"You may want to verify you can login to the server with:\n"
"\n"
"ssh -i %s %s\\@%s\n"
"\n"
"without being prompted for a password."
msgstr ""
"¶Ç¿é¤w¸g§¹¦¨\n"
"±z¤]³\»Ý­n½T»{±z¯à°÷¨Ï¥Î¤U­±ªº«ü¥Oµn¤J¨t²Î¡G\n"
"\n"
"ssh -i %s %s\\@%s\n"
"\n"
"³oÀ³¸Ó¤£»Ý­n¿é¤J¥ô¦ó±K½X´N¥i¥Hª½±µµn¤J¡C"

#: ../../any.pm:1
#, c-format
msgid "Enable OF Boot?"
msgstr "¤¹³\ OF ¶}¾÷ ¡H"

#: ../../fsedit.pm:1
#, c-format
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "¤p©ó 16MB ªº¤À³Î°Ï¤£¯à³]¦¨ JFS ®æ¦¡"

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "¿Ã¹õ««ª½§ó·sÀW²v¡G %s\n"

#: ../../standalone/drakperm:1
#, c-format
msgid "path"
msgstr "¸ô®|"

#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Mount point"
msgstr "±¾¸üÂI"

#: ../../Xconfig/test.pm:1
#, c-format
msgid ""
"An error occurred:\n"
"%s\n"
"Try to change some parameters"
msgstr ""

#: ../../standalone/drakbackup:1
#, c-format
msgid "Restore system"
msgstr "¦^¦s¨t²Î"

#: ../../standalone/scannerdrake:1
#, c-format
msgid ""
"These are the machines on which the locally connected scanner(s) should be "
"available:"
msgstr ""

#: ../../standalone/drakpxe:1
#, fuzzy, c-format
msgid "The DHCP end ip"
msgstr "DHCP µ²§ô½d³ò"

#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Another one"
msgstr "¥t¥~¤@­Ó"

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

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

#: ../../standalone/drakgw:1
#, c-format
msgid ""
"Current configuration of `%s':\n"
"\n"
"Network: %s\n"
"IP address: %s\n"
"IP attribution: %s\n"
"Driver: %s"
msgstr ""
"¥Ø«e '%s' ªº²ÕºA³]©w:\n"
"\n"
"ºô¸ô: %s\n"
"IP ¦ì§}¡G %s\n"
"IP ÄÝ©Ê¡G%s\n"
"ÅX°Êµ{¦¡¡G %s"

#: ../../Xconfig/monitor.pm:1
#, c-format
msgid "Plug'n Play"
msgstr "ÀH´¡§Y¥Î"

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

#: ../../install_steps_gtk.pm:1 ../../diskdrake/hd_gtk.pm:1
#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Details"
msgstr "¸Ô²Ó¸ê°T"

#: ../../network/tools.pm:1
#, fuzzy, c-format
msgid "For security reasons, it will be disconnected now."
msgstr "¦]¬°¦w¥þ¦]¯À¦Ò¶q¡A²{¦b±N·|¤ÁÂ_³s½u¡C"

#: ../../standalone/drakbug:1
#, c-format
msgid "Synchronization tool"
msgstr "¦P¨B¤u¨ã"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Checking your system..."
msgstr "¥¿¦bÀˬd±zªº¨t²Î..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Print"
msgstr "¦C¦L"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
"½Ð¸m¤J¼ÐÅÒ¦WºÙ¬° %s ªººÏ±a\n"
"¨ì %s ºÏ±a¾÷¤º"

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

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Mounted\n"
msgstr "¤w±¾¸ü\n"

#: ../../help.pm:1
#, fuzzy, c-format
msgid "Graphical Interface"
msgstr "¶}¾÷®É±Ò°Ê X Àô¹Ò"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Restore Users"
msgstr "¦^¦s¨Ï¥ÎªÌÀÉ®×"

#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Encryption key for %s"
msgstr "¥[±Kª÷Æ_"

#: ../../services.pm:1
#, c-format
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
"machines\n"
"which act as servers for protocols which make use of the RPC mechanism."
msgstr ""
"portmapper µ{¦¡ºÞ²z¤F RPC ³s½u¡A¤@¯ë¥Î©ó NFS »P NIS ³q°T¨ó©w¤º¡C\n"
"­Y¬O±z¨t²Î­n¨Ï¥Î¨ì RPC ¬ÛÃöªA°È¡A±z´N¥²¶·±Ò°Ê¥¦¡C"

#: ../../standalone/harddrake2:1
#, c-format
msgid "Detected hardware"
msgstr "¤w°»´úªºµwÅé"

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

#: ../../keyboard.pm:1
#, c-format
msgid "Myanmar (Burmese)"
msgstr "»X¥j»y (½q¨l»y)"

#: ../../fs.pm:1
#, fuzzy, c-format
msgid "Enabling swap partition %s"
msgstr "¥¿¦b®æ¦¡¤Æ¤À³Î°Ï %s"

#: ../../install_interactive.pm:1
#, fuzzy, c-format
msgid "There is no FAT partition to use as loopback (or not enough space left)"
msgstr "¨S¦³¥i¥Îªº FAT ¤À³Î°Ï¯à°÷½Õ¾ã¤j¤p¡A©ÎªÌ¬O¸Ó¤À³Î°Ï¨S¨¬°÷ªÅ¶¡"

#: ../../keyboard.pm:1
#, c-format
msgid "Armenian (old)"
msgstr "¨È¬ü¥§¨È (old)"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
"Click \"Transfer\" to overwrite it.\n"
"You can also type a new name or skip this printer."
msgstr ""
"¦b %s ¤w¸g¦s¦b¤F¤@­Ó¦WºÙ¬° %s ªº¦Lªí¾÷¦WºÙ¡C\n"
"½ÐÂI¿ï¡y¶Ç°e¡zÂл\¤º®e¡C\n"
"±z¤]¥i¥H¥t¥~¿é¤J¤@­Ó¦WºÙ¡A©ÎªÌ¬O²¤¹L³o¥x¦Lªí¾÷¡C"

#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
"platform."
msgstr ""
"±z¦³¥ô¦ó Linux ºÃ°Ý¡A¥]§t¬ÛÃö¸Ñ¨M¤è®×ªº»Ý¨D¡A¥i¥H³z¹L\n"
"MandrakeSoft ½u¤Wªº¤ä´©¥­¥xÀò±o¶i¤@¨B¤ä´©¡C"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ", host \"%s\", port %s"
msgstr "¡A¥D¾÷ \"%s\"¡A³s±µ°ð %s"

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

#: ../../fs.pm:1
#, c-format
msgid "%s formatting of %s failed"
msgstr "¥H %s ®æ¦¡¤Æ %s ¥¢±Ñ"

#: ../../install_interactive.pm:1
#, c-format
msgid "Partitioning failed: %s"
msgstr "µwºÐ¤À³Î¥¢±Ñ¡G %s"

#: ../../standalone/drakxtv:1
#, c-format
msgid "Canada (cable)"
msgstr "¥[®³¤j (cable)"

#: ../../help.pm:1
#, c-format
msgid "Upgrade"
msgstr "¤É¯Å"

#: ../../help.pm:1
#, c-format
msgid "Workstation"
msgstr "¤u§@¯¸¥­¥x"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"Installing package %s\n"
"%d%%"
msgstr ""
"¥¿¦b¦w¸Ë %s ®M¥ó\n"
"%d%%"

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

#: ../../help.pm:1
#, fuzzy, c-format
msgid "With basic documentation"
msgstr "¥]§t°ò¥»ªº»¡©ú¤å¥ó («Øij)"

#: ../../services.pm:1
#, c-format
msgid "Anacron is a periodic command scheduler."
msgstr "´£¨Ñ¶g´Á©Êªº©R¥O±Æµ{µ{¦¡"

#: ../../install_interactive.pm:1
#, c-format
msgid ""
"You must have a root partition.\n"
"For this, create a partition (or click on an existing one).\n"
"Then choose action ``Mount point'' and set it to `/'"
msgstr ""
"±z¤@©w±o­n«ü©w¤@­Ó¤À³Î°Ï¨Ó©ñ®Ú¥Ø¿ý¡A­n¶i¦æ³o­Ó¤u§@\n"
"ªº¸Ü¡A½Ð«Ø¥ß¤@­Ó¤À³Î°Ï (©Î¿ï¤@­Ó¤w¸g¦s¦bªº¤À³Î°Ï)¡A\n"
"±µµÛ¿ï \"±¾¸üÂI\" ³o­Ó¾Þ§@¡A§â±¾¸üÂI³]¦¨ `/'¡C"

#: ../../network/network.pm:1
#, c-format
msgid "Proxy should be http://..."
msgstr "¥N²z¦øªA¾¹ªº³]©w®æ¦¡¥²¶·¬° http://..."

#: ../../lang.pm:1 ../../standalone/drakxtv:1
#, c-format
msgid "South Africa"
msgstr "«n«D"

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

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Etherboot Floppy/ISO"
msgstr "ºô¸ô¶}¾÷ Floppy/ISO"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Modify printer configuration"
msgstr "­×§ï¦Lªí¾÷³]©w"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Choose a partition"
msgstr "¿ï¾Ü¤À³Î°Ï"

#: ../../standalone/drakperm:1
#, c-format
msgid "Edit current rule"
msgstr "½s¿è¥Ø«e³W«h"

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

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
"Enable/Disable the logging of IPv4 strange packets."
msgstr ""

#: ../../mouse.pm:1
#, c-format
msgid "Please test the mouse"
msgstr "½Ð´ú¸Õ·Æ¹«"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Other Media"
msgstr "¨ä¥L¸Ë¸m"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Backup system files"
msgstr "³Æ¥÷¨t²ÎÀÉ®×"

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

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Sector"
msgstr "ºÏ°Ï"

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

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "LDAP Base dn"
msgstr "LDAP ªº dn Äæ¦ì"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "¦]¬°µwºÐªÅ¶¡¤£¨¬¡A±z¤£¥i¥H¿ï¨ú³o­Ó®M¥ó¡C"

#: ../../help.pm:1
#, fuzzy, c-format
msgid "generate auto-install floppy"
msgstr "»s§@¦Û°Ê¦w¸ËºÏ¤ù"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Dialing mode"
msgstr "¼·±µªº¼Ò¦¡"

#: ../../services.pm:1
#, c-format
msgid "File sharing"
msgstr "ÀɮפÀ¨É"

#: ../../any.pm:1
#, c-format
msgid "Clean /tmp at each boot"
msgstr "¨C¦¸¶}¾÷®É¦Û°Ê²M²z /tmp ¥Ø¿ý¼È¦sÀÉ"

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

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Please choose your type of mouse."
msgstr "½Ð¿ï¨ú·Æ¹«ªº§Î¦¡¡C"

#: ../../standalone/harddrake2:1
#, c-format
msgid "class of hardware device"
msgstr "µwÅé¸Ë¸mÃþ§O"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"These are the machines and networks on which the locally connected printer"
"(s) should be available:"
msgstr ""

#: ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
msgid "United Kingdom"
msgstr "­^°ê"

#: ../../services.pm:1
#, c-format
msgid "running"
msgstr "°õ¦æ¤¤"

#: ../../standalone/drakfloppy:1
#, c-format
msgid "default"
msgstr "¹w³]"

#: ../../lang.pm:1
#, c-format
msgid "Indonesia"
msgstr "¦L«×¥§¦è¨È"

#: ../../standalone/drakxtv:1
#, c-format
msgid "France [SECAM]"
msgstr "ªk°ê [SECAM]"

#: ../../any.pm:1
#, c-format
msgid "restrict"
msgstr "­­¨î°Ñ¼Æ"

#: ../../pkgs.pm:1
#, c-format
msgid "must have"
msgstr "¥²³Æªº"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
"CUPS ¥Ø«e¨Ã¤£¤ä´©¦ì©óNovell¥D¾÷¤Wªº¦Lªí¾÷¡A¥]§t¤£¨Ï¥Îfree-formed\n"
"©R¥O¶Ç°e¦C¦L¸ê®Æªº¦Lªí¾÷¡C\n"

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

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Command line"
msgstr "ºô°ì¦WºÙ"

#: ../../share/advertising/08-store.pl:1
#, c-format
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
"other \"goodies\", are available on our e-store:"
msgstr ""
"Mandrake ´£¨Ñ¤F§¹¾ãªº Linux ¸Ñ¨M¤è®×¡A¨Ã¥B¥]§t§Ú­Ì¦U¦¡°Ó«~¡A"
"±z¥i¥H¤WºôÂsÄý§Ú­Ì´£¨Ñªº½u¤W¹q¤l°Ó©±Ã¬±o¶i¤@¨B¸ê°T¡C"

#: ../../any.pm:1
#, c-format
msgid "access to administrative files"
msgstr "¦s¨ú¨t²Î­±ªº³]©wÀÉ"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Error during sendmail.\n"
"  Your report mail was not sent.\n"
"  Please configure sendmail"
msgstr ""
"°õ¦æ sendmail µ{¦¡®Éµo¥Í¿ù»~\n"
"  ¥Ñ©ó¸Ó¿ù»~¡A³Æ¥÷³øªíÀÉ®×±NµLªk°e¥X\n"
"  ½ÐÀ˵ø±z¨t²Îªº sendmail ¬O§_¦³¿ù»~¡C"

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (val)\n"
"\n"
"Set the shell timeout. A value of zero means no timeout."
msgstr ""

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

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

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

#: ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Connecting to the Internet "
msgstr "³s½u¨ì Internet"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Restore Other"
msgstr "¦^¦s¨ä¥LÀÉ®×"

#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "TV card"
msgstr "¹qµø¥d"

#: ../../printer/main.pm:1
#, c-format
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT ¦øªA¾¹¦Lªí¾÷"

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

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (umask)\n"
"\n"
"Set the root umask."
msgstr ""

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Remove selected host/network"
msgstr "²¾°£¿ï¨ú¶µ¥Ø"

#: ../../services.pm:1
#, c-format
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
msgstr "Postfix ¬O¤@­Ó¶l¥ó¶Ç°e¥N²zµ{¦¡¡A¥Î¨Ó§ë»¼«H¥ó´£¨Ñ SMTP ªA°È¡C"

#: ../../standalone/net_monitor:1
#, c-format
msgid "Disconnection from the Internet failed."
msgstr ""

#: ../../keyboard.pm:1
#, c-format
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
"(eg: latin and non latin)"
msgstr "½Ð¿ï¾Ü¼öÁä¡A¥H«K©ó§Ö³tªº¤Á´«¤£¦PªºÁä½L°t¸m"

#: ../../network/network.pm:1
#, fuzzy, c-format
msgid "Network Hotplugging"
msgstr "ºô¸ô³]©w"

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

#: ../../standalone/drakbackup:1
#, c-format
msgid "Restore From CD"
msgstr "¨Ï¥Î¥úºÐ¤ù¦^¦s"

#: ../../standalone/drakgw:1
#, c-format
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
"this computer's Internet connection.\n"
"\n"
"Make sure you have configured your Network/Internet access using drakconnect "
"before going any further.\n"
"\n"
"Note: you need a dedicated Network Adapter to set up a Local Area Network "
"(LAN)."
msgstr ""
"¥Ø«e­n¶i¦æInternet³s½u¤À¨Éªº³]©w¡A³o­Ó¥\¯à¯à°÷\n"
"Åý¨ä¥L°Ï°ìºô¸ô¤ºªº¹q¸£³z¹L³o¥x¥D¾÷ªºÀW¼e¤À¨É\n"
"³s¤W Internet¡C½Ðª`·N: ±z»Ý­n¥t¥~¤@±iºô¸ô¥d¥H«K\n"
"©ó´£¨Ñ°Ï°ìºô¸ô¹q¸£³s½u¦s¨ú¤À¨É¨Ï¥Î¡C"

#: ../../network/ethernet.pm:1
#, c-format
msgid ""
"Please choose which network adapter you want to use to connect to Internet."
msgstr "½Ð¿ï¾Ü±z­n¥Î¨Ó³s¤W Internet ªººô¸ô¥d"

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

#: ../../share/advertising/09-mdksecure.pl:1
#, fuzzy, c-format
msgid ""
"Enhance your computer performance with the help of a selection of partners "
"offering professional solutions compatible with Mandrake Linux"
msgstr ""
"MandrakeSoft ´£¨Ñ¤F±M·~ªº§Þ³N¥H¤Î§¹³Æªº¥ø·~¸Ñ¨M¤è®×¡A\n"
"Åwªï±z¥[¤J§Ú­Ì¡C¥t¥~±z¥i¥H³z¹L§Ú­Ìªº MandrakeStore\n"
"¯¸¥xÀò±o»P§Ú­Ì¦X§@ªº¹Ù¦ñ¬ÛÃö¸ê°T¡C"

#: ../../standalone/drakgw:1
#, c-format
msgid "Internet Connection Sharing is now disabled."
msgstr "Internet ³s½u¦@¨É¥Ø«eÃö³¬¤F¡C"

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, verify checksum of the suid/sgid files."
msgstr ""

#: ../../keyboard.pm:1
#, c-format
msgid "Latin American"
msgstr "©Ô¤B¬ü¬w"

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Japanese text printing mode"
msgstr "Åܧó¦C¦L¨t²Î"

#: ../../standalone/harddrake2:1
#, c-format
msgid "Old device file"
msgstr "ªº¸Ë¸mÀÉ®×"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Info: "
msgstr "¸ê°T¡G "

#: ../../interactive/stdio.pm:1
#, c-format
msgid "Button `%s': %s"
msgstr "«ö¶s `%s'¡G %s"

#: ../../any.pm:1 ../../interactive.pm:1 ../../harddrake/sound.pm:1
#: ../../standalone/drakbug:1 ../../standalone/drakxtv:1
#: ../../standalone/harddrake2:1 ../../standalone/service_harddrake:1
#, c-format
msgid "Please wait"
msgstr "½Ðµy­Ô"

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

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "None"
msgstr "§¹¦¨"

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "The entered IP is not correct.\n"
msgstr "¸Ó«¬¸¹¥¿½T"

#: ../../standalone/drakconnect:1
#, c-format
msgid "Ethernet Card"
msgstr "Etnernet ¤¶­±¥d"

#: ../../my_gtk.pm:1 ../../services.pm:1 ../../ugtk2.pm:1
#, c-format
msgid "Info"
msgstr "¸ê°T"

#: ../../help.pm:1 ../../install_steps_gtk.pm:1
#: ../../install_steps_interactive.pm:1 ../../standalone/drakbackup:1
#, c-format
msgid "Install"
msgstr "¦w¸Ë"

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"Click on \"%s\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
"to recover any data and partitions present on this hard drive, including\n"
"any Windows data.\n"
"\n"
"Click on \"%s\" to stop this operation without losing any data and\n"
"partitions present on this hard drive."
msgstr ""
"¦pªG±z¯uªº½T©w­n²M°£³o­ÓµwºÐ¤W­±©Ò¦³ªº¤À³Î°Ï»P¸ê®Æªº¸Ü¡AÂI¿ï¡y½T©w¡z«ö¶s¡C·í"
"±z¿ï¾Ü³o­Ó¶µ¥Ø«á¡A´N¯uªº¨S¦³¿ìªk±Ï¦^¸ÓÁûµwºÐ¤Wªº¸ê®Æ¤F¡C\n"
"\n"
"±z¥i¥HÂI¿ï¡y¨ú®ø¡z«ö¶s©ñ±ó³o­Ó¿ï¾Ü¡C"

#: ../../steps.pm:1
#, c-format
msgid "Exit install"
msgstr "Â÷¶}¦w¸Ëµ{¦¡"

#: ../../standalone/drakgw:1
#, c-format
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
"¨C­Ó¶µ¥Ø³£¤w¸g³]©w¦n¤F¡C\n"
"²{¦b±zªº¨t²Î¤w¸g³z¹L DHCP °ÊºA IP ¤À°tªº¤è¦¡¨ú±o³s½u IP¡A\n"
"¨Ã¥B¤]¤w¸g¯à°÷³z¹L¨ä¥L¹q¸£ªºÀW¼e¤À¨É¦s¨ú Internet ªA°È¡C"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Remote CUPS server"
msgstr "»·ºÝ CUPS ¦øªA¾¹"

#: ../../mouse.pm:1
#, c-format
msgid "Sun - Mouse"
msgstr "Sun - ·Æ¹«"

#: ../../standalone/drakgw:1
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
"\n"
"%s\n"
"\n"
"I am about to setup your Local Area Network with that adapter."
msgstr ""
"±zªº¨t²Î¥Ø«e¦³¤@±i¤w¸g³]©w¦nªººô¸ô¥d:\n"
"\n"
"%s\n"
"\n"
"²{¦b­n¶i¦æ³o±iºô¸ô¥d»P°Ï°ìºô¸ôªº³s½u²ÕºA³]©w¡C"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Minimal install"
msgstr "³Ì¤p¦w¸Ë"

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

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

#: ../../standalone/harddrake2:1
#, c-format
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
"- PCI ¸Ë¸m ¡G¥]§t PCI ´¡±ä¡A¤¶­±¥d¸Ë¸mªº¥\¯à\n"
"- EIDE ¸Ë¸m¡G¥]§t Master ©ÎªÌ¬O Slave ¸Ë¸m¶µ¥Ø\n"
"- SCSI ¸Ë¸m¡G¥]§t SCSI ¶×¬y±Æ¸Ë¸m»P SCSI ¸Ë¸mªº IDS"

#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Á`¦@¤j¤p¡G %d / %d MB"

#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "disabled"
msgstr "Ãö³¬"

#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Search for new scanners"
msgstr "¥i¥Îªº¦Lªí¾÷"

#: ../../standalone/drakgw:1
#, c-format
msgid "Disabling servers..."
msgstr "¥¿¦bÃö³¬¦øªA¾¹..."

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr ""
"½Ð¿é¤J¨C¤@¦¸³Æ¥÷ªº\n"
"¶¡¹j®É¶¡"

#: ../../standalone/drakboot:1
#, c-format
msgid "Installation of %s failed. The following error occured:"
msgstr "¦w¸Ë %s ¥¢±Ñ¡Aµo¥Í¦p¤U¤§¿ù»~¡G"

#: ../../standalone/drakboot:1
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr "µLªk°õ¦æ mkinitrd -f /boot/initrd-%s.img %s¡C"

#: ../../install_any.pm:1
#, fuzzy, c-format
msgid ""
"You have selected the following server(s): %s\n"
"\n"
"\n"
"These servers are activated by default. They don't have any known security\n"
"issues, but some new ones could be found. In that case, you must make sure\n"
"to upgrade as soon as possible.\n"
"\n"
"\n"
"Do you really want to install these servers?\n"
msgstr ""
"±z¤w¸g¿ï¾Ü¦w¸Ë¤F¤U­±ªº®M¥ó: %s\n"
"\n"
"\n"
"³o¨Ç®M¥ó¦w¸Ë¦n«á¹w³]¬O±Ò°Êªº¡A¦]¬°³o¨Ç®M¥ó¬Y¨Ç¼h­±¨Ó»¡¬O¤ñ¸û¤£¦w¥þªº¡A©Ò¥H«Ü"
"¦³¥i¯à¥L¤H·|¸g¥Ñ³o¨Ç®M¥óªºº|¬}¦M®`±zªº¨t²Î¡C¦]¦¹«Øij§A¦w¸Ë¦n¨t²Î«á¡A¤@©w­n¥ý"
"½T©w³o¨Ç®M¥ó¬O§_¤w¸g¦³§ó·sªºª©¥»¡A­Y¬O¦³ªº¸Ü½Ð°O±o\n"
"¤@©w­n§ó·s¡C\n"
"\n"
"\n"
"±z½T©w¯uªº­n¦w¸Ë³o¨Ç®M¥ó¶µ¥Ø¶Ü¡H\n"

#: ../../printer/main.pm:1
#, c-format
msgid "Network printer (TCP/Socket)"
msgstr "ºô¸ô¦Lªí¾÷ (TCP/Socket)"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Backup User files..."
msgstr "³Æ¥÷¨Ï¥ÎªÌÀÉ®×..."

#: ../../steps.pm:1
#, c-format
msgid "Install system"
msgstr "¦w¸Ë¨t²Î"

#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "First DNS Server (optional)"
msgstr "²Ä¤@¥xDNS¦øªA¾¹ (¥i¤£¿é¤J)"

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid ""
"Alternatively, you can specify a device name/file name in the input line"
msgstr "½Ð¿ï¾Ü±z¦Lªí¾÷ªº³s±µ°ð¡A©ÎªÌ¬O¿é¤J¸Ó¸Ë¸mªº¦WºÙ"

#: ../../keyboard.pm:1
#, c-format
msgid "Russian (Phonetic)"
msgstr "«Xù´µ (­µ¼Ð)"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "dhcpd Config..."
msgstr "dhcpd ³]©w..."

#: ../../standalone/drakgw:1
#, c-format
msgid "The setup has already been done, but it's currently disabled."
msgstr "³o­Ó³]©w¥ý«e¤w¸g§¹¦¨¤F¡A¤£¹L¥Ø«e¬O³B²zÃö³¬¨S±Ò¥Îªºª¬ºA"

#: ../../any.pm:1
#, c-format
msgid "LILO/grub Installation"
msgstr "¦w¸Ë LILO ©Î GRUB"

#: ../../keyboard.pm:1
#, c-format
msgid "Israeli"
msgstr "¥H¦â¦C"

#: ../../standalone/logdrake:1
#, c-format
msgid "load setting"
msgstr "¸ü¤J³]©w"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer \"%s\" on server \"%s\""
msgstr "¦Lªí¾÷ \"%s\"¡A¦ì©ó \"%s\""

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Floppy can be removed now"
msgstr "½Ð²¾¶}³nºÐ¤ºªººÏ¤ù"

#: ../../help.pm:1
#, fuzzy, c-format
msgid "Truly minimal install"
msgstr "³Ì¤p¦w¸Ë"

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

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Moving partition..."
msgstr "¥¿¦b²¾°Ê¤À³Î°Ï..."

#: ../../standalone/drakgw:1
#, c-format
msgid "(This) DHCP Server IP"
msgstr "¸Ó DHCP ¥D¾÷ IP"

#: ../../Xconfig/test.pm:1
#, c-format
msgid "Test of the configuration"
msgstr "´ú¸Õ³]©w­È"

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Installing %s ..."
msgstr "¥¿¦b¦w¸Ë®M¥ó..."

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

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "¿ï¾Ü±zÀɮרt²Î©Ò¨Ï¥Îªº¥[±Kª÷Æ_"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
"½Ð¿ï¾Ü±z­n¨Ï¥Îªº CD/DVD ¸Ë¸m\n"
"(¥t¥~±z¥i¥H¥t¥~¿é¤J¨ä¥LÃB¥~»Ý­nªº°Ñ¼ÆÄæ¦ì¡A\n"
"­Y¬O¤£»Ý­n«ü©w¡A¥i¥H¤£»Ý­n¶ñ¤J¼Æ­È¡C)"

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

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

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

#: ../../standalone/draksec:1
#, fuzzy, c-format
msgid "(default value: %s)"
msgstr " (¹w³]¡G%s)"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Alternative test page (Letter)"
msgstr "Letter ¯È±i¦C¦L´ú¸Õ­¶"

#: ../../standalone/drakgw:1
#, c-format
msgid ""
"DHCP Server Configuration.\n"
"\n"
"Here you can select different options for the DHCP server configuration.\n"
"If you don't know the meaning of an option, simply leave it as it is.\n"
"\n"
msgstr ""
"DHCP ¦øªA¾¹³]©w¡C\n"
"\n"
"±z¥i¥H¦b³oÃä¿ï¾Ü³]©w DHCP ªº¬ÛÃö²ÕºA³]©w¡C\n"
"¦pªG±z¤£²M·¡¬ÛÃö°Ñ¼Æªº·N«ä¡A±z¥i¥H¬°«ùªÅ¥Õ¤£­n¿é¤J¸ê®Æ¡C\n"
"\n"

#: ../../Xconfig/card.pm:1
#, fuzzy, c-format
msgid "Choose an X server"
msgstr "¿ï¨ú¦X¾Aªº X ¦øªAµ{¦¡"

#: ../../install_interactive.pm:1
#, c-format
msgid "Swap partition size in MB: "
msgstr "¸m´«¤À³Î°Ïªº¤j¤p (MB)¡G "

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Other (not drakbackup)\n"
"keys in place already"
msgstr ""
"¨ä¥L («D drakbackup)\n"
"»{ÃÒ¾ÌÃÒÀɮפw¸g¦s¦b"

#: ../../standalone/drakbackup:1
#, c-format
msgid "No changes to backup!"
msgstr "³Æ¥÷¨S¦³¥ô¦ó²§°Ê¡I"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Formatted\n"
msgstr "¤w®æ¦¡¤Æ\n"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Type of install"
msgstr "¦w¸ËÃþ«¬"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "ºô¸ô¦Lªí¾÷ \"%s\"¡A¦ì©ó SMB/Windows ¦øªA¾¹ \"%s\""

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
"- Daemon (%s) include:\n"
msgstr ""
"\n"
"- Daemon (%s) ªA°Èµ{¦¡¥]§t :\n"

#: ../../modules/parameters.pm:1
#, c-format
msgid "%d comma separated numbers"
msgstr "%d ¥Î¤À¸¹¤À¹jªº¼Æ¦r"

#: ../../services.pm:1
#, c-format
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
msgstr ""
"rusers ³q°T¨ó©w¡A¯à°÷Åý¦ì©óºô¸ô¤Wªº¨Ï¥ÎªÌ±oª¾¨º¨Ç¨Ï¥ÎªÌµn¤J¦b¨º¨Ç\n"
"¾÷¾¹¤W"

#: ../../standalone/drakautoinst:1
#, c-format
msgid "Automatic Steps Configuration"
msgstr "¦Û°Ê¤Æ¨BÆJ³]©w"

#: ../../share/advertising/02-community.pl:1
#, c-format
msgid ""
"Want to know more and to contribute to the Open Source community? Get "
"involved in the Free Software world!"
msgstr "­nª¾¹D§ó¦hÃö©ó Open Source ªÀ¸sªº¨Æ±¡¡H °Ñ»P¦Û¥Ñ³nÅé¥@¬É"

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

#: ../../standalone/drakbackup:1
#, c-format
msgid "Please select data to backup..."
msgstr "½Ð¿ï¾Ü¥Î¨Ó³Æ¥÷¸ê®Æªº¸Ë¸m..."

#: ../../standalone/net_monitor:1
#, c-format
msgid ""
"Connection failed.\n"
"Verify your configuration in the Mandrake Control Center."
msgstr ""

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

#: ../../standalone/logdrake:1
#, c-format
msgid "/File/_New"
msgstr "/ÀÉ®×/·s¼W (_N)"

#: ../../standalone/drakgw:1
#, c-format
msgid "The DNS Server IP"
msgstr "¸Ó DHCP ¥D¾÷ IP"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "IP Range End:"
msgstr ""

#: ../../security/level.pm:1
#, c-format
msgid "High"
msgstr "°ª"

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

#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "this field describes the device"
msgstr "¸Ó¸Ë¸mªºÄæ¦ì´y­z"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr "·s¼W¦Lªí¾÷¦Ü Star Office/OpenOffice.org/GIMP ¤º"

#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Local Printers"
msgstr "¥»¾÷¦Lªí¾÷"

#: ../../standalone/drakpxe:1
#, fuzzy, c-format
msgid "Installation image directory"
msgstr "Xpmac (Åã¥Ü¥dÅX°Êµ{¦¡ªº¦w¸Ë)"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "NIS Server"
msgstr "NIS ¦øªA¥D¾÷"

#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Port: %s"
msgstr "³s±µ°ð"

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

#: ../../any.pm:1
#, c-format
msgid "This user name has already been added"
msgstr "³o­Ó¨Ï¥ÎªÌ¤w¸g¦s¦b¤F"

#: ../../interactive.pm:1
#, c-format
msgid "Choose a file"
msgstr "¿ï¾ÜÀÉ®×"

#: ../../standalone/drakconnect:1
#, c-format
msgid "Apply"
msgstr "®M¥Î"

#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Auto-detect available ports"
msgstr "¦Û°Ê°»´ú"

#: ../../standalone/drakgw:1
#, c-format
msgid "Internet Connection Sharing currently disabled"
msgstr "Internet ³s½u¦@¨É¥Ø«eÃö³¬¤F¡C"

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

#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
msgid "Belgium"
msgstr "¤ñ§Q®É"

#: ../../lang.pm:1
#, c-format
msgid "Kuwait"
msgstr "¬ì«Â¯S"

#: ../../any.pm:1
#, c-format
msgid "Choose the window manager to run:"
msgstr "¿ï¨ú±z·Q¨Ï¥Îªºµøµ¡ºÞ²zµ{¦¡¡G"

#: ../../standalone/harddrake2:1
#, c-format
msgid "sub generation of the cpu"
msgstr ""

#: ../../standalone/drakbug:1
#, c-format
msgid "First Time Wizard"
msgstr "­º¦¸ºëÆF"

#: ../../install_steps.pm:1
#, c-format
msgid ""
"An error occurred, but I don't know how to handle it nicely.\n"
"Continue at your own risk."
msgstr ""
"µo¥Í¤F¤@­Óµ{¦¡¤£ª¾¹D¸Ó¦p¦ó§´µ½³B¸mªº¿ù»~¡A\n"
"­nÄ~Äò¦w¸Ë¤u§@ªº¸Ü½Ð¤p¤ß¡C"

#: ../../standalone/logdrake:1
#, c-format
msgid "please wait, parsing file: %s"
msgstr "½Ðµy­Ô¡A¥¿¦b¸ÑªRÀɮסG%s"

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Taiwan"
msgstr "®õ°ê"

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

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
"\"Linux\" as operating system. The drivers come as RPM packages or shell "
"scripts with interactive graphical installation. You do not need to do this "
"configuration by the graphical frontends. Cancel directly after the license "
"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
"adjust the head alignment settings with this program."
msgstr ""
"­Y¬O§Æ±æ¯à°÷¨Ï¥Î³o¥x Lexmark ¼Q¾¥¦Lªí¾÷¶i¦æ¦C¦Lªº¸Ü\n"
"±z»Ý­n¥Ñ Lexmark ºô¯¸ (http://www.lexmark.com) ­º­¶¤W\n"
"´M§ä¬ÛÃö³sµ²¡A¤U¸ü³o¥x¦Lªí¾÷ªºÅX°Êµ{¦¡¡C¤ñ¤è·í±z³s¤W\n"
"Lexmark ºô¯¸­º­¶«á¡A½ÐÂI¿ï \"Drivers\" «ö¶s¡A¿ï¾Ü±z\n"
"¥Ø«e¨Ï¥Î¸Ó´Ú¦Lªí¾÷«¬¸¹¡A¨Ã½T»{¬O¿ï¨ú¨Ï¥Î \"Linux\"ªº\n"
"ª©¥»¡C¤@¯ë¨Ó»¡¡A±z¤U¸ü¦^¨ÓªºÀɮסA¥i¯à¬O RPM ®M¥óÀÉ®×\n"
"©ÎªÌ¬O´X­Ó shell script (°õ¦æ¸ÓÀÉ®×±N·|±Ò°Ê¦w¸Ëµ{¦¡)¡C\n"
"¤@¯ë¨Ó»¡¡A±z¨Ã¤£»Ý­n³z¹L¹Ï¦æ¤Æªº«eºÝ¤¶­±¨Ó¶i¦æ¬ÛÃöªº\n"
"ªº³]©w¡CµM«á¨Ï¥Î \"lexmarkmaintain\" µ{¦¡¶µ¥Ø¨Ó¦C¦L¼QÀY\n"
"®Õ¥¿ªº¤u§@³]©w¡C"

#: ../../standalone/drakperm:1
#, c-format
msgid "Permissions"
msgstr "Åv­­"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Provider name (ex provider.net)"
msgstr "ISP ªº¦WºÙ (ºô¸ô´£¨ÑªÌ¦WºÙ)"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Version: %s\n"
msgstr "ª©¥»½s¸¹¡G %s\n"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
"±zªº¨t²Î¸ê·½¦ü¥G¤Ó§C (¹êÅé°O¾ÐÅé¤Ó¤Öµ¥)¡A\n"
"³o¥i¯à¾É­P¦b¦w¸Ë¹Lµ{¤¤·|µo¥Í¤£¥i¹w´Áªº¿ù»~\n"
"¾É­P¦w¸Ë¥¢±Ñ¡C«Øij±z¡A­Y¬O±µ¤U¨Óªº½TµLªk¥¿±`\n"
"¦w¸Ëªº¸Ü¡A½Ð§ï¥Î¤å¦r¼Ò¦¡ªº¤è¦¡¦w¸Ë¸û¨Î¡C\n"
"¤]´N¬O¶}¾÷®É¥X²{ boot: °T®§®É¡A½Ð¿é¤J text \n"
"¶i¦æ¤å¦r¦w¸Ë§Y¥i¡C"

#: ../../install_interactive.pm:1
#, c-format
msgid "Use the Windows partition for loopback"
msgstr "¨Ï¥Î Windows ¤À³Î°Ï§@¬° loopback"

#: ../../keyboard.pm:1
#, c-format
msgid "Armenian (typewriter)"
msgstr "¨È¬ü¥§¨È (typewriter)"

#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
#, c-format
msgid "Connection type: "
msgstr "³s½u¶µ¥Ø¡G "

#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Graphical interface"
msgstr "¶}¾÷®É±Ò°Ê X Àô¹Ò"

#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s ¥]§t 3D µwÅé¥[³t¥\¯à"

#: ../../lang.pm:1
#, c-format
msgid "India"
msgstr "¦L«×"

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

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

#: ../../lang.pm:1
#, c-format
msgid "Singapore"
msgstr "·s¥[©Y"

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

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "¿Ã¹õ¤ô¥­§ó·sÀW²v¡G %s\n"

#: ../../standalone/drakperm:1
#, c-format
msgid "Path"
msgstr "¸ô®|"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Here you can specify any arbitrary command line into which the job should be "
"piped instead of being sent directly to a printer."
msgstr ""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
"is booted.\n"
"\n"
"It is possible that the automatic starting was turned off by changing to a "
"higher security level, because the printing system is a potential point for "
"attacks.\n"
"\n"
"Do you want to have the automatic starting of the printing system turned on "
"again?"
msgstr ""
"¦C¦LªA°È¨t²Î (%s) ±N¤£·|¦b¨t²Î¶}¾÷®É¸ü¤J¡C\n"
"\n"
"­Y¬O±z¨t²Î³]©w¬O¿ï¾Ü¤ñ¸û°ªªº¦w¥þµ¥¯Å¶µ¥Øªº¸Ü¡A\n"
"¹w³]¤]¬O¤£·|±Ò°Ê¦C¦LªA°Èªº¶µ¥Øªº¡C\n"
"\n"
"±z§Æ±æ³oÃä¯à°÷³]©w¦b¶}¾÷®É¯à°÷¹w³]±Ò°Ê¦C¦L\n"
"ªA°Èªº¶µ¥Ø¶Ü¡H"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr ""
"¦Lªí¾÷ %s\n"
"±z­n­×§ï³o­Ó¦Lªí¾÷ªº¨º­Ó¶µ¥Ø¡H"

#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Add host"
msgstr "·s¼W¨Ï¥ÎªÌ"

#: ../../harddrake/sound.pm:1
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
"card\n"
"you can pick one in the above list.\n"
"\n"
"The current driver for your \"%s\" sound card is \"%s\" "
msgstr ""

#: ../../any.pm:1
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
"±z­n¤¹³\¨Ï¥ÎªÌ¯à°÷¶}©ñ¥X¥L­Ì¦Û¤v¥Ø¿ý¤ºªºÀɮפÀ¨É¶Ü¡H\n"
"­Y¬O¶}©ñ«á¡A±z±N¥i¥H¦b konqueror ©ÎªÌ¬O nautilus ¤º\n"
"¿ï \"Share\"³o­Ó¤À¨É¶µ¥Ø¡C\n"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
"½Ð¿ï¾Ü¦b¸ü¤J©ÎªÌ¬OÀx¦s©Ò¿ï¾Üªº®M¥ó¨ìºÏ¤ù¤º¡C\n"
"¸ÓºÏ¤ù®æ¦¡´N¬O¦Û°Ê¦w¸Ë®É©Ò»s§@²£¥ÍªººÏ¤ù®æ¦¡¡C"

#: ../../standalone/drakxtv:1
#, c-format
msgid "China (broadcast)"
msgstr "¤¤°ê (broadcast)"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Use quota for backup files."
msgstr "³Æ¥÷Àɮױҥγ̤j®e¶q°tµ¹­­¨î¡C"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Configuring printer \"%s\"..."
msgstr "¥¿¦b³]©w¡u%s¡v¦Lªí¾÷¤¤ ..."

#: ../../network/netconnect.pm:1
#, c-format
msgid "Internet connection"
msgstr "Internet ³s½u"

#: ../../modules/interactive.pm:1
#, c-format
msgid ""
"Loading module %s failed.\n"
"Do you want to try again with other parameters?"
msgstr ""
"¸ü¤J %s ¼Ò²Õ¥¢±Ñ¡A\n"
"±z­n¥Î¨ä¥L°Ñ¼Æ¦A¸Õ¤@¦¸¶Ü?"

#: ../../share/advertising/01-thanks.pl:1
#, c-format
msgid "Welcome to the Open Source world."
msgstr "Åwªï¨Ó¨ì¶}©ñ·½½Xªº¥@¬É¡C"

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

#: ../../fsedit.pm:1
#, c-format
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
"±z»Ý­n¤@­Ó¯u¥¿ªº¤À³Î°Ï (ext2/ext3, reiserfs, xfs ©Î¬O jfs) ¨Ó©ñ³o­Ó±¾¸üÂI\n"

#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "You must enter a host name or an IP address.\n"
msgstr "½Ð¿é¤J¥D¾÷¦WºÙ©Î¬O IP"

#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
msgid "Netherlands"
msgstr "²üÄõ"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Sending files by FTP"
msgstr "¥¿¦b°e¥XÀÉ®×..."

#: ../../network/isdn.pm:1
#, c-format
msgid "Internal ISDN card"
msgstr "¤º³¡ ISDN ¤¶­±¥d"

#: ../../harddrake/sound.pm:1
#, c-format
msgid ""
"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
"currently uses \"%s\""
msgstr "¥Ø«eªºOSS/ALSA ÅX°Êµ{¦¡³£¯à°÷¤ä´©§Aªº­µ®Ä¥d (%s)¡A¼Ò²Õ¬° \"%s\""

#: ../../network/modem.pm:1
#, fuzzy, c-format
msgid "Title"
msgstr "¤À³Îªí"

#: ../../standalone/drakfont:1
#, c-format
msgid "Install & convert Fonts"
msgstr "¦w¸Ë»PÂà´«¦rÅé"

#: ../../standalone/drakbackup:1
#, c-format
msgid "WARNING"
msgstr "ĵ§i"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Installing bootloader"
msgstr "¥¿¦b¦w¸Ë¶}¾÷µ{¦¡"

#: ../../standalone/drakautoinst:1
#, fuzzy, c-format
msgid "replay"
msgstr "­«¼½"

#: ../../network/netconnect.pm:1
#, c-format
msgid "detected %s"
msgstr "°»´ú¨ì %s "

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

#: ../../partition_table.pm:1
#, c-format
msgid "Bad backup file"
msgstr "¿ù»~ªº³Æ¥÷ÀÉ®×"

#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
"\n"
"What would you like to do?"
msgstr ""
"Internet ³s½u¦@¨É¤w¸g³]©w§¹¦¨¤F¡C¥Ø«e¬O³B©óÃö³¬¤£¨Ï¥Îª¬ºA¡C\n"
"\n"
"±z§Æ±æ­n³B²z¨º­Ó¡H"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Enter IP address and port of the host whose printers you want to use."
msgstr ""

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Pipe into command"
msgstr "¨Ï¥Î Pipe ºÞ½u¤è¦¡²Õ¦¨¦C¦L¤u§@"

#: ../../install_interactive.pm:1
#, c-format
msgid ""
"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
"You can find some information about them at: %s"
msgstr ""
"¨t²Î¬Y¨ÇµwÅé»Ý­nÃB¥~ªºÅX°Êµ{¦¡¥H«K©ó¯à°÷ÅX°Ê¤u§@¡C\n"
"±z¥i¥H¦b³o¸Ì§ä¨ì¤@¨Ç¬ÛÃöªº¸ê°T: %s"

#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Detecting devices..."
msgstr "¥¿¦b°»´ú¸Ë¸m..."

#: ../../standalone/drakconnect:1
#, c-format
msgid "Click here to launch the wizard ->"
msgstr "ÂI¿ï³o¸Ì±Ò°Ê³]©wºëÆF ->"

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

#: ../../standalone/harddrake2:1
#, c-format
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
"Äæ¦ìªº´y­z¸ê°T¡G\n"
"\n"

#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "the name of the CPU"
msgstr "¸Ë¸mªº¼t°Ó¦WºÙ"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Refreshing printer data..."
msgstr "¥¿¦b§ó·s¦Lªí¾÷¸ê®Æ ..."

#: ../../install2.pm:1
#, c-format
msgid "You must also format %s"
msgstr "±z¤]¥²¶·­n®æ¦¡¤Æ %s"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "½Ð¤p¤ß¡A³o­Ó°Ê§@«D±`¦MÀI¡C"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Insert a floppy containing package selection"
msgstr "½Ð´¡¤J¤@±i¥]§t³nÅé¿ï¨ú²M³æ¬ö¿ýªººÏ¤ù"

#: ../../diskdrake/dav.pm:1
#, c-format
msgid "Server: "
msgstr "¥D¾÷¡G "

#: ../../standalone/draksec:1
#, c-format
msgid "Security Alerts:"
msgstr "¦w¥þĵ¥Ü¡G"

#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
msgid "Sweden"
msgstr "·ç¨å"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Use Expect for SSH"
msgstr ""

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

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Importance: %s\n"
msgstr "­«­n©Ê¡G %s\n"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Please check if you want to eject your tape after the backup."
msgstr "¦pªG±z§Æ±æ³Æ¥÷§¹¦¨«á¦Û°Ê°h¤ù¡A½Ð¿ï¨ú¸Ó¶µ¥Ø¡C"

#: ../../network/drakfirewall.pm:1
#, c-format
msgid "Other ports"
msgstr "´ú¸Õ³s±µ°ð"

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

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

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Connection timeout (in sec)"
msgstr "³s½u¹O®É (¥H¬í¬°³æ¦ì)"

#: ../../standalone/harddrake2:1
#, c-format
msgid ""
"Some of the early i486DX-100 chips cannot reliably return to operating mode "
"after the \"halt\" instruction is used"
msgstr ""

#: ../../keyboard.pm:1
#, c-format
msgid "Croatian"
msgstr "§Jù®J¦è¨È"

#: ../../help.pm:1
#, fuzzy, c-format
msgid "Use existing partition"
msgstr "¨Ï¥Î¤w¸g¦s¦bªº¤À³Î°Ï"

#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Unable to contact mirror %s"
msgstr "µLªk«Ø¥ß¥t¤@¦æµ{¡G%s"

#: ../../standalone/logdrake:1
#, c-format
msgid "/Help/_About..."
msgstr "/»¡©ú/Ãö©ó (_A)"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Remove user directories before restore."
msgstr "¦b¦^¦s¸ê®Æ®É¥ý§R°£¨Ï¥ÎªÌªº¬ÛÃö¥Ø¿ý"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
"configuration, you will not be able to use the printer which you are "
"configuring now. How do you want to proceed?"
msgstr ""
"±z¥Ø«e­n¶}©l³]©w»·ºÝ¦Lªí¾÷¦C¦Lªº¶µ¥Ø¡C­n¶i¦æ¦¹¶µ¥Ø³]©wªº«e´£¡A±zªº¨t²Î»Ý­n¨ã"
"³Æºô¸ô¥\¯à¥H«K©ó¶i¦æ¦s¨ú°Ê§@¡A¦ý¬O¥Ø«eºô¸ô©|¥¼³]©w¡C¦pªG±z¥´ºâ²¤¹Lºô¸ô³]©w¶µ"
"¥ØÄ~Äò¶i¦æ¤U­±ªº¨BÆJªº¸Ü¡AÃö©ó³]©w¨Ï¥Î»·ºÝ¦Lªí¾÷¥\¯àªº¶µ¥Ø±NµLªk³]©w¡C±z¥´ºâ"
"­n«ç»ò§@©O¡H"

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "CUPS printer configuration"
msgstr "OKI Windows ¦Lªí¾÷³]©w"

#: ../../standalone/drakfont:1
#, c-format
msgid "could not find any font in your mounted partitions"
msgstr "¦b±z¨t²Î¥H¨ø¤Wªº¤À³Î°Ï¤º§ä¤£¨ì¥ô¦ó¦r«¬ÀÉ®×"

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

#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
#, c-format
msgid "XFree %s"
msgstr "XFree %s"

#: ../../network/ethernet.pm:1
#, c-format
msgid ""
"Which dhcp client do you want to use?\n"
"Default is dhcp-client."
msgstr ""
"±z­n¨Ï¥Î­þ¤@­Ó dhcp ¨Ï¥ÎºÝµ{¦¡?\n"
"¹w³]¬O¥Î dhcp-client"

#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "Domain Name:"
msgstr "ºô°ì¦WºÙ"

#: ../../any.pm:1
#, fuzzy, c-format
msgid "On Floppy"
msgstr "¶}¾÷¤ù"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Restore"
msgstr "¦^¦s"

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check if the network devices are in promiscuous mode."
msgstr ""

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Looking for available packages..."
msgstr "¥¿¦b·j´M¥i¥H¦w¸Ëªº®M¥ó"

#: ../../any.pm:1
#, c-format
msgid "Init Message"
msgstr "±Ò°Ê°T®§"

#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Rescue partition table"
msgstr "·m±ÏµwºÐ¤À³Îªí"

#: ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Connection complete."
msgstr "³s½u³t«×"

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

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Remove from RAID"
msgstr "¥ÑºÏºÐ°}¦C¤¤²¾°£"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "³o­Ó±K½X¤Ó²³æ¤F (¤@©w¦Ü¤Ö­n¦³ %d ­Ó¦r¤¸¤~¦æ)"

#: ../../standalone/drakbug:1
#, c-format
msgid "Configuration Wizards"
msgstr "³]©wºëÆF"

#: ../../network/netconnect.pm:1
#, c-format
msgid "ISDN connection"
msgstr "ISDN ³s½u"

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

#: ../../printer/main.pm:1
#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr " ¦ì©ó Windows ¥D¾÷ \"%s\"¡A¤À¨É¦WºÙ \"%s\""

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"This dialog is used to choose which services you wish to start at boot\n"
"time.\n"
"\n"
"DrakX will list all the services available on the current installation.\n"
"Review each one carefully and uncheck those which are not needed at boot\n"
"time.\n"
"\n"
"A short explanatory text will be displayed about a service when it is\n"
"selected. However, if you are not sure whether a service is useful or not,\n"
"it is safer to leave the default behavior.\n"
"\n"
"!! At this stage, be very careful if you intend to use your machine as a\n"
"server: you will probably not want to start any services that you do not\n"
"need. Please remember that several services can be dangerous if they are\n"
"enabled on a server. In general, select only the services you really need.\n"
"!!"
msgstr ""
"±µ¤U¨Ó±z»Ý­n¿ï¾Ü§A¥´ºâ©ó±Ò°Ê¨t²Î®É­nÅý¨º¨ÇªA°È°õ¦æ¹B§@¡C\n"
"\n"
"©Ò¥X²{ªº©Ò¦³¥i¿ï¾Ü¶µ¥Ø¡A³£¬O¦w¸Ë¹Lµ{¤¤©Ò¦w¸Ë¶i¥hªº¬ÛÃö¨t²ÎªA°È®M¥ó¡C½Ð¥J²Ó¸Ô"
"²Ó¬d¬Ý¨M©w¨º¨ÇªA°È­nÅý¥¦©ó¶}¾÷®É¯à°÷±Ò°Ê¡C\n"
"\n"
"·í§A¿ï¨ú¸Ó¶µ¥Ø®É¡A¿Ã¹õ®ÇÃä·|¥X²{¤@­Ó²²¤»¡©ú¡A§i¶D±z³o­ÓªA°È¶µ¥Øªº¥Î³~¡C¹ï"
"¤F¡A­Y¬O±z¹ï©ó¸Ó¶µ¥Ø¹ê¦b¤£½T©w¬O§_­n±Ò¥Îªº¸Ü¡A¤ñ¸û¦w¥þªº§@ªk´N¬Oºû«ù­ì¼Ë¤£­n"
"°Ê§@§Y¥i¡C\n"
"\n"
"½Ðª`·N¤@¤U¡A¦pªG±z³o¥x¾÷¾¹¬O±Mªù­n·í§@Internet¦øªA¾¹´£¨Ñºô¸ô¤W¬ÛÃöªA°Èªº¸Ü¡A"
"«Øij±z¸Ô²Ó«ä¦Ò¨M©w¨º¨ÇªA°È­n¶}±ÒÃö³¬¡A¦]¬°¬Y¨ÇªA°È®M¥ó±Ò°Ê«á¥i¯à·|¦³¤@¨Ç¼ç¦b"
"ªº¦w¥þ©Ê­·ÀI°ÝÃD¡C«Øij±z¡A¥u¿ï¨ú­n§A¶}©ñªºªA°È¶µ¥Ø§Y¥i¡C"

#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Skip"
msgstr "²¤¹L"

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

#: ../../services.pm:1
#, c-format
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
msgstr "¦b¨t²Î¶}¾÷®É¡A¿ï¾Ü±Ò°Êºô¸ô¥\¯à¡A©ÎªÌ¬OÃö³¬¤£±Ò°Ê¸ÓªA°È¡C"

#: ../../standalone/harddrake2:1
#, c-format
msgid ""
"the CPU frequency in MHz (Megahertz which in first approximation may be "
"coarsely assimilated to number of instructions the cpu is able to execute "
"per second)"
msgstr ""

#: ../../pkgs.pm:1
#, c-format
msgid "important"
msgstr "­«­nªº"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Total Progress"
msgstr "¥þ³¡¶i«×"

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"DrakX will first detect any IDE devices present in your computer. It will\n"
"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
"your hard drives. If so, you'll have to specify your hardware by hand.\n"
"\n"
"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
"want to configure options for it. You should allow DrakX to probe the\n"
"hardware for the card-specific options which are needed to initialize the\n"
"adapter. Most of the time, DrakX will get through this step without any\n"
"issues.\n"
"\n"
"If DrakX is not able to probe for the options to automatically determine\n"
"which parameters need to be passed to the hardware, you'll need to manually\n"
"configure the driver."
msgstr ""
"DrakX µ{¦¡¥Ø«e¥¿¦b°»´ú±z¨t²Î¤Wªº IDE ¸Ë¸m¡C¦¹¥~¡A¥¦¤]·|¶¶«K±½´y¨t²Î©Ò¦w¸Ëªº "
"SCSI ¤¶­±¥d¡C·í°»´ú¨ì SCSI ¥d®É¡ADrakX µ{¦¡±N·|¦Û°Ê¦w¸Ë¾A·íªºSCSI ÅX°Êµ{¦¡ÅX"
"°Ê¸Ó SCSI ³]³Æ¡C\n"
"\n"
"¦]¬°¦w¸Ëµ{¦¡¤]³\µLªk§¹¥þªº°»´ú¥X±zªº¨t²Î¬O§_ÁÙ¦³§ó¦hªºµwÅé¸Ë¸m¡A©Ò¥HDrakXµ{¦¡"
"·|¸ß°Ý±zªº¨t²Î¬O§_¦³¡uPCI SCSI¡v¤¶­±¥d¦s¦b¡C·í§A¿ï¾Ü¡y¬Oªº¡zªº®É­Ô±z±N¥i¥H¤â"
"°Ê¿ï¾Ü±z¨t²Î©Ò¦w¸ËªºSCSI¤¶­±¥dªº¶µ¥Ø¡C­Y¬O¨S¦³ªº¸Ü¡A¿ï¾Ü¡y§_¡z´N¥i¥H¤F¡C­Y¬O"
"±z¹ê¦bµLªk½T©w¦³¨º¨ÇµwÅ鶵¥Ø¦s¦b¡A±z¥i¥H¿ï¨ú¡yÀ˵øµwÅé¸ê°T¡z¨ÃÂI¿ï¡y½T©w¡z¦^"
"¨ì­ì¥»µe­±¡C\n"
"\n"
"·í±z¨Ï¥Î¤â°Ê¤è¦¡«ü©w±z¨t²Îªº¤¶­±¥d®É¡ADrakXµ{¦¡·|¸ß°Ý±z¬O§_­n¹ï³o­ÓÅX°Êµ{¦¡ÃB"
"¥~¿é¤J¨ä¥L°Ñ¼Æ¡C±zÀ³¸Ó­n¤¹³\ DrakX ¯à°÷¥ý¦Û°Ê°»´ú¸Ó¶gÃä¸Ë¸mª¬ºA¡A°£«D¯uªºµLªk"
"°»´ú®É¤~¤â°Ê«ü©w°Ñ¼Æ¶Ç¹Fµ¹¸ÓÅX°Êµ{¦¡¡C\n"
"\n"
"½Ðª`·Nªº¬O¡A­Y¬O±z­n¤â°Ê«ü©w¶Ç¤Jªº°Ñ¼Æ¡A«Øij±z½Ð°Ñ¦Ò¨Ï¥Î¤â¥Uªº²Ä¤T³¹ "
"(\"Collecting Information on Your hardware\") ¥H«K©óÀò±o§ó¦h¬ÛÃö¸ê°T¡C"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Users"
msgstr "¨Ï¥ÎªÌ"

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

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Preparing bootloader..."
msgstr "¥¿¦b·Ç³Æ¶}¾÷µ{¦¡"

#: ../../network/network.pm:1
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "³q°T¹h (¤ñ¤è %s)"

#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "The passwords do not match"
msgstr "¿é¤Jªº±K½X¤£²Å¦X"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Examples for correct IPs:\n"
msgstr ""

#: ../../standalone/harddrake2:1
#, c-format
msgid "Frequency (MHz)"
msgstr ""

#: ../../install_any.pm:1
#, c-format
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
"­n¨Ï¥Î©ÒÀx¦sªº®M¥ó¿ï¾Ü¡A¦b¶}¾÷¦w¸Ë±Ò°Ê LILO µ{¦¡ªº®É­Ô¡A©ó boot ¿é¤J:linux "
"defcfg=floopy §Y¥i¡C"

#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "the number of the processor"
msgstr "   ¶i«×Barªº¦â±m                                 "

#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Hardware clock set to GMT"
msgstr "µwÅé®ÉÄÁ³]©w¬° GMT ®É¶¡"

#: ../../network/isdn.pm:1
#, fuzzy, c-format
msgid "Do you want to start a new configuration ?"
msgstr "±z·Q­n´ú¸Õ±zªº³]©w­È¶Ü¡H"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Give a file name"
msgstr "¿é¤JÀɮצWºÙ"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Please choose the port that your printer is connected to."
msgstr "½Ð¿ï¨ú¦Lªí¾÷©Ò³s±µªº³s±µ°ð¡C"

#: ../../standalone/livedrake:1
#, c-format
msgid "Change Cd-Rom"
msgstr "§ó´«¥úºÐ¤ù"

#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "Configuration is complete, do you want to apply settings ?"
msgstr "±z­n¥Î­þ¤@­Ó XFree ³]©w ?"

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

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Use Incremental/Differential Backups  (do not replace old backups)"
msgstr "¨Ï¥Î»¼¼W³Æ¥÷ (¤£·|Âл\¦³³Æ¥÷)"

#: ../../harddrake/sound.pm:1
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "©|¥¼¦³¥ô¦ó´£¨Ñ±z¨Ï¥Îªº­µ®Ä¥dÅX°Êµ{¦¡ (%s)"

#: ../../standalone/drakfloppy:1
#, c-format
msgid "force"
msgstr "±j­¢"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Exit"
msgstr "Â÷¶}"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"NOTE: Depending on the printer model and the printing system up to %d MB of "
"additional software will be installed."
msgstr ""
"NOTE¡G»Ý­n¦w¸Ë¥²­nªº¦Lªí¾÷ÅX°Êµ{¦¡®M¥óµ¥ÀɮסA¤j¬ù¦@¦û¥Î %d MB ªºªÅ¶¡¡C"

#: ../../standalone/drakconnect:1
#, c-format
msgid ""
"You don't have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
msgstr ""
"±zÁÙ¨S¦³¥ô¦ó¤w¸g³]©w¦nªººô¸ô¤¶­±¡C\n"
"½ÐÂI¿ï³]©w¨Ó¶i¦æºô¸ô¤¶­±³]©w°Ê§@"

#: ../../keyboard.pm:1
#, c-format
msgid "Estonian"
msgstr "·R¨F¥§¨È"

#: ../../services.pm:1
#, c-format
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr "Apache ¬O¤@­Ó´£¨Ñ Web ªA°Èªºµ{¦¡¡A´£¨Ñ¬[³] Web Server Åý¨Ï¥ÎªÌÂsÄý¡C"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Add/Del Clients"
msgstr "·s¼W/§R°£¥Î¤áºÝ"

#: ../../network/ethernet.pm:1 ../../standalone/drakgw:1
#: ../../standalone/drakpxe:1
#, c-format
msgid "Choose the network interface"
msgstr "¿ï¨úºô¸ô¤¶­±"

#: ../../printer/detect.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Unknown Model"
msgstr "¥¼ª¾ªº«¬¸¹"

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

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"Partition booted by default\n"
"    (for MS-DOS boot, not for lilo)\n"
msgstr ""
"¹w³]¶}¾÷ªº¤À³Î°Ï\n"
"    (µ¹ MS-DOS ¶}¾÷µ{¦¡¥Îªº, ¸ò lilo µLÃö)\n"

#: ../../standalone/draksplash:1
#, fuzzy, c-format
msgid "choose image"
msgstr "¿ï¾Ü¬M¹³ÀÉ®×        "

#: ../../network/shorewall.pm:1
#, c-format
msgid "Firewalling configuration detected!"
msgstr "¨¾¤õÀð³]©w¤w¸g°»´ú¨ì¤F!"

#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Connection name"
msgstr "³s½u¦WºÙ"

#: ../../standalone/draksplash:1
#, c-format
msgid ""
"x coordinate of text box\n"
"in number of characters"
msgstr "   ¦r¤¸¤å¦r¤è¶ôªº X ¶b§¤¼Ð                       "

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Updating package selection"
msgstr "¥¿¦b§ó·s®M¥óªº¿ï¾Ü"

#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Where do you want to mount the loopback file %s?"
msgstr "±z­n§â loopback ÀÉ®× %s ±¾¸ü¦b¨º¸Ì ?"

#: ../../standalone/drakautoinst:1
#, c-format
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
"¤w¸g¦¨¥\«Ø¥ß¦Û°Ê¦w¸ËºÏ¤ù¡C\n"
"±z¥i¥H¨Ï¥Î³o±iºÏ¤ù¶i¦æ¦Û°Ê¦w¸Ëªºµ{§Ç"

#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "the number of buttons the mouse has"
msgstr "   ¶i«×Barªº¦â±m                                 "

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr "½Ð¿é¤J­n³Æ¥÷¨ì¸Ó¥D¾÷ªº©Ò¦b¥Ø¿ý¦WºÙ"

#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Replay"
msgstr "­«¼½"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Backup other files"
msgstr "³Æ¥÷¨ä¥LÀÉ®×"

#: ../../install_steps.pm:1
#, c-format
msgid "No floppy drive available"
msgstr "¨S¦³¥i¥Îªº³nºÐ¾÷"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Backup files are corrupted"
msgstr "³Æ¥÷ªºÀɮפw¸g·´·l"

#: ../../standalone/drakxtv:1
#, c-format
msgid "TV norm:"
msgstr ""

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

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

#: ../../keyboard.pm:1
#, c-format
msgid "Lithuanian AZERTY (new)"
msgstr "¥ß³³©{ (·s AZERTY ¦¡)"

#: ../../standalone/harddrake2:1
#, c-format
msgid "yes means the arithmetic coprocessor has an exception vector attached"
msgstr ""

#: ../../fsedit.pm:1
#, fuzzy, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"Please be sure to add a /boot partition"
msgstr ""
"§A¤w¸g¿ï¾Ü¤F¤@¶ô software RAID ªº¤À³Î°Ï·í§@¬° ®Ú¤À³Î°Ï (/) ªº±¾¸üÂI\n"
"±z­n¥t¥~¹º¤À¤@­Ó¤£¬O¦b software RAID ªº¤À³Î°Ï§@¬° /boot ªº±¾¸üÂI¨Ï¥Î¡A\n"
"¦p¦¹¶}¾÷ºÞ²zµ{¦¡¤~¯à°÷¥¿±`±Ò°Ê±zªº¨t²Î¡C"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Previous"
msgstr "¤W¤@¨B"

#: ../../any.pm:1
#, c-format
msgid "Other OS (MacOS...)"
msgstr "¨ä¥L§@·~¨t²Î (MacOS...)"

#: ../../mouse.pm:1
#, c-format
msgid "To activate the mouse,"
msgstr "¬°¤FÅý±zªº·Æ¹«¯à°÷¨Ï¥Î"

#: ../../install_interactive.pm:1
#, c-format
msgid "Bringing up the network"
msgstr "±Ò°Êºô¸ô³s½u"

#: ../../common.pm:1
#, c-format
msgid "Screenshots will be available after install in %s"
msgstr "¦b¦w¸Ë %s «á´N¯à°÷´£¨Ñµe­±®·®»¥\¯à"

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose which one you want to resize in order to install your new\n"
"Mandrake Linux operating system.\n"
"\n"
"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
"\"Capacity\".\n"
"\n"
"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
"\"sd\" if it is a SCSI hard drive.\n"
"\n"
"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard drives:\n"
"\n"
" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
"\n"
" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
"\n"
" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
"\n"
" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
"\"second lowest SCSI ID\", etc.\n"
"\n"
"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
"disk or partition is called \"C:\")."
msgstr ""
"¥Ø«e°»´ú¨ì±zªºµwºÐ¤W¦³¦h­Ó Windows ¤À³Î°Ï¡A½Ð¿ï¾Ü±z§Æ±æ­nÁY¤pWindowsªº¤À³Î"
"°Ï¡A¥H«K©ó§âªÅ¶¡®¿¥X¨Ó¦w¸Ë¡uMandrake Linux¡v§@·~¨t²Î¡C\n"
"\n"
"¨C­Ó¤À³Î°Ï³£¦C¥X¤F¹³¬O:¡yLinux ¦WºÙ¡z,¡yWindows ¦WºÙ¡z,¡y®e¶q¡z¡C\n"
"\n"
"¡yLinux ¦WºÙ¡z¬O¦³µ²ºc©Êªº:¡yµwºÐ«¬ºA¡z,¡yµwºÐ½s¸¹¡z,¡y¤À³Î°Ï½s¸¹¡z(¤ñ¤è¹³"
"¬O: hda )¡C\n"
"\n"
"¡yµwºÐ«¬ºA¡z´N¬O¡A­Y±z¨Ï¥Îªº¬O IDE µwºÐ¡A·|Åã¥Ü¡uhd¡v, ­Y¬OSCSIµwºÐªº¸Ü¡A´N¬O"
"Åã¥Ü¡usd¡v¡C\n"
"\n"
"¡yµwºÐ½s¸¹¡z´N¬O¦b¡uhd¡v©ÎªÌ¬O¡usd¡v«á­±ªº¦r¥À¡C¥H IDE µwºÐ¸Ë¸m¨Ó»¡¨ä·N¸q"
"¬°:\n"
"\n"
" ¡¯¡ua¡v³o¬O«ü¡uprimary IDE controller ¤W²Ä¤@¥x (master) µwºÐ¡v¡A\n"
"\n"
" ¡¯¡ub¡v³o¬O«ü¡uprimmary IDE controller ¤W²Ä¤G¥x (slave) µwºÐ¡v¡A\n"
"\n"
" ¡¯¡uc¡v³o¬O«ü¡usecondary IDE controller ¤W²Ä¤@¥x (master) µwºÐ¡v¡A\n"
"\n"
" ¡¯¡ud¡v³o¬O«ü¡usecondary IDE controller ¤W²Ä¤G¥x (slave) µwºÐ¡v¡C\n"
"\n"
"¥H SCSI µwºÐ¨Ó»¡¡A¡ua¡v´N¬O«ü¡uSCSI IDE ½s¸¹³Ì¤pªº¨º¤@¥x¡v, ¡ub¡v´N¬O«ü"
"¡uSCSI IDE¡v½s¸¹¬°¤Gªº¨º¤@¥xµwºÐ¡v¡AµM«á¨Ì¦¹Ãþ±À¤U¥h.....\n"
"\n"
"¡uWindows ¦WºÙ¡v´N¬O¦b Windows ¤UªººÏºÐ¾÷¥N¸¹¦WºÙ¡A¤ñ¤è¹³¬O¡uC:\\¡v¡C"

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

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Computing FAT filesystem bounds"
msgstr "¥¿¦b­pºâ fat ¤À³Î°ÏªºÃä¬É"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
"\n"
"³Æ¥÷¨Ó·½ÀÉ: \n"

#: ../../standalone/logdrake:1
#, c-format
msgid "Content of the file"
msgstr "Àɮתº¤º®e"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Authentication LDAP"
msgstr "LDAP »{ÃÒ"

#: ../../harddrake/sound.pm:1
#, c-format
msgid "Let me pick any driver"
msgstr ""

#: ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Profile "
msgstr "³]©wÀÉ¡G"

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

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Palestine"
msgstr "¸ô®|¿ï¾Ü"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "RAID md%s\n"
msgstr "ºÏºÐ°}¦C (RAID) md%s\n"

#: ../../modules/parameters.pm:1
#, c-format
msgid "%d comma separated strings"
msgstr "%d ¥Î¤À¸¹¤À¹jªº¦r¦ê"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Here is the full list of keyboards available"
msgstr "¤U­±²M³æ¬O¥i¨Ñ¿ï¾ÜªºÁä½L¦Cªí"

#: ../../standalone/draksplash:1
#, c-format
msgid "Theme name"
msgstr "    §G´º¦WºÙ   "

#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
#, c-format
msgid "/_Help"
msgstr "/»¡©ú (_H)"

#: ../../standalone/scannerdrake:1
#, c-format
msgid ""
"Here you can choose whether the scanners connected to this machine should be "
"accessable by remote machines and by which remote machines."
msgstr ""

#: ../../standalone/draksplash:1
#, c-format
msgid "the width of the progress bar"
msgstr "   ¶i«×Barªº¼e«×                                 "

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

#: ../../fs.pm:1
#, c-format
msgid "Formatting partition %s"
msgstr "¥¿¦b®æ¦¡¤Æ¤À³Î°Ï %s"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Hostname required"
msgstr "»Ý­n¿é¤J¥D¾÷¦WºÙ"

#: ../../standalone/drakfont:1
#, c-format
msgid "Unselect fonts installed"
msgstr "¤Ï¦V¿ï¨ú¤w¦w¸Ë¦r«¬"

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

#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Searching for configured scanners ..."
msgstr "¥i¥Îªº¦Lªí¾÷"

#: ../../mouse.pm:1
#, c-format
msgid "Wheel"
msgstr "ºu½ü"

#: ../../harddrake/data.pm:1
#, fuzzy, c-format
msgid "Videocard"
msgstr "Åã¥Ü¼Ò¦¡"

#: ../../standalone/drakbackup:1
#, c-format
msgid "\tBackups use tar and bzip2\n"
msgstr "\t¨Ï¥Î tar »P bzip2 ¶i¦æ³Æ¥÷\n"

#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
#, c-format
msgid "Remove Selected"
msgstr "²¾°£¿ï¨ú¶µ¥Ø"

#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "/Autodetect _modems"
msgstr "¦Û°Ê°»´ú"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remove printer"
msgstr "§R°£¦Lªí¾÷"

#: ../../install_interactive.pm:1
#, c-format
msgid ""
"WARNING!\n"
"\n"
"DrakX will now resize your Windows partition. Be careful:\n"
"this operation is dangerous. If you have not already done\n"
"so, you should first exit the installation, run scandisk\n"
"under Windows (and optionally run defrag), then restart the\n"
"installation. You should also backup your data.\n"
"When sure, press Ok."
msgstr ""
"ĵ§i!\n"
"\n"
"DrakX ²{¦b­n­«©w±z Windows ¤À³Î°Ïªº¤j¤p¡A½Ð¤p¤ß!! \n"
"³o­Ó°Ê§@¬O«Ü¦MÀIªº¡A½Ð¥ýÂ÷¶}¦w¸Ëµ{¦¡¡A¦b Windows \n"
"©³¤U°õ¦æ scandisk ¸ò defrag ¥H«á¦A¨Ó¦w¸Ë Linux¡A¦Ó¥B\n"
"³Ì¦n¥ý±N Windows ¤À³Î°Ï©³¤Uªº¸ê®Æ°µ¦n³Æ¥÷¡C½T©w³£\n"
"¨S°ÝÃD¥H«á¡A¤~«ö¡y½T©w¡z¶s¡C"

#: ../../network/drakfirewall.pm:1
#, c-format
msgid "Which services would you like to allow the Internet to connect to?"
msgstr "¨º¤@ºØªA°È±z­n¶}©ñ¹ï¥~³s½uªA°È©O¡H"

#: ../../standalone/logdrake:1
#, c-format
msgid ""
"Welcome to the mail configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
"Åwªï¨Ó¨ì¶l¥ó³]©w¤u¨ã¡C\n"
"\n"
"¦b³o¸Ì¡A±z¯à°÷³]©w±zªºÄµ¥Ü³qª¾ªº¤è¦¡¡C\n"

#: ../../install_steps_gtk.pm:1 ../../mouse.pm:1 ../../services.pm:1
#: ../../diskdrake/hd_gtk.pm:1 ../../standalone/drakbackup:1
#, c-format
msgid "Other"
msgstr "¨ä¥L"

#: ../../any.pm:1 ../../harddrake/v4l.pm:1
#, c-format
msgid "Default"
msgstr "¹w³]¶}¾÷"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Button 2 Emulation"
msgstr "¨âÁä¼ÒÀÀ"

#: ../../standalone/drakfont:1
#, c-format
msgid "type1inst building"
msgstr ""

#: ../../standalone/drakfont:1
#, c-format
msgid "Abiword"
msgstr "Abiword"

#: ../../standalone/draksplash:1
#, c-format
msgid "choose image file"
msgstr "¿ï¾Ü¬M¹³ÀÉ®×        "

#: ../../Xconfig/card.pm:1
#, c-format
msgid "X server"
msgstr "X ¦øªAµ{¦¡"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Domain Admin User Name"
msgstr "ºô°ìºÞ²z±b¸¹"

#: ../../standalone/drakxtv:1
#, c-format
msgid "There was an error while scanning for TV channels"
msgstr "±½´y¹qµøÀW¹Dµo¥Í¿ù»~"

#: ../../keyboard.pm:1
#, c-format
msgid "US keyboard (international)"
msgstr "¬ü¦¡Áä½L (°ê»Ú³q¥Î«¬)"

#: ../../standalone/drakbug:1
#, c-format
msgid "Not installed"
msgstr "©|¥¼¦w¸Ë"

#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Both Alt keys simultaneously"
msgstr "¦P®É¨âÃä Shift «öÁä"

#: ../../network/netconnect.pm:1
#, c-format
msgid "LAN connection"
msgstr "°Ï°ìºô¸ô³s½u"

#: ../../standalone/logdrake:1
#, c-format
msgid "/File/-"
msgstr "/ÀÉ®×/-"

#: ../../keyboard.pm:1
#, c-format
msgid "Italian"
msgstr "¸q¤j§Q"

#: ../../interactive.pm:1 ../../standalone/draksec:1
#, c-format
msgid "Basic"
msgstr "°ò¥»"

#: ../../standalone/drakTermServ:1
#, c-format
msgid ""
"\n"
" Copyright (C) 2002 by MandrakeSoft \n"
"\tStew Benedict sbenedict\\@mandrakesoft.com\n"
"\n"
msgstr ""

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

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

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Card IO"
msgstr "¤¶­±¥d IO"

#: ../../standalone/drakperm:1
#, c-format
msgid "when checked, owner and group won't be changed"
msgstr "·í¸Ó¶µ¥Ø¿ï¨ú®É¡A±NµLªk¥t¥~¿ï¾Ü®M¥Îªº¾Ö¦³ªÌ»P¸s²Õ¶µ¥Ø"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"\n"
"This special Bootstrap\n"
"partition is for\n"
"dual-booting your system.\n"
msgstr ""
"\n"
"³o¬O¤@­Ó¥Î¨Ó§@¬°¦h­«¶}¾÷\n"
"¨Ï¥Îªº¯S®í¤À³Î°Ï¡C\n"

#: ../../standalone/drakautoinst:1
#, c-format
msgid ""
"Please choose for each step whether it will replay like your install, or it "
"will be manual"
msgstr "½Ð¿ï¾Ü¨C¤@­Ó¦w¸Ëªº¨BÆJ¡A³o¨Ç±N·|¬O±z©Ò¾Þ§@ªº¦w¸Ë¹Lµ{"

#: ../../standalone/scannerdrake:1
#, c-format
msgid ""
"You can also decide here whether scanners on remote machines should be made "
"available on this machine."
msgstr ""

#: ../../standalone/drakbackup:1
#, c-format
msgid "\t-Network by FTP.\n"
msgstr "\t-ºô¸ô (³z¹L FTP)\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "You must enter a device or file name!"
msgstr "±z»Ý­n¿ï¾Ü©Î¿é¤J¸Ó¦Lªí¾÷¦WºÙ©Î¸Ë¸m¶µ¥Ø!"

#: ../../standalone/harddrake2:1
#, c-format
msgid "/_Quit"
msgstr "/µ²§ô (_Q)"

#: ../../network/adsl.pm:1
#, c-format
msgid ""
"You need the alcatel microcode.\n"
"Download it at\n"
"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
"and copy the mgmt.o in /usr/share/speedtouch"
msgstr ""

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "ø¹Ï°O¾ÐÅé¡G %s kB\n"

#: ../../standalone.pm:1
#, c-format
msgid ""
"This program is free software; you can redistribute it and/or modify\n"
"it under the terms of the GNU General Public License as published by\n"
"the Free Software Foundation; either version 2, or (at your option)\n"
"any later version.\n"
"\n"
"This program is distributed in the hope that it will be useful,\n"
"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n"
"GNU General Public License for more details.\n"
"\n"
"You should have received a copy of the GNU General Public License\n"
"along with this program; if not, write to the Free Software\n"
"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
msgstr ""

#: ../../any.pm:1
#, c-format
msgid "access to compilation tools"
msgstr "¦s¨ú·J¾ã¤u¨ã"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Please select data to restore..."
msgstr "½Ð¿ï¨ú­n¦^¦sªº¸ê®Æ..."

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid ""
"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
"enough)\n"
"at the beginning of the disk"
msgstr ""
"¦pªG§A¥´ºâ¨Ï¥Î aboot µ{¦¡ªº¸Ü¡A½Ðª`·N±z¦Ü¤Ö»Ý­n¦b©óºÏºÐ³Ì«eºÝ«O¯d¤@¶ô¥i¥ÎªºªÅ"
"¶¡ (2048 ºÏ°Ï´N¨¬°÷¤F)¡C"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Standard test page"
msgstr "¼Ð·Ç¦C¦L´ú¸Õ­¶"

#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Create"
msgstr "·s«Ø"

#: ../../standalone/drakbackup:1
#, c-format
msgid "What"
msgstr "³Æ¥÷¶µ¥Ø³]©w"

#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "There was an error ordering packages:"
msgstr "±Æ¦C®M¥ó®Éµo¥Í¿ù»~¡G"

#: ../../keyboard.pm:1
#, c-format
msgid "Bulgarian (BDS)"
msgstr "«O¥[§Q¨È"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Disable Server"
msgstr "Ãö³¬ªA°È"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Filesystem encryption key"
msgstr "Àɮרt²Î¥[±Kª÷Æ_"

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

#: ../../interactive/stdio.pm:1
#, c-format
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
"½Ð¿ï¨ú±z­n½s¿èªº«e10­Ó¶µ¥Ø¡A«ö¤UEnterÄ~Äò¡C\n"
"±z¥Ø«e¿ï¾Ü¬O¡H"

#: ../../standalone/draksplash:1
#, c-format
msgid "Save theme"
msgstr "Àx¦s§G´º"

#: ../../standalone/drakperm:1
#, c-format
msgid "group"
msgstr "¸s²Õ"

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

#: ../../standalone/drakautoinst:1
#, c-format
msgid "Auto Install"
msgstr "¦Û°Ê¦w¸Ë"

#: ../../network/isdn.pm:1 ../../network/netconnect.pm:1
#, c-format
msgid "Network Configuration Wizard"
msgstr "ºô¸ô³]©wºëÆF"

#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Removable media automounting"
msgstr "©â¨ú¦¡¸Ë¸m¦Û°Ê±¾¸ü"

#: ../../services.pm:1
#, c-format
msgid "Printing"
msgstr "¦C¦L"

#: ../../harddrake/sound.pm:1
#, c-format
msgid "Unkown driver"
msgstr "¥¼ª¾ªºÅX°Êµ{¦¡"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"There are no printers found which are directly connected to your machine"
msgstr "±zªº¨t²Î°»´ú¤£¨ì¦³¥ô¦ó¥»¾÷¦Lªí¾÷ªº¦w¸Ë"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Create a new partition"
msgstr "«Ø¥ß·sªº¤À³Î°Ï"

#: ../../harddrake/sound.pm:1
#, c-format
msgid "Driver:"
msgstr "ÅX°Êµ{¦¡¡G"

#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "unknown"
msgstr "¥¼ª¾ªº«¬¸¹"

#: ../../install_interactive.pm:1
#, c-format
msgid "Use fdisk"
msgstr "¨Ï¥Î fdisk µ{¦¡"

#: ../../mouse.pm:1
#, c-format
msgid "MOVE YOUR WHEEL!"
msgstr "²¾°Ê±zªººu½ü !"

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

#: ../../network/network.pm:1
#, c-format
msgid "Automatic IP"
msgstr "¦Û°Ê¤À°t IP"

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"%s\" to reboot the system. The first thing you\n"
"should see after your computer has finished doing its hardware tests is the\n"
"bootloader menu, giving you the choice of which operating system to start.\n"
"\n"
"The \"%s\" button shows two more buttons to:\n"
"\n"
" * \"%s\": to create an installation floppy disk that will automatically\n"
"perform a whole installation without the help of an operator, similar to\n"
"the installation you just configured.\n"
"\n"
"   Note that two different options are available after clicking the button:\n"
"\n"
"    * \"%s\". This is a partially automated installation. The partitioning\n"
"step is the only interactive procedure.\n"
"\n"
"    * \"%s\". Fully automated installation: the hard disk is completely\n"
"rewritten, all data is lost.\n"
"\n"
"   This feature is very handy when installing a number of similar machines.\n"
"See the Auto install section on our web site for more information.\n"
"\n"
" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
"To use this selection with another installation, insert the floppy and\n"
"start the installation. At the prompt, press the [F1] key and type >>linux\n"
"defcfg=\"floppy\" <<.\n"
"\n"
"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
"\"mformat a:\")"
msgstr ""
"·í¾ã­Ó¦w¸Ë¨BÆJ¨ì³o¸Ìªº®É­Ô¡A¨º´N¥Nªí±z¤w¸g§¹¦¨¤F¡yGNU/Linux¡z¨t²Îªº¦w¸Ë¨BÆJ¡A"
"±z¥i¥HÂI¿ï¡y½T©w¡z­«·s±Ò°Ê¹q¸£¡C\n"
"\n"
"¡¯¡y¶i¶¥¡z«ö¶s¶µ¥Ø(±M®a¼Ò¦¡¤~·|¥X²{)¡A±N·|Åã¥Ü¨â­Ó¥i¥Îªº¶µ¥ØÅý±z¿ï¾Ü:\n"
"\n"
" ¡¯ ¡y²£¥Í¦Û°Ê¦w¸ËºÏ¤ù¡z¡G³o±N·|«Ø¥ß¤@±i¯à°÷¦Û°Ê¦w¸ËªººÏ¤ù¡A\n"
"¾ã­Ó¦Û°Ê¤Æ¦w¸Ëªº¨BÆJ¡A±N·|¨Ì·Ó±zªº¾Þ§@¹Lµ{¨Ó¶i¦æ¡C\n"
"\n"
"  ½Ðª`·N³oÃä¡A·í±zÂI¿ï³o­Ó¶µ¥Ø«á¡A¥i¥H¬Ý¨ìÁÙ¦³¨â­Ó°Ñ¼Æ¶µ¥Ø¥i¨Ñ¿ï¾Ü:\n"
"\n"
"   ¡¯¡y­«¼½¡z¡G³o¬O¥b¦Û°Ê¦w¸Ë¤è¦¡¡AºÏºÐ¤À³Î¶µ¥Ø±N·|ºû«ù¤â°Ê¤è¦¡¾Þ§@¡C\n"
"\n"
"   ¡¯¡y¦Û°Ê¤Æ¡z¡G³o¬O¥þ¦Û°Êªº¦w¸Ë¤è¦¡¡A¥]§tºÏºÐµ¥¦MÀI°Ê§@³£·|¦Û°Ê³B²z¡C\n"
"\n"
"  ³o¸Ìªº¥\¯à¡A¹ï©ó±z»Ý­n¤j¶q¦w¸Ë«Ü¦hLinux¨t²Î¦b¤@¤j¸s¾÷¾¹¤Wªº¸Ü¨Ó»¡³o¬O¬Û·í¦³"
"À°§Uªº¡CÃö©ó³o¸Ì¬ÛÃö¶i¤@¨B¸ê®Æ¡A±z¥i¥H°Ñ¦Òºô­¶¤W¦Û°Ê¦w¸Ë³¹¸`ªº¬ÛÃö»¡©ú¡C\n"
"\n"
" ¡¯ ¡yÀx¦s®M¥ó¿ï¾Ü¡z(*)¡G³o­Ó¶µ¥Ø´N¬O±N±z¥ý«e¾Þ§@¿ï¾Ü©Ò­n¦w¸Ëªº®M¥ó²M³æ¶µ¥Ø³£"
"¬ö¿ý°_¨Ó¦s©ñ¨ìºÏ¤ù¤º¡A¥H«K©ó±z¥i¥H¦b¨Æ«áÁٻݭn¦w¸ËMandrake Linux ®É¡A¥i¥Hª½±µ"
"¸ü¤J¥ý«e©Ò¿ï¾Ü­n¦w¸Ëªº®M¥ó²M³æ¡A¤£»Ý­n¦A¤@¦¸­«·s¿ï¾Ü¤F¡C\n"
"­Y¬O±z­n¨Ï¥Î³o±iºÏ¤ù¬ö¿ýªº®M¥ó²M³æ¶i¦æ¦w¸Ëªº¸Ü¡A¶}¾÷®É¥X²{¡yMandrake Logo¡z"
"®É¡A«ö¤U F1 «ö¥ó¡AµM«á¿é¤J¡ulinux defcfg=\"floppy\"¡v §Y¥i¡C\n"
"\n"
"(¡¯) ­n¨Ï¥Î¡yÀx¦s®M¥ó¿ï¾Ü¡z¥\¯à¡A±z»Ý­n¤@±i¤w¸g¨Ï¥ÎDOS/Windowsµ¥®æ¦¡¤Æ¦nªº "
"FAT ®æ¦¡ºÏ¤ù¥H«K©ó¨Ï¥Î¡C(GNU/Linux Àô¹Ò¤U¡A¥i¥H¥Î mformat a: »s§@¤@±iªÅ¥ÕºÏ"
"¤ù¡C)"

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

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Configuration of a remote printer"
msgstr "³]©w»·ºÝ¦Lªí¾÷"

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

#: ../../standalone/drakbackup:1
#, c-format
msgid "Please check if you want to erase your tape before the backup."
msgstr "¦pªG±z­n¥ý²M°£ºÏ±a­ì¦³¸ê®Æ¡A½Ð¿ï¨ú¸Ó¶µ¥Ø¡C"

#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid "An online platform to respond to enterprise support needs."
msgstr ""

#: ../../network/network.pm:1
#, c-format
msgid "URL should begin with 'ftp:' or 'http:'"
msgstr "¦øªA¾¹ªº³]©w®æ¦¡¥²¶·¬° http:// ©Î¬O ftp://"

#: ../../standalone/drakperm:1
#, c-format
msgid "Add a new rule at the end"
msgstr "©óµ²§À·s¼W¤@¶µ³W«h"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"You can also decide here whether printers on remote machines should be "
"automatically made available on this machine."
msgstr ""

#: ../../modules/interactive.pm:1
#, c-format
msgid ""
"You may now provide options to module %s.\n"
"Options are in format ``name=value name2=value2 ...''.\n"
"For instance, ``io=0x300 irq=7''"
msgstr ""
"±z²{¦b¥i¥H¿é¤J­nµ¹ %s ¼Ò²Õ¨Ï¥Îªº°Ñ¼Æ¡C\n"
"°Ñ¼Æªº®æ¦¡¬° \"name=value name2=value2 ...\"\n"
"¨Ò¦p¡uio=0x300 irq=7¡v"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Quit without writing the partition table?"
msgstr "©ñ±ó¼g¤JµwºÐ¤À³Îªí´NÂ÷¶}¡H"

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

#: ../../standalone.pm:1
#, c-format
msgid "Installing packages..."
msgstr "¥¿¦b¦w¸Ë®M¥ó..."

#: ../../keyboard.pm:1
#, c-format
msgid "Dutch"
msgstr "²üÄõ"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "The following packages need to be installed:\n"
msgstr "¤U¦Cªº®M¥ó±N·|³Q¦w¸Ë¤W"

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

#: ../../standalone/logdrake:1
#, c-format
msgid "service setting"
msgstr "ªA°È³]©w"

#: ../../any.pm:1 ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
#, c-format
msgid "Custom"
msgstr "¦Û­q"

#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "File is already used by another loopback, choose another one"
msgstr "Àɮפw³Q¥Î¨Ó§@¬°¨ä¥Lªº loopback¡A½Ð¿ï¾Ü¨ä¥LÀÉ®×"

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

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

#: ../../harddrake/sound.pm:1
#, c-format
msgid "No known driver"
msgstr "µL¤wª¾ªºÅX°Êµ{¦¡"

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

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid ""
"If it is not the one you want to configure, enter a device name/file name in "
"the input line"
msgstr ""
"¤U­±©Ò¦C¥Xªº¬O¨Ï¥Î¦Û°Ê°»´ú©Ò§ä¨ìªº¦Lªí¾÷¡C­Y¬O§ä¨ìªº¶µ¥Ø\n"
"¨Ã¤£¬O§A©Ò¹w´Áªº¡A¨º½Ð¤â°Ê¿é¤J¸Ë¸m¦WºÙ/ÀɮצWºÙ"

#: ../../standalone/draksound:1
#, c-format
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
"\n"
"\n"
"You can visit our hardware database at:\n"
"\n"
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
"¥Ø«e±zªº¨t²Î°»´ú¤£¨ì¥ô¦ó­µ®Ä¥d¸Ë¸m¡A½Ð½T»{±zªº­µ®Ä¥d¦³¦w´¡¥¿½T¡C\n"
"\n"
"\n"
"¥t¥~½Ð³s¤W§Ú­Ìªº©x¤èºô¯¸¬d¬Ý¸ê®Æ®w¡AÀ˵ø±zªº­µ®Ä¥d¬O§_¤w¸g¤ä´©¡G\n"
"\n"
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"

#: ../../standalone/drakconnect:1
#, c-format
msgid "Configure Local Area Network..."
msgstr "³]©w°Ï°ìºô¸ô..."

#: ../../services.pm:1
#, c-format
msgid "Launch the sound system on your machine"
msgstr "¦b±zªº¨t²Î¤W±Ò°Ê­µ®ÄªA°È¨t²Î"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Preparing printer database..."
msgstr "¥¿¦b·Ç³Æ¦Lªí¾÷¸ê®Æ"

#: ../../standalone/harddrake2:1
#, c-format
msgid "Information"
msgstr "¸ê°T"

#: ../../network/drakfirewall.pm:1
#, c-format
msgid "No network card"
msgstr "µLºô¸ô¥d"

#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
#, c-format
msgid "Which filesystem do you want?"
msgstr "±z­n¥Î¨º¤@ºØÀɮרt²Î¡H"

#: ../../mouse.pm:1
#, c-format
msgid "3 buttons"
msgstr "¤T­Ó«öÁä"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Detailed information"
msgstr "¸Ô²Ó¸ê°T"

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

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Printer default settings\n"
"\n"
"You should make sure that the page size and the ink type/printing mode (if "
"available) and also the hardware configuration of laser printers (memory, "
"duplex unit, extra trays) are set correctly. Note that with a very high "
"printout quality/resolution printing can get substantially slower."
msgstr ""
"¹w³]¦Lªí¾÷³]©w\n"
"\n"
"±z»Ý­n½T©w¯È±iªº¤j¤p»P¾¥¤ôªººØÃþ³]©w³£¥¿½TµL»~¡C\n"
"½Ðª`·N¤@¤U¡A·í¨Ï¥Î°ª«~½è¦C¦L®É©Òªá¶Oªº®É¶¡·|¶V¤[¡C"

#: ../../install_any.pm:1
#, c-format
msgid "This floppy is not FAT formatted"
msgstr "³o±i¨Ã¤£¬O FAT ®æ¦¡¤ÆªººÏºÐ¤ù"

#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
msgid "Configuring network"
msgstr "³]©wºô¸ô¤¤"

#: ../../Xconfig/main.pm:1
#, c-format
msgid "Graphic Card"
msgstr "Åã¥Ü¥d"

#: ../../install_interactive.pm:1
#, c-format
msgid "Resizing Windows partition"
msgstr "¥¿¦b­pºâ Windows Àɮרt²ÎªºÃä¬É"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Provider dns 1 (optional)"
msgstr "ISP ²Ä¤@¥x dns (¥i¤£¥Î¿é¤J)"

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

#: ../../install_interactive.pm:1
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, don't forget to save using `w'"
msgstr ""
"±z¥Ø«e­n¹ï %s ¤À³Î°Ï¶i¦æ¹º¤À°Ê§@¡C\n"
"·í±z§¹¦¨®É¡A§O§Ñ¤F¿é¤J 'w' ¼g¤J±zªºÅܧó"

#: ../../printer/printerdrake.pm:1 ../../standalone/drakTermServ:1
#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
#: ../../standalone/drakfont:1 ../../standalone/net_monitor:1
#, c-format
msgid "Close"
msgstr "Ãö³¬"

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

#: ../../standalone/logdrake:1
#, c-format
msgid "Calendar"
msgstr "¦æ¨Æ¾ä"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
msgstr ""
"¦p­n¨Ï¥Î»·ºÝªº lpd ¦Lªí¾÷¡A±z¥²¶·­n«ü©w¥Î¨Ó´£¨Ñ\n"
"¦LªíªA°Èªº»·ºÝ¦C¦L¦øªA¥D¾÷¦WºÙ¡A¥H¤Î¤À¨É¥X¨Ó\n"
"¦Lªí¾÷¦WºÙ¡C"

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

#: ../../common.pm:1
#, c-format
msgid "consolehelper missing"
msgstr "consolehelper µ{¦¡¿ò¥¢"

#: ../../services.pm:1
#, c-format
msgid "stopped"
msgstr "¥¼±Ò°Ê"

#: ../../standalone/harddrake2:1
#, c-format
msgid "Whether the FPU has an irq vector"
msgstr ""

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

#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
#, c-format
msgid "Expand Tree"
msgstr "®i¶}¾ðª¬µ²ºc"

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

#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
#, c-format
msgid "Expert Mode"
msgstr "±M®a¼Ò¦¡"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer options"
msgstr "¦Lªí¾÷¿ï¶µ"

#: ../../standalone/drakgw:1
#, c-format
msgid "Local Network adress"
msgstr "¤º³¡ºô¸ôIP¦ì§}"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Backup your System files. (/etc directory)"
msgstr "³Æ¥÷±zªº¨t²ÎÀɮסC(/etc ¥Ø¿ý)"

#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been updated after the distribution was released. They may\n"
"contain security or bug fixes.\n"
"\n"
"To download these packages, you will need to have a working Internet \n"
"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
"¦b¡uLinux Distribution¡v¨C¹jµo¦æ¤@¬q®É¶¡«á¡A\n"
"¼t°Ó³£·|©ñ¥X¬ÛÃöªº­×¥¿®M¥ó¨Ñ¨Ï¥ÎªÌ¦w¸Ë§ó·s¡C\n"
"\n"
"±z²{¦b´N¯à°÷ª½±µ¨ú±o¥Ø«e³Ì·sªº¬ÛÃö®M¥ó­×¥¿\n"
"¸ê°T¡A¤£¹L«e´£´N¬O±zªººô¸ô³s½u³]©w¤w¸gµL»~\n"
"¥i¥H¥¿±`¨Ï¥Î¡C\n"
"\n"
"¨º±z¥´ºâ­n¦w¸Ë§ó·s®M¥ó¶Ü¡H"

#: ../../standalone/logdrake:1
#, c-format
msgid "Samba Server"
msgstr "Samba ¦øªA¾¹"

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg, alert=1)\n"
"\n"
"Enable/Disable IP spoofing protection."
msgstr ""

#: ../../standalone/drakxtv:1
#, c-format
msgid "Australian Optus cable TV"
msgstr "ªü®Ú§Ê Optus cable TV"

#: ../../install_steps_newt.pm:1
#, c-format
msgid ""
"  <Tab>/<Alt-Tab> between elements  | <Space> selects | <F12> next screen "
msgstr "  <Tab>/<Alt-Tab> ¦b¶µ¥Ø¶¡²¾°Ê    | <Space> ¿ï¨ú    | <F12> ¤U­Ó¿Ã¹õ"

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

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

#: ../../standalone/drakbackup:1
#, c-format
msgid "Please enter the host name or IP."
msgstr "½Ð¿é¤J¥D¾÷¦WºÙ©Î¬O IP"

#: ../../standalone/drakbackup:1
#, c-format
msgid "When"
msgstr "³Æ¥÷®É¶¡³]©w"

#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Second DNS Server (optional)"
msgstr "²Ä¤G¥xDNS¦øªA¾¹ (¥i¤£¿é¤J)"

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

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
"Authorize all services controlled by tcp_wrappers (see hosts.deny(5)) if "
"\\fIarg\\fP = ALL. Only local ones\n"
"if \\fIarg\\fP = LOCAL and none if \\fIarg\\fP = NONE. To authorize the "
"services you need, use /etc/hosts.allow\n"
"(see hosts.allow(5))."
msgstr ""

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Color depth: %s\n"
msgstr "ÃC¦â²`«×¡G %s\n"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "You can't unselect this package. It must be upgraded"
msgstr "³o­Ó®M¥ó¤@©w­n§ó·s¤~¦æ¡A±z¤£¥i¥H¤£¿ï³o­Ó®M¥ó"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Loading from floppy"
msgstr "¥¿¦b¸ü¤J³nºÐ¤¤ªº³]©w­È"

#: ../../standalone/mousedrake:1
#, fuzzy, c-format
msgid "Mouse test"
msgstr "Mouse Systems"

#: ../../standalone/drakperm:1
#, c-format
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
"Drakperm µ{¦¡¯à°÷Åý¨Ï¥ÎªÌÀ˵ø¥H¤Î­×§ï­«­nÀɮתºÅv­­¡A¥]§t¾Ö¦³ªÌ¡B\n"
"¸s²Õµ¥¸ê°T¡C¥t¥~±z¤]¥i¥H¦Û¦æ½s¿è³Ð³y§ó¦hÄÝ©ó¦Û­qªº³W«h¶µ¥Ø¡C"

#: ../../ugtk.pm:1
#, c-format
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"

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

#: ../../any.pm:1
#, c-format
msgid ""
"Enter a user\n"
"%s"
msgstr ""
"¿é¤J¤@¦ì¨Ï¥ÎªÌ±b¸¹\n"
"%s"

#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid ""
"- PCI and USB devices: this lists the vendor, device, subvendor and "
"subdevice PCI/USB ids"
msgstr ""
"- PCI »P USB ¸Ë¸m¡G³o¦C¥X¤F¼t°Ó¦WºÙ¡A¸Ë¸m¦WºÙ»PªþÄݼt°Óµ¥ PCI/USB IDS ¸ê°T"

#: ../../standalone/draksplash:1
#, c-format
msgid "ProgressBar color selection"
msgstr "¶i«×¤Ú¦â±m¿ï¾Ü"

#: ../../any.pm:1
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can create additional entries or change the existing ones."
msgstr ""
"¤U­±ÁÙ¦³¤@¨Ç¨ä¥Lªº¿ï¶µ¡A±z¥i¥H¿ï¾Ü·s¼W©Î\n"
"­×§ï¬J¦³ªº¿ï¶µ¡C"

#: ../../help.pm:1
#, c-format
msgid "/dev/hda"
msgstr "/dev/hda"

#: ../../help.pm:1
#, c-format
msgid "/dev/hdb"
msgstr "/dev/hdb"

#: ../../services.pm:1
#, c-format
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
msgstr "atd ªA°Èµ{¦¡¡A¯à°÷Åý±z¦b¦b©R¥O¦C«ü©w¬Y­Ó®É¶¡°õ¦æ¬Y­Óµ{¦¡¡C"

#: ../../harddrake/v4l.pm:1
#, c-format
msgid "Radio support:"
msgstr "Radio ¤ä´©¡G"

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Installing SANE packages..."
msgstr "¥¿¦b¦w¸Ë®M¥ó..."

#: ../../standalone/drakfloppy:1
#, c-format
msgid "boot disk creation"
msgstr "»s§@¶}¾÷ºÏ¤ù"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "LDAP"
msgstr "¨Ï¥Î LDAP"

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

#: ../../diskdrake/removable.pm:1
#, c-format
msgid "Change type"
msgstr "§ïÅܤÀ³Î°Ï®æ¦¡"

#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid ", USB printer #%s"
msgstr "¡AUSB ¦Lªí¾÷  \\/*%s"

#: ../../any.pm:1
#, c-format
msgid "SILO Installation"
msgstr "SILO ¦w¸Ë"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Use CD/DVDROM to backup"
msgstr "¨Ï¥Î CD/DVDROM ³Æ¥÷"

#: ../../install_messages.pm:1
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
"\n"
"\n"
"For information on fixes which are available for this release of Mandrake "
"Linux,\n"
"consult the Errata available from:\n"
"\n"
"\n"
"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
"®¥³ß!! ¨t²Î¤w¸g§¹¦¨¦w¸Ë¡A½Ð¨ú¥X¶}¾÷¥úºÐ©ÎºÏ¤ù¡A\n"
"±µµÛ«ö Enter Áä­«·s¶}¾÷¡C\n"
"\n"
"\n"
"­nÀò±o Mandrake Linux ªº¬ÛÃö¸ê°T©Îµ{¦¡­×¥¿°T®§ªº¸Ü¡A\n"
"½Ð°Ñ¦Ò Mandrake ¤½¥qªººô­¶¥H¤Îµ{¦¡°É»~ªí: \n"
"\n"
"%s\n"
"\n"
"\n"
"Ãö©ó³]©w¨t²Îªº¸ê°T¡A±z¥i¥H¦b Mandrake Linux ¨Ï¥Î\n"
"¤â¥U (Official Mandrake Linux User's Guide) ¸Ì­±§ä¨ì¡C"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "paranoid"
msgstr "ºÆ¨gª¬ºA"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Send mail report after each backup to:"
msgstr "¦b¨C¦¸³Æ¥÷§¹¦¨«áµo°e¶l¥ó³qª¾¸Ó¨Ï¥ÎªÌ¡G"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
"³o­Ó«ü¥O¥\¯à¡A¨ä¹ê±z¤]¥i¥H¦b³\¦hÀ³¥Îµ{¦¡¦C¦L¹ï¸Ü¤è¶ôªº\n"
"¡y¦C¦L©R¥O¡z¨Ï¥Î¥¦¡C\n"
"¦ý¬O³oÃ䤣´£¨Ñ©Ò¿×ªºÀɮצWºÙ¡A¦]¬°¬ÛÃöÀɮתº¦C¦L¥\¯à¬O¥Ñ\n"
"¬ÛÃöÀ³¥Îµ{¦¡´£¨Ñ¡C\n"

#: ../../Xconfig/main.pm:1 ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "Resolution"
msgstr "¸ÑªR«×"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
"the print server, as well as the share name for the printer you wish to "
"access and any applicable user name, password, and workgroup information."
msgstr ""
"¦p­n¨Ï¥Îºô¸ôªÚ¾F¦Lªí¾÷¡A±z¥²¶·­n´£¨Ñ¥D¾÷ºôªÚ¦WºÙ \n"
"(ª`·N! ³o­Ó¦WºÙ»P TCP/IP ªº¥D¾÷¦WºÙ¥i¯à¨Ã¤£¬Û¦P)¡A\n"
"¦³®ÉÁÙ¥²¶·«ü©w¦C¦L¦øªA¾¹ªº IP ¦ì§}¡B¤À¨É¥X¨Óªº¦Lªí\n"
"¾÷¦WºÙ¡B¾A·íªº¨Ï¥ÎªÌ±b¸¹»P±K½X¡A¥H¤Î¤u§@¸s²Õªº¸ê°T¡C"

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
" Accept/Refuse icmp echo."
msgstr ""

#: ../../standalone/drakgw:1
#, c-format
msgid "reconfigure"
msgstr "­«·s³]©w"

#: ../../Xconfig/card.pm:1
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
"±zªºÅã¥Ü¥d·f°t XFree %s ¯à°÷±Ò¥Î 3D µwÅé¥[³t¥\¯à¡C\n"
"¦ý¬O½Ðª`·N¡A³o¬O¹êÅç©Ê½èªº¤ä´©¶µ¥Ø¡A¦Ó¥B¤W¥i¯à·|¦³¤£¹w´Áªº±¡ªp¡C"

#: ../../standalone/logdrake:1
#, c-format
msgid "Xinetd Service"
msgstr "Xinetd ªA°È"

#: ../../any.pm:1
#, c-format
msgid "access to network tools"
msgstr "¦s¨úºô¸ô¤u¨ã"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Firmware-Upload for HP LaserJet 1000"
msgstr ""

#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
"And, of course, push multimedia to its limits with the very latest software "
"to play videos, audio files and to handle your images or photos."
msgstr ""
"Mandrake Linux ´£¨Ñ¤FÅý±zºÉ±¡µo´§¦h´CÅ骺»Ý¨D¡A"
"Åý¨Ï¥ÎªÌ¯à°÷¶i¦æ¹Ï¤ùªºÂsÄý¡B­µ¼Öªº¼·©ñ¡BÆ[¬Ý¹qµø"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Here is a list of all auto-detected printers. "
msgstr ""

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
"¦w¸Ë aboot ®Éµo¥Í¿ù»~¡A\n"
"§A­n«_µÛ¥i¯à·´·l²Ä¤@­Ó¤À³Î°Ïªº±jªp±j­¢¦A¦¸¦w¸Ë¶Ü¡H"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Options Description:\n"
"\n"
" In this step Drakbackup allow you to change:\n"
"\n"
" - The compression mode:\n"
"    \n"
"      If you check bzip2 compression, you will compress\n"
"      your data better than gzip (about 2-10 %%).\n"
"      This option is not checked by default because\n"
"      this compression mode needs more time (about 1000%% more).\n"
" \n"
" - The update mode:\n"
"\n"
"      This option will update your backup, but this\n"
"      option is not really useful because you need to\n"
"      decompress your backup before you can update it.\n"
"      \n"
" - the .backupignore mode:\n"
"\n"
"      Like with cvs, Drakbackup will ignore all references\n"
"      included in .backupignore files in each directories.\n"
"      ex: \n"
"         #> cat .backupignore\n"
"         *.o\n"
"         *~\n"
"         ...\n"
"      \n"
"\n"
msgstr ""

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Restore Selected\n"
"Files"
msgstr ""
"¦^¦s¿ï¨ú¶µ¥Ø\n"
"ÀÉ®×"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"%s exists, delete?\n"
"\n"
"Warning: If you've already done this process you'll probably\n"
" need to purge the entry from authorized_keys on the server."
msgstr ""
"%s ¤w¸g¦s¦b¤F¡A±z­n§R°£¸Ó¶µ¥Ø¶Ü¡H\n"
"\n"
"ĵ§i¡G­Y¬O±z¤w¸g§¹¦¨¸Ó¤u§@¶i«×¡A¤]³\±z¥i¥H§R°£¸Ó¥D¾÷¤W\n"
"»{ÃÒ¾ÌÃÒÀɮסC"

#: ../../network/tools.pm:1
#, c-format
msgid "Please fill or check the field below"
msgstr "½Ð±z¶ñ¤J¨Ã¥BÀˬd¤U­±Äæ¦ì¬ö¿ý"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "±z·Q­nÀx¦s /etc/fstab Àɮתº­×§ï¶Ü¡H"

#: ../../standalone/drakconnect:1
#, c-format
msgid "Boot Protocol"
msgstr "³q°T¨ó©w"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM ºÏºÐ %s\n"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "The package %s is needed. Install it?"
msgstr "³o­Ó %s ®M¥ó»Ý­n¦w¸Ë¤W¡A±z­n¦w¸Ë¸Ó®M¥ó¶Ü¡H"

#: ../../services.pm:1
#, c-format
msgid "On boot"
msgstr "¶}¾÷¦Û°Ê¸ü¤J"

#: ../../standalone/harddrake2:1
#, c-format
msgid "Bus identification"
msgstr "¶×¬y±Æ´y­z"

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Vatican"
msgstr "©Ô¦«ºû¨È"

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Please make a backup of your data first"
msgstr "½Ð±z¥ý³Æ¥÷±zªº¸ê®Æ"

#: ../../install_interactive.pm:1
#, c-format
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "§A¨t²Î¤W¦³¦hÁûµwºÐ¥i¨Ñ¦w¸Ë Linux ¨t²Î¡A±z¥´ºâ­n·Ç³Æ¨º¤@Áû¨Ñ¦w¸Ë¨Ï¥Î¡H"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Boot ISO"
msgstr "¶}¾÷¬M¹³ÀÉ®×"

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

#: ../../standalone/drakfont:1
#, c-format
msgid "Remove List"
msgstr "²¾°£²M³æ"

#: ../../share/advertising/05-desktop.pl:1
#, c-format
msgid "A customizable environment"
msgstr ""

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

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

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Which printer model do you have?"
msgstr "±zªº¦Lªí¾÷Äݩ󨺺ث¬¸¹¡H"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Add a new printer"
msgstr "·s¼W¦Lªí¾÷"

#: ../../standalone/drakbackup:1
#, c-format
msgid "          All of your selected data have been          "
msgstr "          ±z©Ò¿ï¨úªº©Ò¦³¸ê®Æ¤w¸g                       "

#: ../../standalone/drakTermServ:1
#, c-format
msgid "<-- Delete"
msgstr "<-- §R°£"

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

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

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "chunk size"
msgstr "²Õ¶ô¤j¤p"

#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
#: ../../bootloader.pm:1
#, c-format
msgid "commands before booting, or 'c' for a command-line."
msgstr "commands before booting, or 'c' for a command-line."

#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
#, c-format
msgid "Problems installing package %s"
msgstr "¦w¸Ë %s ®M¥óµo¥Í¿ù»~"

#: ../../standalone/logdrake:1
#, c-format
msgid "You will receive an alert if the load is higher than this value"
msgstr "·í¨t²Î­t¸ü¶W¹L¸Ó¼Æ­È®É¡A±z±N·|¦¬¨ìĵ¥Ü³qª¾"

#: ../../standalone/drakbug:1
#, c-format
msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
"This will open  a web browser window  on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
"\n"
"\n"
"­n¦^³ø¥ô¦ó¯äÂΰÝÃD¡A½ÐÂI¿ï¦^³øªº«ö¶s¡C\n"
"¨t²Î±N·|¶}±ÒÂsÄý¾¹¨Ã³s½u¨ì https://drakbug.mandrakesoft.com\n"
" µM«á½Ð§ä¨ì¾A·íªº¶µ¥Ø¨Ã¿é¤J¬ÛÃö°ÝÃD¸ê°T¡A¥H«K©ó±N¯äÂΰÝÃD°e¦Ü¥D¾÷³qª¾µo®i¤H"
"­û¡C\n"
"\n"

#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Add a scanner manually"
msgstr "¤â°Ê¿ï¨ú¨Ï¥ÎªÌ"

#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Reload partition table"
msgstr "¸ü¤JµwºÐ¤À³Îªí"

#: ../../standalone/drakboot:1
#, c-format
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "¬Oªº¡A§Ú»Ý­n¥Î³o­Ó (¨Ï¥ÎªÌ¡B®à­±) ¨Ó¦Û°Êµn¤J"

#: ../../standalone/drakfont:1
#, c-format
msgid "Search for fonts in installed list"
msgstr "©ó¤w¦w¸Ë²M³æ¤º·j´M¦r«¬"

#: ../../standalone/drakgw:1
#, c-format
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "¸Ó°Ï°ìºô¸ô¨Ã¤£¬O¥H .0 µ²§À¡A©ñ±ó..."

#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Boot"
msgstr "/ ¤À³Î°Ï"

#: ../../harddrake/v4l.pm:1
#, c-format
msgid "Tuner type:"
msgstr "Tuner Ãþ«¬¡G"

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"Now, it's time to select a printing system for your computer. Other OSs may\n"
"offer you one, but Mandrake Linux offers two. Each of the printing system\n"
"is best suited to particular types of configuration.\n"
"\n"
" * \"%s\" -- which is an acronym for ``print, don't queue'', is the choice\n"
"if you have a direct connection to your printer, you want to be able to\n"
"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
"will handle only very simple network cases and is somewhat slow when used\n"
"with networks.) It's recommended that you use \"pdq\" if this is your first\n"
"experience with GNU/Linux.\n"
"\n"
" * \"%s\" - `` Common Unix Printing System'', is an excellent choice for\n"
"printing to your local printer or to one halfway around the planet. It is\n"
"simple to configure and can act as a server or a client for the ancient\n"
"\"lpd \" printing system, so it compatible with older operating systems\n"
"which may still need print services. While quite powerful, the basic setup\n"
"is almost as easy as \"pdq\". If you need to emulate a \"lpd\" server, make\n"
"sure you turn on the \"cups-lpd \" daemon. \"%s\" includes graphical\n"
"front-ends for printing or choosing printer options and for managing the\n"
"printer.\n"
"\n"
"If you make a choice now, and later find that you don't like your printing\n"
"system you may change it by running PrinterDrake from the Mandrake Control\n"
"Center and clicking the expert button."
msgstr ""
"³o¸Ì±N­n¿ï¾Ü©Ò­n¨Ï¥Îªº¦C¦LªA°È¨t²Î¶µ¥Ø¡AMandrake Linux ³oÃä´£¨Ñ¤F¤TºØ¨Ñ±z¿ï¾Ü"
"ªº¶µ¥Ø¡C\n"
"\n"
" *¡ypdq¡z- pdq ¨ä¹ê´N¬O¡uprint, don't queue¡vªºÁY¼g¡C¤@¯ë³o­Ó¦C¦LªA°Èµ{¦¡¯à°÷"
"¦b¦Lªí¾÷¬Oª½±µ³sµ²¨ì¥»¾÷¹q¸£¤W«Ü§Ö³tªº¦C¦L¡A¥t¥~¦b¤p«¬Â²³æ¡A¦Ó¥B³t«×¤£§Öªººô"
"¸ô¤W¨Ó¨Ï¥Î¤]¬Û·í«K§Q¡C³o­Ó¶µ¥Ø¡A¥]§t¤U­±¥i¨Ñ¿ï¾Üªº¦C¦L¨t²Î¡A³£¥i¥H¨Æ«á¨Ï¥Î "
"PrinterDrake µ{¦¡¡AµM«á¨Ï¥Î±M®a¼Ò¦¡´N¥i¥HÅܧó³]©w¡C\n"
"\n"
" *¡yCUPS¡z - ¡uCommon Unix Printing System¡v¡A³o¬O¤@®M­Ó¬Û·í¦nªº¦C¦LªA°È¨t"
"²Î¡A¹ï©óª½±µ³s½u¦w¸Ë¦b¥»¾÷¤W¡A©ÎªÌ¬O¤@¯ëºô¸ô¨Ï¥Î¤W³£¬Û·í¤£¿ù¡C³o­ÓªA°Èµ{¦¡¬Û"
"·í²³æ¡A¤]¯à°÷¥Î¨Ï¥Î lpd ªº Server ºÝ©ÎªÌ¬O Client ºÝ³£¯à°÷¬Û®e¨Ï¥Î¡C³o­Óµ{¦¡"
"´£¨Ñ³\¦h¥\¯à¾÷¨î¡A¨Ï¥Î³]©w¤W¤]¯à°÷¹³¬O¡updq¡vµ{¦¡ªºÂ²³æ¡C¦pªG±z§Æ±æ¯à°÷Åý "
"CUPS ¯à°÷¼ÒÀÀ¡ulpd¡vªA°Èµ{¦¡¥\¯àªº¸Ü¡A±z»Ý­n¶}±Ò¡ucups-lpd¡v³o­ÓªA°Èµ{¦¡¡C¥t"
"¥~¡A¥¦´£¨Ñ¤F¹Ï§Îªº¤¶­±¯à°÷Åý¨Ï¥ÎªÌ¿ï¾Ü­n¦C¦Lªº¦Lªí¾÷¡A¥]§t¬ÛÃö¦C¦L°Ñ¼Æªº½Õ"
"¾ã¡C\n"
"\n"
" *¡ylprNG¡z - ¡uline printer daemon New Generation¡v¡A³o¤@®M¦C¦LªA°È¨t²Î¡A»P"
"¥ý«e´£¨ìªº¶µ¥Ø³£¬O¨ã³Æ®t¤£¦hªº¥\¯à¡A¤£¹L³o­Ó¦C¦L¨t²Î¤ñ¸û¯S®íªº¦a¤è´N¬O¡A¦]¬°"
"¥¦¤ä´© IPX ¨ó©w¡A©Ò¥H¯à°÷§â­n¦C¦Lªº¸ê®Æ³z¹L Novell ºô¸ô¦Lªí¾÷¡C¦C¦L¥X¨Ó¦pªG±z"
"»Ý­n³z¹L Novellºô¸ô¦Lªí¾÷¶i¦æ¦C¦Lªº°Ê§@¡A±z¥i¥H¦Ò¼{¨Ï¥Î³o¤@®M¦C¦L¨t²Î¡C"

#: ../../keyboard.pm:1
#, c-format
msgid "\"Menu\" key"
msgstr "\"¿ï³æ\" «öÁä"

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid ""
"\n"
"\n"
"Please check whether Printerdrake did the auto-detection of your printer "
"model correctly. Find the correct model in the list when a wrong model or "
"\"Raw printer\" is highlighted."
msgstr ""
"\n"
"\n"
"½ÐÀ˵ø PrinterDrake µ{¦¡©Ò¦Û°Ê°»´ú¨ìªº¦Lªí¾÷«¬¸¹¬O§_¥¿½T¡C\n"
"±z¤]¥i¥H´M§äÀ˵ø¤U­±ªº¦Lªí¾÷²M³æ¡C"

#: ../../standalone/draksec:1
#, c-format
msgid "Security Administrator:"
msgstr "¦w¥þ©ÊºÞ²zªÌ:"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Please enter your login"
msgstr "½Ð¿é¤Jµn¤J±b¸¹"

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check permissions of files in the users' home."
msgstr ""

#: ../../standalone/drakconnect:1
#, c-format
msgid ""
"You don't have an Internet connection.\n"
"Create one first by clicking on 'Configure'"
msgstr ""
"±zÁÙ¨S¦³¥ô¦ó Internet ³s½u³]©w¡C½Ð¥ýÂI¿ï\n"
"³]©w«ö¶s¨Ó«Ø¥ß¤@­Ó Internet ³s½u³]©w¤º®e"

#: ../../standalone/drakfont:1
#, c-format
msgid "Fonts copy"
msgstr "¦r«¬½Æ»s"

#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Automated"
msgstr "¦Û°Ê¤Æ"

#: ../../Xconfig/test.pm:1
#, c-format
msgid "Do you want to test the configuration?"
msgstr "±z·Q­n´ú¸Õ±zªº³]©w­È¶Ü¡H"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
"GIMP."
msgstr "¤w¸g¦¨¥\ªº±N Star Office/OpenOffice.org/GIMP ªº¦Lªí¾÷ \"%s\" ²¾°£¡C"

#: ../../standalone/draksec:1
#, c-format
msgid ""
"Standard: This is the standard security recommended for a computer that will "
"be used to connect\n"
"               to the Internet as a client.\n"
"\n"
"High:       There are already some restrictions, and more automatic checks "
"are run every night.\n"
"\n"
"Higher:    The security is now high enough to use the system as a server "
"which can accept\n"
"              connections from many clients. If your machine is only a "
"client on the Internet, you\n"
"           should choose a lower level.\n"
"\n"
"Paranoid:  This is similar to the previous level, but the system is entirely "
"closed and security\n"
"                features are at their maximum\n"
"\n"
"Security Administrator:\n"
"               If the 'Security Alerts' option is set, security alerts will "
"be sent to this user (username or\n"
"            email)"
msgstr ""

#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Save packages selection"
msgstr "Àx¦s©Ò¿ï¨úªºÀÉ®×"

#: ../../standalone/drakautoinst:1
#, c-format
msgid "Remove the last item"
msgstr "²¾°£¤§«e¶µ¥Ø"

#: ../../standalone/drakbackup:1
#, c-format
msgid "User list to restore (only the most recent date per user is important)"
msgstr "¦^¦sªº¨Ï¥ÎªÌ²M³æ (¥u¦³¦^¦s³Ìªñ¨Ï¥ÎªÌ­«­nªºÀÉ®×)"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "No net boot images created!"
msgstr "¨Ã¥¼«Ø¥ßºô¸ô¶}¾÷¬M¹³ÀÉ"

#: ../../network/adsl.pm:1
#, c-format
msgid "use pptp"
msgstr "¨Ï¥Î pptp"

#: ../../services.pm:1
#, c-format
msgid "Choose which services should be automatically started at boot time"
msgstr "¿ï¾Ü§Æ±æ¦b¤U¤@¦¸¶}¾÷®É±Ò°ÊªºªA°Èµ{¦¡¶µ¥Ø"

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Learn how to use this printer"
msgstr "ÁA¸Ñ¦p¦ó¨Ï¥Î³o¥x¦Lªí¾÷"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Configure the network now"
msgstr "¥ß§Y³]©wºô¸ô"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "¿ï¨ú­n¥Î¨Ó§ì¨úµ{¦¡®M¥óÀɪº FTP ¬M®g¯¸¥x"

#: ../../install_interactive.pm:1
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
"the following error occured: %s"
msgstr ""
"µLªk½Õ¾ã¸Ó FAT ¤À³Î°Ïªº¤j¤p¡Aµo¥Í¤F¤U­±ªº¿ù»~:\n"
"%s"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Which sector do you want to move it to?"
msgstr "±z­n²¾°Ê¨ì¨º­ÓºÏ°Ï¡H"

#: ../../interactive/stdio.pm:1
#, c-format
msgid "Do you want to click on this button?"
msgstr "±z­n«ö³o­Ó«ö¶s¶Ü¡H"

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