summaryrefslogtreecommitdiffstats
path: root/perl-install/drakxtools.spec
blob: 51d3082b9734a8a58af5555a91684c2eca3b4f2a (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
Summary: The drakxtools (XFdrake, diskdrake, keyboarddrake, mousedrake...)
Name:    drakxtools
Version: 9.1
Release: 28mdk
Url: http://www.mandrakelinux.com/en/drakx.php2
Source0: %name-%version.tar.bz2
License: GPL
Group: System/Configuration/Other
# Temporary requires for tools that still use gtk+1 (mainly drakfloppy and net_monitor)
Requires: perl-GTK >= 0.6123, perl-GTK-GdkImlib, perl-GTK-GdkPixbuf
Requires: %{name}-newt = %version-%release, perl-GTK2 >= 0.0.cvs.2003.03.04.1-2mdk, XFree86-100dpi-fonts, XFree86-75dpi-fonts, /usr/X11R6/bin/xtest, font-tools, usermode >= 1.63-5mdk, perl-MDK-Common >= 1.0.4-14mdk
Conflicts: drakconf < 9.1-3mdk 
BuildRequires: gettext, libgtk+-x11-2.0-devel, ldetect-devel >= 0.4.8, ncurses-devel, newt-devel, perl-devel, libext2fs-devel, perl-MDK-Common-devel
BuildRoot: %_tmppath/%name-buildroot
Provides: draksec
Obsoletes: draksec

%package newt
Summary: The drakxtools (XFdrake, diskdrake, keyboarddrake, mousedrake...)
Group: System/Configuration/Other
Requires: perl-base >= 1:5.8.0-10mdk, urpmi, modutils >= 2.3.11, ldetect-lst >= 0.1.7-3mdk, usermode-consoleonly >= 1.44-4mdk, msec >= 0.38
Obsoletes: diskdrake setuptool
Obsoletes: mouseconfig kbdconfig printtool drakfloppy
Provides: diskdrake setuptool mouseconfig kbdconfig printtool

%package http
Summary: The drakxtools via http
Group: System/Configuration/Other
Requires: %{name}-newt = %version-%release, perl-Net_SSLeay, perl-Authen-PAM, perl-CGI
PreReq: rpm-helper

%package -n harddrake
Summary: Main Hardware Configuration/Information Tool
Group: System/Configuration/Hardware
Requires: %{name}-newt = %version-%release
Obsoletes: kudzu, kudzu-devel, libdetect0, libdetect0-devel, libdetect-lst, libdetect-lst-devel, detect, detect-lst
Provides: kudzu, kudzu-devel, libdetect0, libdetect0-devel, libdetect-lst, libdetect-lst-devel, detect, detect-lst
Prereq: rpm-helper

%package -n harddrake-ui
Summary: Main Hardware Configuration/Information Tool
Group: System/Configuration/Hardware
Requires: %name = %version-%release

%description
Contains many Mandrake applications simplifying users and
administrators life on a Mandrake Linux machine. Nearly all of
them work both under XFree (graphical environment) and in console
(text environment), allowing easy distant work.

adduserdrake: help you adding a user

ddcxinfos: get infos from the graphic card and print XF86Config
modlines

diskdrake: DiskDrake makes hard disk partitioning easier. It is
graphical, simple and powerful. Different skill levels are available
(newbie, advanced user, expert). It's written entirely in Perl and
Perl/Gtk. It uses resize_fat which is a perl rewrite of the work of
Andrew Clausen (libresize).

drakautoinst: help you configure an automatic installation replay

drakbackup: backup and restore your system

drakboot: configures your boot configuration (Lilo/GRUB,
Bootsplash, X, autologin)

drakbug: interactive bug report tool

drakbug_report: help find bugs in DrakX

drakconnect: LAN/Internet connection configuration. It handles
ethernet, ISDN, DSL, cable, modem.

drakfloppy: boot disk creator

drakfont: import fonts in the system

drakgw: internet connection sharing

drakproxy: proxies configuration

draksec: security options managment / msec frontend

draksound: sound card configuration

draksplash: bootsplash themes creation

drakTermServ: mandrake terminal server configurator

drakxservices: SysV service and dameaons configurator

drakxtv: auto configure tv card for xawtv grabber

keyboarddrake: configure your keyboard (both console and X)

liveupdate: live update software

logdrake: show extracted information from the system logs

lsnetdrake: display available nfs and smb shares

lspcidrake: display your pci information, *and* the corresponding
kernel module

localedrake: language configurator, available both for root
(system wide) and users (user only)

mousedrake: autodetect and configure your mouse

printerdrake: detect and configure your printer

scannerdrake: scanner configurator

drakfirewall: simple firewall configurator

XFdrake: menu-driven program which walks you through setting up
your X server; it autodetects both monitor and video card if
possible


%description newt
See package %name

%description http
This add the capability to be runned behind a web server to the drakx tools.
See package %name


%description -n harddrake
The harddrake service is a hardware probing tool run at system boot
time to determine what hardware has been added or removed from the
system.
It then offer to run needed config tool to update the OS
configuration.


%description -n harddrake-ui
This is the main configuration tool for hardware that calls all the
other configuration tools.
It offers a nice GUI that show the hardware configuration splitted by
hardware classes.


%prep
%setup -q

%build
%make rpcinfo-flushed ddcprobe serial_probe 
%make

%install
rm -rf $RPM_BUILD_ROOT

%make PREFIX=$RPM_BUILD_ROOT install
mkdir -p $RPM_BUILD_ROOT/{%_initrddir,%_sysconfdir/{X11/xinit.d,sysconfig/harddrake2}}
touch $RPM_BUILD_ROOT/etc/sysconfig/harddrake2/previous_hw

mv $RPM_BUILD_ROOT%_sbindir/net_monitor \
   $RPM_BUILD_ROOT%_sbindir/net_monitor.real
ln -sf %_bindir/consolehelper $RPM_BUILD_ROOT%_sbindir/net_monitor
mkdir -p $RPM_BUILD_ROOT%_sysconfdir/{pam.d,security/console.apps}
cp pam.net_monitor $RPM_BUILD_ROOT%_sysconfdir/pam.d/net_monitor
cp apps.net_monitor $RPM_BUILD_ROOT%_sysconfdir/security/console.apps/net_monitor

dirs1="usr/lib/libDrakX usr/share/libDrakX"
(cd $RPM_BUILD_ROOT ; find $dirs1 usr/bin usr/sbin ! -type d -printf "/%%p\n")|egrep -v 'bin/.*harddrake' > %{name}.list
(cd $RPM_BUILD_ROOT ; find $dirs1 -type d -printf "%%%%dir /%%p\n") >> %{name}.list

perl -ni -e '/XFdrake|bootlook|drakbackup|drakfont|gtk|icons|logdrake|net_monitor|pixmaps/ ? print STDERR $_ : print' %{name}.list 2> %{name}-gtk.list
perl -ni -e '/http/ ? print STDERR $_ : print' %{name}.list 2> %{name}-http.list

#mdk menu entry
mkdir -p $RPM_BUILD_ROOT/%_menudir

cat > $RPM_BUILD_ROOT%_menudir/localedrake <<EOF
?package(harddrake-ui):\
	needs="X11"\
	section="Configuration/Other"\
	title="LocaleDrake"\
	longtitle="Language configurator"\
	command="/usr/bin/localedrake"\
	icon="harddrake.png"
EOF

cat > $RPM_BUILD_ROOT%_menudir/harddrake-ui <<EOF
?package(harddrake-ui):\
	needs="X11"\
	section="Configuration/Hardware"\
	title="HardDrake"\
	longtitle="Show extracted information from the system logs"\
	command="/usr/sbin/logdrake"\
	icon="harddrake.png"
EOF

cat > $RPM_BUILD_ROOT%_datadir/harddrake/convert <<EOF
#!/usr/bin/perl
use Storable;
 
my \$last_boot_config = "/etc/sysconfig/harddrake2/previous_hw";
 
my \$config = do \$last_boot_config;
store \$config, \$last_boot_config;
EOF

cat > $RPM_BUILD_ROOT%_sysconfdir/X11/xinit.d/harddrake2 <<EOF
#!/bin/sh
exec /usr/share/harddrake/service_harddrake X11
EOF

cat > $RPM_BUILD_ROOT%_datadir/harddrake/confirm <<EOF
#!/usr/bin/perl
use lib qw(/usr/lib/libDrakX);
use interactive;

my \$in = interactive->vnew;
my \$res = \$in->ask_okcancel(\$ARGV[0], \$ARGV[1], 1);
\$in->exit(\$res);
EOF

chmod +x $RPM_BUILD_ROOT{%_datadir/harddrake/*,%_sysconfdir/X11/xinit.d/harddrake2}
# temporary fix until we reenable this feature
rm -f $RPM_BUILD_ROOT%_sysconfdir/X11/xinit.d/harddrake2

%find_lang libDrakX
cat libDrakX.lang >> %name.list

%clean
rm -rf $RPM_BUILD_ROOT

%post
[[ ! -e %_sbindir/kbdconfig ]] && %__ln_s -f keyboarddrake %_sbindir/kbdconfig
[[ ! -e %_sbindir/mouseconfig ]] && %__ln_s -f mousedrake %_sbindir/mouseconfig
[[ ! -e %_bindir/printtool ]] && %__ln_s -f ../sbin/printerdrake %_bindir/printtool
:

%postun
for i in %_sbindir/kbdconfig %_sbindir/mouseconfig %_bindir/printtool;do
    [[ -L $i ]] && %__rm -f $i
done

%post http
%_post_service drakxtools_http

%preun http
%_preun_service drakxtools_http

%post -n harddrake-ui
%update_menus

%postun -n harddrake-ui
%clean_menus

%post -n harddrake
%_post_service harddrake

%preun -n harddrake
%_preun_service harddrake

%postun -n harddrake
file /etc/sysconfig/harddrake2/previous_hw | fgrep -q perl && %_datadir/harddrake/convert || :

%files newt -f %name.list
%defattr(-,root,root)
%config(noreplace) /etc/security/fileshare.conf
%doc diskdrake/diskdrake.html
%attr(4755,root,root) %_sbindir/fileshareset

%files -f %{name}-gtk.list
%defattr(-,root,root)
%_menudir/localedrake
%config(noreplace) %_sysconfdir/pam.d/net_monitor
%config(noreplace) %_sysconfdir/security/console.apps/net_monitor
/usr/X11R6/bin/*

%files -n harddrake
%defattr(-,root,root)
%config(noreplace) %_initrddir/harddrake
%dir /etc/sysconfig/harddrake2/
%config(noreplace) /etc/sysconfig/harddrake2/previous_hw
%_datadir/harddrake/*
#%_sysconfdir/X11/xinit.d/harddrake2

%files -n harddrake-ui
%defattr(-,root,root)
%dir /etc/sysconfig/harddrake2/
%_sbindir/harddrake2
%_datadir/pixmaps/harddrake2
%_menudir/harddrake-ui
%_iconsdir/large/harddrake.png
%_iconsdir/mini/harddrake.png
%_iconsdir/harddrake.png


%files http -f %{name}-http.list
%defattr(-,root,root)
%dir %_sysconfdir/drakxtools_http
%config(noreplace) %_sysconfdir/pam.d/miniserv
%config(noreplace) %_sysconfdir/init.d/drakxtools_http
%config(noreplace) %_sysconfdir/drakxtools_http/conf
%config(noreplace) %_sysconfdir/drakxtools_http/authorised_progs
%config(noreplace) %_sysconfdir/logrotate.d/drakxtools-http

%changelog
* Mon Mar 24 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-28mdk
- drakconnect: add support for ltpmodem

* Fri Mar 21 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-27mdk
- harddrake service: increase default timeout from 5 to 25 seconds

* Sun Mar 16 2003 Warly <warly@mandrakesoft.com> 9.1-26mdk
- do a correct cvs up of all gi before (me sux)

* Sat Mar 15 2003 Warly <warly@mandrakesoft.com> 9.1-25mdk
- fix drakperm fatal error in editable mode

* Fri Mar 14 2003 Pixel <pixel@mandrakesoft.com> 9.1-24mdk
- fix XFdrake handling NVidia proprietary drivers

* Thu Mar 13 2003 Till Kamppeter <till@mandrakesoft.com> 9.1-23mdk
- printerdrake: Fixed bug #417: '$' character in printer URI was not
  correctly handled.
- Desktop group simplification (francois).
- Translation updates (pablo, fabian).

* Thu Mar 13 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-22mdk
- drakboot/drakx: fix #3161 (ensure right permissions on
  /etc/sysconfig/autologin for bad root umask case)
- enable smooth sound configuration update from mdk9.0 (new unified
  via sound driver) and from mdk8.x
- scannerdrake detection fixes (till)
- drakTermServ: Fix IP pool range (stew)

* Wed Mar 12 2003 Pixel <pixel@mandrakesoft.com> 9.1-21mdk
- diskdrake: have a default mount point for newly added removables
- drakupdate_fstab: allow --del to remove fd0 & fd1

* Wed Mar 12 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-20mdk
- drakedm: install dm if needed
- harddrake service: handle multiple remvable devices in the same hw
  class (eg: 2+ cd burners or 2+ dvd drives or 2 floppies, ...)
- drakgw: really use the chosen net_connect interface (florin)
- drakbackup: gtk2 port fixes (stew)
- drakboot: fix #3048 (pixel)

* Tue Mar 11 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-19mdk
- ugtk2: fix still seldom happening #1445 (clicking two times too
  fast) (gc)
- drakxservices: fix embedding and packing in standalone mode (tv)
- localedrake: add menu entry (fix #1461) (tv)
- draksec: fix wait messages displaying (label was not displayed) in
  both standalone and embedded modes (tv)
- printerdrake fixes (till)
- translation updates

* Fri Mar  7 2003 Guillaume Cottenceau <gc@mandrakesoft.com> 9.1-18mdk
- ugtk2.pm: fix rpmdrake dumping core when multiple searchs in some
  sorting modes (#2899)
- network/adsl.pm: one small logical fix (fpons)

* Thu Mar  6 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-17mdk
- draksplash:
  o fix #1766
  o do not crash when browsing
  o do not crash on color selection
- avoid virtual ethX to be reconfigured by drakconnect (francois)

* Thu Mar  6 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-16mdk
- draksound: fix #1929
- moved code of XFdrake NVIDIA support to generic in standalone. (francois)

* Thu Mar  6 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-15mdk
- fix infamous #2672
- let draksec fit in 800x600
- harddrake: fix detection of mod_quickcam's webcams
- scannerdrake: do not detect mod_quickcam's webcams as scanners
- logdrake:
  o do not update the text buffer when filling it
  o show the wait message also when searching while embedded (else the
    user will be confused and will wonder why logdrake is freezed
- fix drakwizard ("next" button being packed too far) (pixel)

* Wed Mar  5 2003 Guillaume Cottenceau <gc@mandrakesoft.com> 9.1-14mdk
- localedrake: fix behaviour when only one lang is available (clicking
  on "cancel" on the country selection didn't cancel it)
- drakconnect: fixes in isdn configuration (flepied)
- drakperm (tv):
  o fix #1776
  o fix small memory leak (tree iterators)
  o restore edit dialog on doble click
- logdrake: restore "pre gtk+-2 port" search  behavior (tv)
  o empty log buffer on search startup
  o freeze buffer while searching
  o scroll down the log buffer on filling
- localedrake: don't categorize langs, for better looking (since
  most people will have very few of them) (gc)
- fixed wizard mode not taken into account for drakconnect in
  drakconf. (francois)
- fixed expert mode in drakconnect for dhcp for cleaning
  variables. (francois)
- fixed not to use invalid ethX. (francois)

* Mon Mar  3 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-13mdk
- drakboot: fix #2091, #2480

* Mon Mar  3 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-12mdk
- drakperm: fix rules saving
- printerdrake: various fixes (till)

* Fri Feb 28 2003 Guillaume Cottenceau <gc@mandrakesoft.com> 9.1-11mdk
- drakconnect is no more supporting profiles. (francois)
- drakconnect support for sagem Fast 800 used by free.fr (francois)
- drakconnect support for ltmodem. (francois)
 
* Thu Feb 27 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-10mdk
- harddrake service: 
  o offer to configure cdrom/dvd/burners/floppies/
    and the like mount points
  o configure firewire controllers
- diskdrake fixes (pixel)
- drakconnect fixes (francois)

* Thu Feb 27 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-9mdk
- drakconnect: 
  o fix lan configuration window filling
  o fix net configuration window sizing
- drakperm: make it fit better in both embedded and non embedded modes
- drakgw: fix embedding
- logdrake: fix scrolling for embedded explanations
- mousedrake: fix embedding  (gc)

* Thu Feb 27 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-8mdk
- drakfloppy gtk+2 port
- drakboot:
  o cleanups
  o disable autologin settings when autologin is disabled
  o make embedded app look better
- harddrake2: 
  o fix #1858 (usb adsl speed touch modem misdetection)
  o provides "options" and "help" pull down menu when embedded
  o detect firewire controllers
- drakedm: strip empty lines
- lot of network fixes (francois)
- drakbackup gtk+2 port fixes: #1753, #1754, #1933, #2159 (stew)

* Tue Feb 25 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-7mdk
- drakfloppy: 
  o fix #1761
  o only list physically present floppies
- harddrake gui:
  o better support for zip devices
  o removable devices cleanups
  o display dvd/burning capacities
- harddrake service:
  o do not flash the screen if nothing has to be configured
  o removable devices cleanups
- fix #1802 (pixel)

* Mon Feb 24 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-6mdk
- fix logdrake's mail alerts (services alert, don't crash)
- drakperm: fix #1771, non editable combo1
- drakfloppy: fix #1760
- drakxservices: fix #502

* Mon Feb 24 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-5mdk
- clean up tools embeddeding in the mcc
  o make it hard to freeze the mcc
  o make tools loo better when embedded (no embedded wait messages,
    ...)
- harddrake2:
  o add "/dev" to devfs paths
  o do not offer to configure module when there's no module or when
    driver is an url or a graphic server
  o fix embedding

* Fri Feb 21 2003 Damien Chaumette <dchaumette@mandrakesoft.com> 9.1-4mdk
- drakconnect fixes

* Thu Feb 20 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-3mdk
- drakboot: fix #1922
- drakgw, drakboot: remove gtk+ warnings
- harddrake2: fix latest l10n bugs
- disdkrake fixes (pixel)
- drakconnect: dhcp fix (poulpy)
- printerdrake fix (pixel)

* Thu Feb 20 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-2mdk
- logdrake: fix #1829
- translation updates
- scannerdrake:fix embedding
- drakxtv: workaround a drakx bug which don't always add bttv to
  /etc/modules (fix #)
- printerdrake:
  o fix embedding
  o hide the icon when embedded to get more space
  o various improvements (till)
- drakfont: fc-cache enhancement (pablo)
- drakTermServ: fix #1774, #1775 (stew)
- newt bindind: better trees managment on console (pixel)
- diskdrake fixes (pixel)
- xfdrake: log failure sources (pixel)

* Tue Feb 18 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-1mdk
- fix "nothing to edit" in drakperm (#1769)
- fix draksec help
- drakedm: fix badly generated config file by 3rd party progs
- i18n fixes (pablo, gc)
- scannerdrake updates (till)
- diskdrake fixes: raid, ... (pixel)
- printerdrake fixes (till)
- drakconnect fix (poulpy)

* Mon Feb 17 2003 Till Kamppeter <till@mandrakesoft.com> 9.1-0.34mdk
- Fixed automatic print queue generation for HP DeskJet 990C.

* Mon Feb 17 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.33mdk
- fix wizard mode (pixel)

* Mon Feb 17 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.32mdk
- harddrake: fix #1718
- translation snapshot

* Sun Feb 16 2003 Till Kamppeter <till@mandrakesoft.com> 9.1-0.31mdk
- Various fixes/improvements on printerdrake:
  o Restructured function "main()"
  o Auto-generation of print queues during installation
  o Support for unknown printers in auto-detection and auto-generation of
    print queues
  o Fixed display of printer help pages
  o Fixed determination of default printer

* Fri Feb 14 2003 Damien Chaumette <dchaumette@mandrakesoft.com> 9.1-0.30mdk
- drakperm fixes
- drakfont fixes

* Thu Feb 13 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.29mdk
- fix gc breakage

* Thu Feb 13 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.28mdk
- vastly improved scannerdrake (till):
  o fixed scsi/usb/parrallel scanners detection
  o new known scanners
  o support scanners with multiple ports 
  o better configuration files
  o fix "SnapScan" <-> "snapscan" bug
  o fix "HP scanners had no manufacturer field"
- drakxservices fixes (pixel)

* Wed Feb 12 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.27mdk
- fix embedded drakconnect: 
  o no crash on expert "configure" buttons
  o better behaviour when buttons are hidden/showx
- harddrake/draksound: card list update
- pixel:
  o diskdrake: 
    * discrimate hpfs and ntfs
    * more precise message when formatting / fsck'ing / mounting
	 partitions
    * hide passwords for smb mount points
  o XFdrake: fix #707
- drakperm: first gtk+2 port fixes, still more to come (pouly & me)
- fix drakbug help (daouda)
- drakconnect fixes (frederic lepied)
- updated translations (pablo)

* Fri Feb  7 2003 Damien Chaumette <dchaumette@mandrakesoft.com> 9.1-0.26mdk
- drakconnect : dhcp & zeroconf fixes
- drakfont : full Gtk2

* Thu Feb  6 2003 Damien Chaumette <dchaumette@mandrakesoft.com> 9.1-0.25mdk
- drakconnect fixes

* Thu Feb  6 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.24mdk
- fix drakfloppy
- diskdrake: s/fat/windows/ because of ntfs
- poulpy:
  o drakfont updates
  o drakconnect fixes
- translation updates (pablo & co)
- add drakedm to choose display manager
- drakhelp: install help on demand (deush)
- harddrake2: fix for rtl languages

* Wed Feb  5 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.23mdk
- draksec cleanups
- fix harddrake2 embedding in mcc
- update translations (pablo)

* Tue Feb  4 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.22mdk
- add support for adiusbadsl 1.0.2 (fponsinet)
- faster draksec shutdown

* Mon Feb  3 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.21mdk
- draksec:
  o gui look nicer
  o add help for check cron 
  o fix "first notebook page do not show up"
  o do not be listed in drakxtools-http
  o faster startup
- sanitize draxktools-http service script
- diskdrake: ntfs resizing bug fixes (pixel)

* Fri Jan 31 2003 Damien Chaumette <dchaumette@mandrakesoft.com> 9.1-0.20mdk
- drakconnect: add more zeroconf support

* Thu Jan 30 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.19mdk
- printerdrake: fixes for new foomatic
- requires a recent enought perl-GTK2
- harddrake2:
  o fix misdetection of nvnet part of nvforce2 chips
  o move nforce system controllers in bridge class (which is renamed
    "bridges and system controllers")
  o mark class names as being translatable
- logdrake works again in both embedded and non embedded cases
- translation updates, add Tajiki (pablo)
- interactive: add support for trees on console (pixel)
- diskdrake: ntfs resizing support (pixel) (acked by ntfsresize author)

* Wed Jan 29 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.18mdk
- fix locales managment for non interactive tools (aka pure gtk+ tools)
- harddrake2:
  o restore cd/dvd burners detection
  o fix doble detection of pci modems
  o don't display vendor & description when we don't have them for ata disks
  o fix ghost modem detection
  o logdrake is embeddable again

* Tue Jan 28 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.17mdk
- drakfont updates (poulpy):
  o fix progress bar,
  o about box,
  o ugly border when embedded.
- printerdrake: various fixes for local printer (till)
- small fix in drakgw (florin)

* Mon Jan 27 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.16mdk
- fix wait messages (gc)
- vietnamese translation update

* Mon Jan 27 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.15mdk
- diskdrake:
  o make sub window be modal
  o fix text mode (pixel)
- drakconnect: 
  o don't log actions not done
  o fix modem detection (poulpy)
  o cleanups (poulpy, pixel)
- draksound: remove last source of "unlisted driver" because of hand
  edited /etc/modules.conf
- drakxtv: add test mode
- fix encoding conversions for non latin1 (gc)
- harddrake2:
  o use new help system
  o make sub window be modal
  o configure sound slots on bootstrapping
- logdrake:
  o don't display "wait while parsing" window when embedded in mcc
  o log all drakx tools (not only the first one)
- mousedrake: cleanups (pixel, gc)
- printerdrake: updates for new foomatic (till)
- requires old perl-gtk for drakfloppy and net_monitor which works
  again
- translation updates (pablo)
- xfdrake: various fixes (pixel)

* Fri Jan 24 2003 Damien Chaumette <dchaumette@mandrakesoft.com> 9.1-0.14mdk
- drakconnect :
  o get back serial modem detection

* Thu Jan 23 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.13mdk
- fix standalone apps error on --help
- many enhancements to draksound:
  o no more unlisted message
  o "how to debug sound problem" window
  o offer to pick any driver if no detected sound card (for eg isa
    card owners) or if no alternative driver 
  o handle proprietary drivers
  o fix unchrooted chkconfig call
- draksec: display help in tooltips
- drakconnect :
  o cleaning (poulpy, me)
  o zeroconf support (poulpy)
- big interactive cleanup for drakx and focus handling (pixel)
- boot floppy fixes (pixel)
- diskdrake: don't display twice the same mount point (pixel)
- keyboardrake:
  o cleanups (pixel)
  o update supported keyboard layouts ... (pablo)
- xfdrake: (pixel)
  o cleanups
  o don't use anymore qiv to render background while testing X config
- add drakpxe (francois)
- printerdrake:
  o updates (till)
  o fix chrooted services (me)
- translation updates (many people)
- mousedrake: fix scrolling test (gc)
- ugtk2: fix some (small) memory leaks (gc)
- ppc updates (stew)
- english sentences proofreading (pablo, stew)
- fix gtk+-2 port of mousedrake (me), 

* Fri Jan 17 2003 Damien Chaumette <dchaumette@mandrakesoft.com> 9.1-0.12mdk
- drakconnect : 
  o little dhcp behavior rework
  o fix /etc/hosts localdomain
 
* Thu Jan 16 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.11mdk
- snapshot

* Thu Jan 09 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.10mdk
- draksound : fix and update driver list
- printerdrake: fix staroffice/ooffice configuration (till)

* Tue Jan 07 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.9mdk
- fix wizards

* Tue Jan  7 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.8mdk
- update french translation
- harddrake: treat usb hubs as usb controllers
- logdrake: set it non editable
- printerdrake:
  o simplify gimp-print configuration 
  o let it work
- various cleanups (pixel)
- standalone tools: first help system bits (deush)

* Mon Jan  6 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.7mdk
- printerdrake fixes

* Thu Jan  2 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.6mdk
- embedding fixes
- wizard fixes
- fix permissions setting
- internals cleanups
- drakconnect & printerdrake fixes
- gtk+-2 fixes
- faster xfdrake startup
- translations update
- fix redefinition warnings

* Mon Dec 30 2002 Stefan van der Eijk <stefan@eijk.nu> 9.1-0.5mdk
- BuildRequires: perl-MDK-Common-devel

* Thu Dec 19 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.4mdk
- gtk+2 snapshot

* Wed Dec 04 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.3mdk
- snapshot for mcc

* Mon Nov 18 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.2mdk
- more printerdrake redesign
- more perl_checker fixes
- standalone : provide a common cli options/help manager
- logdrake : use my_gtk to transparently handle embedding and ease future gtk2 port
- kill dead code

* Fri Nov 15 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.1mdk
- bump version
- add missing printer/ directory
- typo fix in drakxtv

* Thu Nov 14 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.12-1mdk
- printerdrake cleanups
- various perl lifting
- harddrake:
  o display floppy driver type as well as mouse type & network printer port
  o fix vendor/model spliting for eide disks when there's neither
    space nor separator
  o v4l card lists : resync with latest bttv & saa7134 drivers

* Mon Nov 11 2002 Pixel <pixel@mandrakesoft.com> 1.1.11-3mdk
- bug fix (most drakxtools)

* Sun Nov 10 2002 Pixel <pixel@mandrakesoft.com> 1.1.11-2mdk
- bug fix (printerdrake, netconnect)

* Thu Nov  7 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.11-1mdk
- harddrake:
  o only display "selected" fields, skip other (aka only display
    fields we described)
  o print name and value of skipped fields on console
  o only display help topics related to currently displayed fields in
    right "information" frame
  o if no device selected, display a message explaining the help dialog
  o don't display modem when there're none
  o describe most cpu fields
  o simplify the coloring logic

- detect_devices :
  o getModem() : simplify
  o getCPUs() : fix cpu fields parsing

* Wed Nov  6 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.10-4mdk
- s/_(/N(/

* Tue Nov 05 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.10-3mdk
- rebuild for newt

* Mon Nov  4 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.10-2mdk
- snapshot

* Wed Oct 16 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.10-1mdk
- harddrake :
  o try to discriminate webcams from video cards
  o fix not displayed unknow devices
- detection engin :
  o update eide vendors list
  o detect cpus
  o adsl work (damien)
- drakbug:
  o make ui faster
  o fix displayed result when the package isn't installed
- drakTermServ : fixes (stew)
- smb updates (stew)
- fix broken danish translations (wrong unicode encoding) (pablo)
- update other translations by the way (pablo)

* Fri Sep 20 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-53mdk
- remove useless warnings from harddrake

* Fri Sep 20 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-52mdk
- fix draksec

* Fri Sep 20 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-51mdk
- printerdrake: various fixes (till)
- drabug:
	o fix spurious '1' file creation
	o don't print error messages when a program isn't found

* Tue Sep 17 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-50mdk
- draksec:
	o add ignore option to pull-down list
	o remove not anymore used libsafe option
	o save items
	o reread already set item

* Tue Sep 17 2002 Warly <warly@mandrakesoft.com> 1.1.9-49mdk
- printerdrake fix for webfetch

* Mon Sep 16 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-48mdk
- fix die wizcancel in non wizard mode (dams sucks?)

* Sat Sep 14 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-47mdk
- fix printerdrake network scanning for printers/print servers hangs
  on with firewalled machines (till)
- fix printerdrake curl dependancy break urpmi (till)
- obsoletes drakfloppy (daouda)

* Thu Sep 12 2002 Damien Chaumette <dchaumette@mandrakesoft.com> 1.1.9-46mdk
- fix broken net_monitor

* Thu Sep 12 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-45mdk
- try to fix drakgw & drakfirewall thx to pixel and florin
- fix drakfloppy and logdrake (tv)

* Wed Sep 11 2002 Damien Chaumette <dchaumette@mandrakesoft.com> 1.1.9-44mdk
- drakconnect :
  o fix RTC, ISDN detection
  o fix pcmcia cards detection / module list
  o check DNS and Gateway IPs

* Mon Sep  9 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-43mdk
- move back draksec to drakxtools
- harddrake:
  o don't pollute sbin namespace with one shot scripts
  o add run wrapper script for harddrake service
  o disable ?dm part
- draksound:
  o really display default driver
  o wait message while switching
- update translations

* Sat Sep  7 2002 Daouda LO <daouda@mandrakesoft.com> 1.1.9-42mdk
- cvs up before packaging (fix messy drakboot conf). 

* Fri Sep  6 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-41mdk
- fix harddrake service, run non essential checks after dm start

* Fri Sep  6 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-40mdk
- harddrake:
  o fix usb mouse detection
  o list --test in -h|--help
  o enhanced draksound :
    * blacklist cs46xx and cs4281 drivers : we won't unload these
 	 drivers since they're know to oopses the kernel but just warn
 	 the user
    * chroot aware - can be used in drakx
    * workaround alsaconf's aliases
    * add an help button that describe ALSA and OSS
    * display current driver, its type (OSS or ALSA), and the default
  	 driver for the card
    * if there's no (usb|pci) sound card, print a note about sndconfig
      for isa pnp cards

* Fri Sep 06 2002 David BAUDENS <baudens@mandrakesoft.com> 1.1.9-39mdk
- Re-add old obsolete Aurora's images needed by drakboot (this is stupid)

* Fri Sep 06 2002 David BAUDENS <baudens@mandrakesoft.com> 1.1.9-38mdk
- Update mdk_logo.png
- Update drakbackup icons

* Fri Sep  6 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-37mdk
- drakperm, drakbackup: fix embedded mode

* Fri Sep  6 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-36mdk
- gtkicons_labels_widget() :
  o add support for mcc' big icon animation
  o cleanups
  o simplify notebook redrawing vs flick/icon_aligment

* Thu Sep  5 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-35mdk
- Update banners (David Baudens)
- my_gtk snapshot for rpmdrake (gc)

* Wed Sep  4 2002 Stew Benedict <sbenedict@mandrakesoft.com> 1.1.9-34mdk
- add perl-Expect requires for drakbackup (now enabled)

* Wed Sep  4 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-33mdk
- harddrake: fix scrolling tree

* Wed Sep  4 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-32mdk
- embbed drakbackup

* Wed Sep  4 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-31mdk
- snapshot for gtktext_insert with color/font capabilities (rpmdrake)

* Tue Sep  3 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-30mdk
- ugtk:
	o better fix for glib warning that don't make drakx feel mad
	o make icons more transparent when selected in mcc

* Mon Sep  2 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-29mdk
- harddrake:
  o use new icons
  o add menu icon
- mcc: ensure all binaries're there
- ugtk: remove all glib warnings

* Mon Sep  2 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-28mdk
- tinyfirewall is now drakfirewall (daouda)

* Fri Aug 30 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-27mdk
- ugtk: add alpha blendering support for mcc's icons through pixbufs
  o readd gdkpixbuf support
  o ensure imlib is used by default to load files, not gdk-pixbuf
  o compose_with_back(): load a png icon into a pixbuf and call
    compose_pixbufs with background pixbuf
  o compose_pixbufs(): render transparent icon onto background into a
    new pixbuf
  o merge gtkcreate_png_pixbuf() from gdk-pixbuf-0-branch : load an
    icon into a pixbuf
    gdk-pixbuf-0-branch also uses it to simplify a lot of code
  o gtkicons_labels_widget() :
    * add a new background pixbuf parameter that'll be composited with icons
    * render icons with alpha blender in right area
    * kill imlib_counter
    * kill imlib usage for 
    * kill dead code (was dead since i fixed mcc memory leaks)
- fix init-script-without-chkconfig-{post,preun}

* Thu Aug 29 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-26mdk
- harddrake: 
	o quit button really work in embedded mode
	o move so called eide raid controllers from unknown to ata
	  controllers
- logdrake: add a scrollbar when embedded in mcc

* Thu Aug 29 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-25mdk
- snapshot (drakupdate_fstab --auto feature (pixel), logdrake don't
  display too much information in explanations to save space for what's
  useful)

* Thu Aug 29 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-24mdk
- snapshot for display_info availability in ask_browse for rpmdrake

* Thu Aug 29 2002 Pixel <pixel@mandrakesoft.com> 1.1.9-23mdk
- drakupdate_fstab first appearance

* Wed Aug 28 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-22mdk
- harddrake: don't display the menu bar in embedded mode, but a "quit"
  button

* Tue Aug 27 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-21mdk
- drakconnect fixes (damien)

* Fri Aug 23 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-20mdk
- draksound: display right message ("no alternative") when no
  alternative rather than "no known module"
- fixes for multiple NIC boxes (florin)

* Fri Aug 23 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-19mdk
- draksound: use right sound slot

* Fri Aug 23 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-18mdk
- ugtk: fix most mcc memory leaks (pending ones seems related to perl-gtk)
- tinyfirewall: misc fixes (pixel)

* Fri Aug 23 2002 Pixel <pixel@mandrakesoft.com> 1.1.9-17mdk
- snapshot (including new tinyfirewall)

* Thu Aug 22 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-16mdk
- snapshot (for rpmdrake)

* Wed Aug 21 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-15mdk
- add draksound
- mousedrake: default usbmouse link to input/mice rather than
  input/mouse0, thus giving support for multiple mouse, wacom tables,
  ...

* Wed Aug 21 2002 Pixel <pixel@mandrakesoft.com> 1.1.9-14mdk
- fix dangling waiting watch mousecursor (well, please test!)
- adding draksplash (nathan)

* Mon Aug 19 2002 Pixel <pixel@mandrakesoft.com> 1.1.9-13mdk
- snapshot (including better XFdrake)

* Wed Aug 14 2002 Pixel <pixel@mandrakesoft.com> 1.1.9-12mdk
- snapshot (fix diskdrake making a hell of fstab)

* Tue Aug 13 2002 Pixel <pixel@mandrakesoft.com> 1.1.9-11mdk
- snapshot (including "diskdrake --dav")

* Mon Aug 12 2002 Pixel <pixel@mandrakesoft.com> 1.1.9-10mdk
- snapshot (various bug fixes including no-floppy-box-segfault)

* Fri Aug  9 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-9mdk
- harddrake:
	o module configuration window:
		* read current options
		* don't display ranges, we cannot really know when a range
            is needed and so display them in wrong cases
		* read & parse modules.conf only when configuring the
            module, not on each click in the tree
		* don't display ranges, we cannot really know when a range
       	  is needed and so display them in wrong cases (kill code,
       	  enable us to simplify modparm::parameters after

* Fri Aug  9 2002 Pixel <pixel@mandrakesoft.com> 1.1.9-8mdk
- snapshot

* Tue Aug  6 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-7mdk
- harddrake, scannerdrake: add scsi scanner detection support
- harddrake: detect external modems

* Tue Aug  6 2002 Pixel <pixel@mandrakesoft.com> 1.1.9-6mdk
- rebuild for perl thread-multi

* Mon Aug  5 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-5mdk
- snapshot for rpmdrake

* Fri Aug  2 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-4mdk
- have interactive::gtk::exit in my_gtk so that my_gtk apps can call
  it and then fix the problem of clock mouse cursor on exit

* Thu Aug  1 2002 Pixel <pixel@mandrakesoft.com> 1.1.9-3mdk
- keyboarddrake now handles choosing toggle key (XkbOptions)

* Thu Aug  1 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-2mdk
- remove obsoleted drakconf
- various fixes
- [ugtk::gtkcreate_png] suppress all gtk warnings
- updated vietnamese translation (pablo)
- [interactive::gtk] fix many warnings when {icon} is not given (pixel)

* Thu Aug  1 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-1mdk
- integrate patches in my_gtk and ugtk for new rpmdrake:
  - [ugtk] add "gtkentry" so that we can create an entry and set
    initial value in one call
  - [my_gtk::main] don't set the events, to fix keyboard focus
    problem in entries when embedded
  - [my_gtk::_create_window] add $::noBorder, to not have a frame
    in the main window, so that it's possible to end up with
    windows with no border
  - [my_gtk] add ask_dir which is a ask_file with only the dir list
  - [my_gtk] add ask_browse_tree_info to the export tags, and:
    - add support for parents with no leaves, so that then we can
      partially build the trees (for speedup)
    - add "delete_all" and "delete_category" callbacks
    - use Gtk::CList::clear when removing all the nodes, much
      speedup
- Titi, harddrake :
	o workaround for the busy mouse cursor set by
	  gtkset_mousecursor_wait() in my_gtk::destroy
	o remove debugging prints
	o cleanups
    - drakx: various cleanups

* Thu Aug  1 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-16mdk
- my_gtk:
	o splitup it into my_gtk and ugtk as done by dams
	o resync with dams
	o increase the icon blinkage from 50ms to 100ms
- harddrake: 
	o use new embedded managment

* Thu Aug  1 2002 Pixel <pixel@mandrakesoft.com> 1.1.8-15mdk
- harddrake (titi):
	o add embedded mode for drakconf
	o print less gtk warnings
	o module configuration window
- fix mousedrake
- fix XFdrake in embedded
- enhance XFdrake
- don't require detect-lst (titi)
- printerdrake work in progress (till)

* Wed Jul 31 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-14mdk
- harddrake:
	o fix pcmcia network card detection (unknown => ethernet)
	o fix scsi detection :
		* fix SCSI controllers detection (unknown => scsi controllers)
		* fix misdetection of scsi devices as scsi host adapter
		* fix double scsi devices detection (both unknown and real
		  category)
- updated translations
- fix mousedrake (pixel)
- drakbug, drakbackup: spell/i18n fixes (pixel, me)
- xfdrake: fixes (pixel)
- new draksex (stew)
- diskdrake: (pixel)
	o fix LVM on RAID
	o explain the pb when maximal number of primary partitions is reached

* Mon Jul 29 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-13mdk
- harddrake:
	o service: fix config file conversion
	o harddrake::ui :
	  * s/channel/Channel/
	  * bus_id is for usb devices too
	  * remove obsolete fields info and name
	  * add nbuttons, device, old_device descriptions
- updated XFdrake (gtk resolution chooser work, i810 fixes, ...) (pixel)
- remove "Requires: groff" (nobody know why it's there) (Pixel)
- updated translations (nl/id/vi)
- standalone/logdrake: (deush)
	o don't display services that are not installed
	o word wrap string correctly
	o cleanup
- bootloader.pm: (pixel)
	o let the bootloader::mkinitrd error be seen by the GUI
	o fix dying when mkinitrd doesn't create an initrd
- interactive.pm: error messages fixes (pixel)
- diskdrake: add 0x35 partition table id meaning JFS (under OS/2)
  (thank to Mika Laitio)
- printerdrake: first step of automatic HP multi-function device
  configuration with HPOJ 0.9. (till)
- drakTermServ (stew)
	o Check for/install terminal-server and friends.
	o More intelligent error message when mkisofs fails.
	o  Cleanup code for use strict.
	o Fix crash when no backup dhcpd.conf.
- drakbackup: (stew)
	o Numerous GUI crash fixes, oddities. 
	o Install	needed packages.
	o Fix email, daemon modes.
	o Add rsync, webdav, cd, tape capabilities. 
	o Consolidate net method setup screens.
	o Add CD device capability query.

* Thu Jul 25 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-12mdk
- simplify harddrake service:
	o we don't need to set media_type, we don't use it
	o mouse and mass storage media use the same key, let merge their
	  code path
	o merge timeout and cancel cases

- harddrake::data : only do one probeall here (there's still many in
  detect_devices, probing caching should go there)

- harddrake:ui : 
	o add a fields data structure:
		* put together field translation and field description
		* this enable to get rid of %reverse_fields usage & creation
		* this ensure all field names & translations are marked
		  translatables for gettext
		* move $wait declaration around its usage and explicit its
            destruction
		* remove usb debugging message needed to trace the null
		  description bug i fixed in ldetect
		* simplify the device fields rendering "because of" the
            above
		* simplify the help window creation/display/destruction
		  (only one statement left)
	o explicitely call interactive->exit
	o remove all "no signal to disconnect" gtk+ warnings 


* Thu Jul 25 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-11mdk
- rebuild against new libldetect (fix (null) descriptions)
- new XFdrake (pixel)
- harddrake:
	o devfs names
	o scanner support;
		* don't account scanners as unknown devices
		* split scannerdrake:val into vendor and description
		* don't display bogus "val:%HASH"
- updated translations (fr, pl)
- tools can be runned on console again

* Tue Jul 23 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-10mdk
- harddrake :
	o remove - between vendor and model for ibm eide disks
	o network devices are configurable again now
- draksec : typo fix (deush)

* Tue Jul 23 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-9mdk
- harddrake :
	o don't show "cancel" button in about and help windows
	o service: convert config file from plain perl to Storable binary
	  file (faster startup)
- general reorganization cleanup:
    o move interactive_* into interactive::*
    o move partition_table_* into partition_table::*
- XFdrake: more cleanups (pixel)

* Sun Jul 21 2002 Pixel <pixel@mandrakesoft.com> 1.1.8-8mdk
- new snapshot (beware of XFdrake)

* Thu Jul 18 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-7mdk
- remove last draknet reference in harddrake::ui
- disable diagnostics and strict mode

* Thu Jul 18 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-6mdk
- able to restart WindowMaker if needed
- draknet is dead; vival el drakconnect
- devices managment:
	o no need to write /etc/sysconfig/harddrake2/previous_hw in
  	  %%post since harddrake2 service doesn't configure anything if
  	  previous config was empty
	o fix usb mac mouse detection
	o move scsi/ata controllers, burners, dvd, ... from
	  unknown/others into their own"non configurable" sections
	o fix problems with usb-interface
- XFdrake: big cleanup
- general cleanups
- translation updates

* Thu Jul 11 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-5mdk
- drakx :
	o code enhancement: increase coherency around the whole drakx
	  code regarding devices
	o decrease the debug verbosity
- harddrake2 :
	o i18n:
		* move $version out of translatable strings
	o ui:
		* increase default main window size
		* put back the hw tree root
		* eide devices: split info between vendor and model strings
- spec :
	o fix parrallel build
	o list and describe all gui tools from drakxtools

* Wed Jul 10 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-4mdk
- fix perl depandancy

* Tue Jul 09 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-3mdk
- harddrake2:
	o no need to 'use strict' in "binary" => remove warnings 
	o fix boot freeze on hw change: initscript was running us with
	  stdout redirected to /dev/null; just use a small sh wrapper to
	  fix it
	o harddrake::bttv: only log in standalone mode
	o display channel of eide devices 

- spec:
	o reorder entries in description
	o list all entries in first line of description
	o fix post: add start argument

* Mon Jul 08 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-2mdk
- spec :
  o enhance descriptions
  o various spec clean
  o harddrake :
 	* obsoletes/provides libdetect-lst, libdetect-lst-devel, detect,
	  detect-lst, kudzu-devel
	* split package between harddrake and harddrake-ui to minimize
    	  the harddrake service dependancies
	* add missing /etc/sysconfig/harddrake2
- harddrake2 :
  o cache detect_devices::probeall(1) so that hw probe is run once
  o hw configuration :
  	* eide devices: split up info field into vendor and model fields
  o ui:
	* enhanced help
	* mice:
		- s/nbuttons/Number of buttons/ 
		- delete qw(MOUSETYPE XMOUSETYPE unsafe)
	* complete help
	* center the main window
	* remove drakx decorations
	* don't display "run config tool" button if no configurator
	  availlable
  o logic:
	* skip configuration on firt run
	* don't restart harddrake on install
	* skip hw classes without configurator (which'll have a
	  configurator after porting updfstab)
  o service :
	* only do the job at startup
	* add "please wait" message
	* really don't cry when no previous config

* Mon Jul 08 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-1mdk
- snapshot
- new entries: 
	o harddrake2 : new hardware detection && configuration tool
	o drakbugreport: bug reporting tool a la Kde (not working!)
	o drakTermServ : configuration tool for diskless stations.
- updated programs :
	o drakxtv: if runned by root, offer to configure bttv for most tv cards
	o disdrake:
		* enhanced raid & lvm support,
		* check if programs (ie jfsprogs) are installed
		* cleanups
	o Xconfigurator: bug fix
- general : better supermout support, use new libldetect, various bug fixes

* Tue Jun 18 2002 Frederic Lepied <flepied@mandrakesoft.com> 1.1.7-99mdk
- added new draksec from Christian and a new way to build the packages (make rpm)

* Mon Apr 15 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.7-98mdk
- snapshot
- add drakxtv description
- drakxtv : now auto guess the country and the freq table

* Fri Mar 15 2002 dam's <damien@mandrakesoft.com> 1.1.7-97mdk
- snapshot. final release 1

* Tue Mar 12 2002 dam's <damien@mandrakesoft.com> 1.1.7-96mdk
- added onboot options foreach network cards
- resolv.conf and domain name bug fixed

* Tue Mar 12 2002 dam's <damien@mandrakesoft.com> 1.1.7-95mdk
- included drakproxy
- corrected various timeout (net_monitor, internet connection tests)
- snapshot

* Mon Mar 11 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-94mdk
- various

* Fri Mar  8 2002 dam's <damien@mandrakesoft.com> 1.1.7-93mdk
- drakfont GUI corrected
- new drakproxy

* Fri Mar 08 2002 François Pons <fpons@mandrakesoft.com> 1.1.7-92mdk
- fixes for NVIDIA drivers support in XFdrake.

* Thu Mar  7 2002 dam's <damien@mandrakesoft.com> 1.1.7-91mdk
- lot of bugfixes
- (dams)
	* standalone/net_monitor: make gc happy
	* modparm.pm, share/po/fr.po: corrected
	* standalone/draknet: corrected network/internet restart when already
	connected
	* standalone/drakfont: corrected bad system command
	* standalone/drakautoinst: corrected HASH and ARRAY label
- (gc)
	* standalone/drakgw: 
	  - call net_monitor to disable internet connection before
	    network-restart
	  - user return value when status'ing the
	  initscripts rather than grepping their text output
- (pixel)
	* standalone/fileshareset (nfs_exports::update_server): ensure portmap
	is running

* Wed Mar  6 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-90mdk
- corrected font in wizard (dams)
- localedrake: (pixel)
  * fix dummy entries in .i18n for chineese
  * take sysconfig/i18n into account when no .i18n
  * when called by kcontrol with --apply, don't modify kde config files,
    kcontrol takes care of it more nicely
- diskdrake: translate actions in text mode (pixel)
- drakxtv fixed (titi)

* Sun Mar  3 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-89mdk
- (gtkicons_labels_widget): pass the widget instead of directly passing the font
  (for drakconf)

* Sun Mar  3 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-88mdk
- (gtkicons_labels_widget): pass the style instead of directly passing the font
  (for drakconf)

* Fri Mar  1 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-87mdk
- new snapshot (including a modified localedrake)

* Thu Feb 28 2002 dam's <damien@mandrakesoft.com> 1.1.7-86mdk
- corrected modinfo path. isa modules options should now work.

* Thu Feb 28 2002 dam's <damien@mandrakesoft.com> 1.1.7-85mdk
- corrected spec so that net_monitor.real get included too.

* Thu Feb 28 2002 dam's <damien@mandrakesoft.com> 1.1.7-84mdk
- snapshot

* Wed Feb 27 2002 dam's <damien@mandrakesoft.com> 1.1.7-83mdk
- snapshot

* Tue Feb 26 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-82mdk
- move XFdrake to drakxtools from drakxtools-newt 
(otherwise it doesn't work, since it needs perl-GTK & xtest)

* Tue Feb 26 2002 dam's <damien@mandrakesoft.com> 1.1.7-81mdk
- added groff require

* Tue Feb 26 2002 dam's <damien@mandrakesoft.com> 1.1.7-80mdk
- isa card modules correction. Should work in post install
- drakfont correction

* Sat Feb 23 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-79mdk
- require latest perl-MDK-Common
- corrected icon paths (thanks to garrick)
- don't create devices when /dev is devfs mounted (thanks to Andrej Borsenkow)

* Fri Feb 22 2002 dam's <damien@mandrakesoft.com> 1.1.7-78mdk
- corrected icon paths

* Thu Feb 21 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.7-77mdk
- now we can live without kdesu ; and drakxtools-newt only requires
  usermode-consoleonly

* Tue Feb 19 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-76mdk
- fix diskdrake --nfs & --smb

* Tue Feb 19 2002 dam's <damien@mandrakesoft.com> 1.1.7-75mdk
- required specific version of perl MDK Common

* Tue Feb 19 2002 dam's <damien@mandrakesoft.com> 1.1.7-74mdk
- various things not described by the last packager
- new png/wpm search policy in my_gtk

* Mon Feb 18 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-73mdk
- snapshot

* Sat Feb 16 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-72mdk
- localedrake now handles KDE
- diskdrake now handles XFS on LVM live resizing (growing only)

* Fri Feb 15 2002 dam's <damien@mandrakesoft.com> 1.1.7-71mdk
- snapshot

* Thu Feb 14 2002 dam's <damien@mandrakesoft.com> 1.1.7-70mdk
- snapshot

* Mon Feb 11 2002 dam's <damien@mandrakesoft.com> 1.1.7-69mdk
- fixed bad stuff.so in drakxtools

* Fri Feb  8 2002 dam's <damien@mandrakesoft.com> 1.1.7-68mdk
- new gfx
- various fix
- major printerdrake updates

* Thu Feb 07 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.7-67mdk
- add drakxtv

* Thu Feb  7 2002 dam's <damien@mandrakesoft.com> 1.1.7-66mdk
- new package, various wizard, mygtk, disdrake improvment.

* Wed Feb  6 2002 dam's <damien@mandrakesoft.com> 1.1.7-65mdk
- logdrake updates
- wizard fix

* Tue Jan 29 2002 dam's <damien@mandrakesoft.com> 1.1.7-64mdk
- last mygtk, drakbackup...
- disdrake fixed
- snapshot

* Sun Jan 27 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-63mdk
- cleanup drakxtools-newt (move all gtk stuff to drakxtools)
- reworked and split diskdrake
- add logdrake

* Fri Jan 25 2002 dam's <damien@mandrakesoft.com> 1.1.7-62mdk
- bug corrections, improvements
- new advertising engine
- new gtkicons_labels_widget

* Tue Jan 22 2002 dam's <damien@mandrakesoft.com> 1.1.7-61mdk
- new gtkicons_labels_widget for new mcc.

* Fri Jan 18 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.7-60mdk
- first support for 'Explanations'

* Fri Jan 18 2002 Sebastien Dupont <sdupont@mandrakesoft.com>  1.1.7-59mdk
- Drakbackup without unstable options for qa. 
- DrakFont update warning message (qa).

* Wed Jan 16 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-58mdk
- ensure lsnetdrake is included

* Tue Jan 15 2002 Sebastien Dupont <sdupont@mandrakesoft.com>  1.1.7-57mdk
- Drakbackup daemon, backend mode (-show-conf -daemon -debug -help -version) and report mail corrections.
- DrakFont gi and progress bar problems.

* Tue Jan 14 2002 Sebastien Dupont <sdupont@mandrakesoft.com>  1.1.7-56mdk
- New drakbackup version, ftp backup work, new pixmaps.
- DrakFont with new pixmaps. 

* Mon Jan 14 2002 Stefan van der Eijk <stefan@eijk.nu> 1.1.7-55mdk
- BuildRequires

* Fri Jan 11 2002 dam's <damien@mandrakesoft.com> 1.1.7-54mdk
- snapshot

* Wed Jan  9 2002 dam's <damien@mandrakesoft.com> 1.1.7-53mdk
- snapshot
- new code in my_gtk

* Tue Jan  8 2002 Sebastien Dupont <sdupont@mandrakesoft.com>  1.1.7-52mdk
- New drakbackup version, incremental backup and restore should work. 

* Sat Dec 22 2001 Sebastien Dupont <sdupont@mandrakesoft.com> 1.1.7-51mdk
- fix  conflicts in drakbackup cvs version.

* Sat Dec 22 2001 Sebastien Dupont <sdupont@mandrakesoft.com> 1.1.7-50mdk
- new drakbackup version.

* Mon Dec 10 2001 Sebastien Dupont <sdupont@mandrakesoft.com> 1.1.7-49mdk
- fix drakfont path problem.
- new version of drakbakup

* Wed Dec  5 2001 dam's <damien@mandrakesoft.com> 1.1.7-48mdk
- corrected syntax error

* Tue Dec  4 2001 dam's <damien@mandrakesoft.com> 1.1.7-47mdk
- avoid network test freeze
- added drackbackup
- snapshot

* Fri Nov 30 2001 Pixel <pixel@mandrakesoft.com> 1.1.7-46mdk
- add diskdrake --fileshare

* Thu Nov 29 2001 Pixel <pixel@mandrakesoft.com> 1.1.7-45mdk
- new diskdrake including fileshareset/filesharelist stuff

* Mon Nov 26 2001 Pixel <pixel@mandrakesoft.com> 1.1.7-44mdk
- use the CVS, not my devel (instable) version

* Fri Nov 23 2001 Pixel <pixel@mandrakesoft.com> 1.1.7-43mdk
- any.pm fixed

* Mon Nov 19 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.7-42mdk
- scannerdrake update to add dynamic support

* Mon Nov 12 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.7-41mdk
- scannerdrake update with new fat ScannerDB

* Mon Nov  5 2001 dam's <damien@mandrakesoft.com> 1.1.7-40mdk
- corrected typo in drakautoinst

* Fri Nov  2 2001 dam's <damien@mandrakesoft.com> 1.1.7-39mdk
- release

* Fri Oct 26 2001 dam's <damien@mandrakesoft.com> 1.1.7-38mdk
- drakautoinst & drakfont updated

* Thu Oct 25 2001 dam's <damien@mandrakesoft.com> 1.1.7-37mdk
- big improvement on drakautoinst
- draknet : connection script updated 

* Thu Oct 18 2001 dam's <damien@mandrakesoft.com> 1.1.7-36mdk
- draknet/net_monitor corrected
- corrected bad stuff.so

* Tue Oct 16 2001 dam's <damien@mandrakesoft.com> 1.1.7-35mdk
- make rplint happier

* Wed Oct 10 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.7-34mdk
- snapshot with scanner stuff

* Mon Sep 24 2001 dam's <damien@mandrakesoft.com> 1.1.7-33mdk
- snapshot

* Mon Sep 24 2001 dam's <damien@mandrakesoft.com> 1.1.7-32mdk
- Last translations.

* Mon Sep 24 2001 dam's <damien@mandrakesoft.com> 1.1.7-31mdk
- snapshot. draknet bugfix.

* Sun Sep 23 2001 dam's <damien@mandrakesoft.com> 1.1.7-30mdk
- snapshot. Included last printer and draknet corrections.

* Fri Sep 21 2001 dam's <damien@mandrakesoft.com> 1.1.7-29mdk
- typo in adsl.pm, Xconfigurator fix.

* Thu Sep 20 2001 dam's <damien@mandrakesoft.com> 1.1.7-28mdk
- snapshot. draknet works now. 

* Wed Sep 19 2001 dam's <damien@mandrakesoft.com> 1.1.7-27mdk
- snapshot

* Mon Sep 17 2001 Pixel <pixel@mandrakesoft.com> 1.1.7-26mdk
- snapshot

* Mon Sep 17 2001 Pixel <pixel@mandrakesoft.com> 1.1.7-25mdk
- snapshot

* Sat Sep 15 2001 dam's <damien@mandrakesoft.com> 1.1.7-24mdk
- snapshot with printer, draknet & install fixes

* Fri Sep 14 2001 François Pons <fpons@mandrakesoft.com> 1.1.7-23mdk
- snapshot with latest XFdrake fixes.

* Fri Sep 14 2001 dam's <damien@mandrakesoft.com> 1.1.7-22mdk
- snapshot

* Thu Sep 13 2001 François Pons <fpons@mandrakesoft.com> 1.1.7-21mdk
- fix Xinerama for Matrox cards (restore XFree86 4.1.0 without DRI).
- removed Modeline 1024x768 in 97.6 Hz which troubles XF4 a lot.

* Thu Sep 13 2001 François Pons <fpons@mandrakesoft.com> 1.1.7-20mdk
- snapshot with XFdrake fixes (G550 support, no DRI with Xinerama,
  no XFree86 3.3.6 proposed wiht dual head).

* Wed Sep 12 2001 dam's <damien@mandrakesoft.com> 1.1.7-19mdk
- snapshot

* Wed Sep 12 2001 dam's <damien@mandrakesoft.com> 1.1.7-18mdk
- snapshot.

* Mon Sep 10 2001 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.7-17mdk
- remove dependency on "perl" since pixel added Data::Dumper in perl-base

* Mon Sep 10 2001 dam's <damien@mandrakesoft.com> 1.1.7-16mdk
- new snapshot, bug corrections.

* Thu Sep  6 2001 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.7-15mdk
- drakgw should be working now

* Tue Sep 04 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.7-14mdk
- snaphsot, better interaction with mcc (diskdrake printerdrake).

* Tue Sep  4 2001 dam's <damien@mandrakesoft.com> 1.1.7-13mdk
- snapshot.

* Thu Aug 30 2001 dam's <damien@mandrakesoft.com> 1.1.7-12mdk
- snapshot. locales corected, nicer wizards.

* Thu Aug 30 2001 François Pons <fpons@mandrakesoft.com> 1.1.7-11mdk
- new snapshot, mousedrake fixes again.

* Wed Aug 29 2001 François Pons <fpons@mandrakesoft.com> 1.1.7-10mdk
- new snapshot, mousedrake fixes.

* Fri Aug 24 2001 dam's <damien@mandrakesoft.com> 1.1.7-9mdk
- snapshot for 8.1 beta2.

* Fri Aug 24 2001 dam's <damien@mandrakesoft.com> 1.1.7-8mdk
- bugfix.
- new snapshot. mousedrake experimental.

* Thu Aug 23 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.7-7mdk
- fix drakboot bug
- macros to fix some rpmlint warnings

* Wed Aug 22 2001 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.7-6mdk
- put a require on "perl" which is needed for Data::Dumper in drakautoinst

* Wed Aug 22 2001 dam's <damien@mandrakesoft.com> 1.1.7-5mdk
- snapshot. draknet improvments, bug fixes.

* Mon Aug 20 2001 Pixel <pixel@mandrakesoft.com> 1.1.7-4mdk
- new fstab munching code

* Sat Aug 18 2001 Pixel <pixel@mandrakesoft.com> 1.1.7-3mdk
- new diskdrake (with interactive version => newt)
- drakxtools-http fix

* Tue Aug 14 2001 dam's <damien@mandrakesoft.com> 1.1.7-2mdk
- added doc (it's a shame...)

* Tue Aug 14 2001 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.7-1mdk
- add drakautoinst

* Mon Aug 13 2001 dam's <damien@mandrakesoft.com> 1.1.6-3mdk
- snapshot

* Tue Aug  7 2001 dam's <damien@mandrakesoft.com> 1.1.6-2mdk
- added draknet_splash pixmap

* Tue Aug  7 2001 Pixel <pixel@mandrakesoft.com> 1.1.6-1mdk
- add drakxtools_http

* Fri Aug  3 2001 dam's <damien@mandrakesoft.com> 1.1.5-106mdk
- added network/*.pm

* Tue Jul 31 2001 Pixel <pixel@mandrakesoft.com> 1.1.5-105mdk
- add require perl-MDK-Common
- fix for cp -rf (fuck FreeBSD (c))

* Tue Jul 31 2001 Pixel <pixel@mandrakesoft.com> 1.1.5-104mdk
- fix my error: %%files with 2 times "-f <file>" doesn't work :-(

* Mon Jul 30 2001 dam's <damien@mandrakesoft.com> 1.1.5-103mdk
- updated with cooker install.
- added require on XFree86-75dpi-fonts
- merged with pixel specfile to handle mo.

* Mon May  7 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.5-102mdk
- updated bootloader.pm according to new lilo package (lilo-{menu,graphic,text})

* Wed Apr 25 2001 François Pons <fpons@mandrakesoft.com> 1.1.5-101mdk
- updated with oem update for DrakX.
- minor bug correction on printerdrake.
- added minor features to XFdrake.

* Wed Apr 18 2001 dam's <damien@mandrakesoft.com> 1.1.5-100mdk
- added require on usermode.
- added source 2 and 3.
- snapshot. netconnect corrections. final package

* Tue Apr 17 2001 dam's <damien@mandrakesoft.com> 1.1.5-99mdk
- snapshot. mousedrake corrected. RC6

* Tue Apr 17 2001 dam's <damien@mandrakesoft.com> 1.1.5-98mdk
- snapshot. autologin corrected. RC5

* Tue Apr 17 2001 dam's <damien@mandrakesoft.com> 1.1.5-97mdk
- snapshot. RC4

* Tue Apr 17 2001 dam's <damien@mandrakesoft.com> 1.1.5-96mdk
- snapshot. RC3

* Mon Apr 16 2001 dam's <damien@mandrakesoft.com> 1.1.5-95mdk
- snapshot. RC2

* Mon Apr 16 2001 dam's <damien@mandrakesoft.com> 1.1.5-94mdk
- snapshot. RC

* Mon Apr 16 2001 dam's <damien@mandrakesoft.com> 1.1.5-93mdk
- draknet and tinyfirewall fixes

* Sun Apr 15 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.5-92mdk
- bootlook fix & layout

* Fri Apr 13 2001 dam's <damien@mandrakesoft.com> 1.1.5-91mdk
- snapshot

* Fri Apr 13 2001 dam's <damien@mandrakesoft.com> 1.1.5-90mdk
- snapshot

* Thu Apr 12 2001 Pixel <pixel@mandrakesoft.com> 1.1.5-89mdk
- snapshot

* Thu Apr 12 2001 dam's <damien@mandrakesoft.com> 1.1.5-88mdk
- snapshot. pcmcia network corrected

* Thu Apr 12 2001 dam's <damien@mandrakesoft.com> 1.1.5-87mdk
- snapshot. Better network configuration

* Thu Apr 12 2001 dam's <damien@mandrakesoft.com> 1.1.5-86mdk
- snapshot.

* Wed Apr 11 2001 François Pons <fpons@mandrakesoft.com> 1.1.5-85mdk
- really fix printerdrake and snap.

* Wed Apr 11 2001 François Pons <fpons@mandrakesoft.com> 1.1.5-84mdk
- fix printerdrake and snap.

* Tue Apr 10 2001 dam's <damien@mandrakesoft.com> 1.1.5-83mdk
- bug correction.

* Mon Apr  9 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.5-82mdk
- snap as always

* Mon Apr  9 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.5-81mdk
- snaphshot again and again

* Mon Apr  9 2001 dam's <damien@mandrakesoft.com> 1.1.5-80mdk
- snapshot. bug fix

* Sun Apr  8 2001 dam's <damien@mandrakesoft.com> 1.1.5-79mdk
- snapshot. bug fix.

* Sun Apr  8 2001 dam's <damien@mandrakesoft.com> 1.1.5-78mdk
- added require on XFree86-100dpi-fonts
- various debugging
- new tinyfirewall

* Sun Apr  8 2001 dam's <damien@mandrakesoft.com> 1.1.5-77mdk
- snapshot
- net_monitor added.

* Fri Apr  6 2001 dam's <damien@mandrakesoft.com> 1.1.5-76mdk
- corrected compilation error.

* Fri Apr  6 2001 yves <yduret@mandrakesoft.com> 1.1.5-75mdk
- snapshot : drakgw updated, boot config fix

* Thu Apr  5 2001 dam's <damien@mandrakesoft.com> 1.1.5-74mdk
- snapshot.

* Mon Apr  2 2001 dam's <damien@mandrakesoft.com> 1.1.5-73mdk
- snapshot.

* Mon Apr  2 2001 dam's <damien@mandrakesoft.com> 1.1.5-72mdk
- snapshot, typo fixs.

* Fri Mar 30 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.5-71mdk
- snapshot & fixes

* Fri Mar 30 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.5-70mdk
- snapshot : boot coonfig updated

* Thu Mar 29 2001 dam's <damien@mandrakesoft.com> 1.1.5-69mdk
- snapshot

* Thu Mar 29 2001 dam's <damien@mandrakesoft.com> 1.1.5-68mdk
- snapshot.

* Thu Mar 29 2001 Pixel <pixel@mandrakesoft.com> 1.1.5-67mdk
- new snapshot (XFdrake should be working)

* Wed Mar 28 2001 dam's <damien@mandrakesoft.com> 1.1.5-66mdk
- corrected tinyfirewall last step

* Wed Mar 28 2001 François Pons <fpons@mandrakesoft.com> 1.1.5-65mdk
- fixed wrong generation of second mouse support

* Wed Mar 28 2001 François Pons <fpons@mandrakesoft.com> 1.1.5-64mdk
- fixed multi-mouse support for XF3
- fixed XFdrake (read old config file before so probe overwrite)

* Wed Mar 28 2001 dam's <damien@mandrakesoft.com> 1.1.5-63mdk
- added draksec embedded mode
- corrected tinyfirewall for 2.4 kernels
- corrected bad translations in draknet

* Tue Mar 27 2001 dam's <damien@mandrakesoft.com> 1.1.5-62mdk
- idem.

* Sat Mar 24 2001 dam's <damien@mandrakesoft.com> 1.1.5-61mdk
- corrected tinyfirewall

* Fri Mar 23 2001 dam's <damien@mandrakesoft.com> 1.1.5-60mdk
- snapshot
- corrected require.

* Fri Mar 23 2001 dam's <damien@mandrakesoft.com> 1.1.5-59mdk
- added ldetect in require.
- tinyfirewall included.

* Thu Mar 22 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.5-58mdk
- updated drakboot, new snapshot

* Thu Mar 22 2001 dam's <damien@mandrakesoft.com> 1.1.5-57mdk
- draknet without mail conf, new snapshot.

* Thu Mar 22 2001 Pixel <pixel@mandrakesoft.com> 1.1.5-56mdk
- new version that will work with perl-base (at least XFdrake)

* Thu Mar 22 2001 Pixel <pixel@mandrakesoft.com> 1.1.5-55mdk
- require perl-base not perl, it should be enough

* Thu Mar 22 2001 dam's <damien@mandrakesoft.com> 1.1.5-54mdk
- first release with tinyfirewall. Not stable.
- corrected gmon pb, I suck.

* Tue Mar 20 2001 dam's <damien@mandrakesoft.com> 1.1.5-53mdk
- corrected bad links.

* Tue Mar 20 2001 dam's <damien@mandrakesoft.com> 1.1.5-52mdk
- no crash anymore.

* Tue Mar 20 2001 dam's <damien@mandrakesoft.com> 1.1.5-51mdk
- updated draknet. new snapshot.

* Wed Mar 14 2001 dam's <damien@mandrakesoft.com> 1.1.5-50mdk
- some minor label improvements.

* Tue Mar 13 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.5-49mdk
- updated bootlook
- macros

* Mon Mar 12 2001 dam's <damien@mandrakesoft.com> 1.1.5-48mdk
- correted wizard pixmaps name

* Mon Mar 12 2001 dam's <damien@mandrakesoft.com> 1.1.5-47mdk
- new and shinny drakxservices

* Tue Mar  6 2001 dam's <damien@mandrakesoft.com> 1.1.5-46mdk
- XFdrake works + other improvements

* Thu Mar  1 2001 dam's <damien@mandrakesoft.com> 1.1.5-45mdk
- updated embedded mode.

* Wed Feb 28 2001 dam's <damien@mandrakesoft.com> 1.1.5-44mdk
- XFdrake : new look.
- draknet : some corrections.
- install : some improvements

* Mon Feb 26 2001 dam's <damien@mandrakesoft.com> 1.1.5-43mdk
- corrected draknet, and some other stuff

* Mon Feb 26 2001 dam's <damien@mandrakesoft.com> 1.1.5-42mdk
- new draknet, with wizard and profiles.
- drakboot short-circuited.
- new pixmaps policy.

* Fri Feb 23 2001 Pixel <pixel@mandrakesoft.com> 1.1.5-41mdk
- require perl-GTK-GdkImlib, fix XFdrake and draknet with no perl-GTK

* Fri Feb 23 2001 Pixel <pixel@mandrakesoft.com> 1.1.5-40mdk
- split in drakxtools and drakxtools-newt

* Thu Feb  8 2001 dam's <damien@mandrakesoft.com> 1.1.5-39mdk
- install() and SHAR_PATH bug fixed in standalone.pm

* Thu Feb  8 2001 dam's <damien@mandrakesoft.com> 1.1.5-38mdk
- bug fix.

* Thu Feb  8 2001 dam's <damien@mandrakesoft.com> 1.1.5-37mdk
- bug correction inclusion.

* Wed Feb  7 2001 dam's <damien@mandrakesoft.com> 1.1.5-36mdk
- snapshot. Included embedded mode (for control-center), and wizard mode.

* Mon Dec 18 2000 Pixel <pixel@mandrakesoft.com> 1.1.5-35mdk
- new version (lspcidrake not here anymore, requires ldetect-lst => don't
include pcitable/... anymore)


* Tue Nov 14 2000 Pixel <pixel@mandrakesoft.com> 1.1.5-34mdk
- snapshot
- get rid of the rpmlib dependency

* Sat Oct 21 2000 dam's <damien@mandrakesoft.com> 1.1.5-33mdk
- RC1_fixed tagged cvs version.
- Video cards handling enhanced
- isa isdn-cards and non detected isdn pci-cards spported.

* Thu Oct 19 2000 dam's <damien@mandrakesoft.com> 1.1.5-32mdk
- snapshot.

* Mon Oct  9 2000 dam's <damien@mandrakesoft.com> 1.1.5-31mdk
- snapshot.

* Fri Oct  6 2000 dam's <damien@mandrakesoft.com> 1.1.5-30mdk
- snapshot.

* Fri Oct  6 2000 dam's <damien@mandrakesoft.com> 1.1.5-29.1mdk
- snapshot. not fully stable.

* Thu Oct  5 2000 dam's <damien@mandrakesoft.com> 1.1.5-29mdk
- snapshot.

* Thu Oct 05 2000 François Pons <fpons@mandrakesoft.com> 1.1.5-28mdk
- snapshot.

* Tue Oct 03 2000 François Pons <fpons@mandrakesoft.com> 1.1.5-27mdk
- snapshot.

* Sun Oct  1 2000 dam's <damien@mandrakesoft.com> 1.1.5-26mdk
- snapshot.

* Sat Sep 30 2000 dam's <damien@mandrakesoft.com> 1.1.5-25mdk
- snapshot.

* Sat Sep 30 2000 dam's <damien@mandrakesoft.com> 1.1.5-24mdk
- snapshot. draknet frozen.

* Fri Sep 29 2000 dam's <damien@mandrakesoft.com> 1.1.5-23mdk
- snapshot.

* Thu Sep 28 2000 dam's <damien@mandrakesoft.com> 1.1.5-22mdk
- modified spec.
- snapshot
- liveupdate

* Wed Sep 27 2000 Pixel <pixel@mandrakesoft.com> 1.1.5-21mdk
- snapshot

* Tue Sep 26 2000 dam's <damien@mandrakesoft.com> 1.1.5-20mdk
- snapshot

* Mon Sep 25 2000 dam's <damien@mandrakesoft.com> 1.1.5-19mdk
- snapshot.

* Fri Sep 22 2000 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.5-18mdk
- new snapshot
- remove BuildRequires kudzu-devel, I suck bigtime..

* Thu Sep 21 2000 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.5-17mdk
- new snapshot
- BuildRequires kudzu-devel since ddcprobe/ddcxinfos.c uses /usr/include/vbe.h

* Wed Sep 20 2000 dam's <damien@mandrakesoft.com> 1.1.5-16mdk
- cvs snapshot. See changelog file

* Wed Sep 20 2000 dam's <damien@mandrakesoft.com> 1.1.5-15mdk
- cvs snapshot. See changelog file

* Fri Sep 15 2000 dam's <damien@mandrakesoft.com> 1.1.5-14mdk
- cvs snapshot.
- draknet : better dsl configuration.

* Thu Sep 14 2000 dam's <damien@mandrakesoft.com> 1.1.5-13mdk
- cvs snapshot.
- draknet : wizard mode. isdn_db.txt moved to /usr/share. No makedev.sh any more

* Mon Sep 11 2000 Pixel <pixel@mandrakesoft.com> 1.1.5-12mdk
- add handling for gnome and kde2 in Xdrakres

* Thu Sep  7 2000 dam's <damien@mandrakesoft.com> 1.1.5-11mdk
- corrected draknet launch error.

* Thu Sep  7 2000 dam's <damien@mandrakesoft.com> 1.1.5-10mdk
- ISDN connection should work. test it!

* Tue Sep  5 2000 Pixel <pixel@mandrakesoft.com> 1.1.5-9mdk
- setAutologin fixed in XFdrake

* Tue Sep  5 2000 Pixel <pixel@mandrakesoft.com> 1.1.5-8mdk
- adduserdrake fixed

* Sat Sep  2 2000 Pixel <pixel@mandrakesoft.com> 1.1.5-7mdk
- fix some typos in standalone/keyboarddrake
- add require perl

* Sat Sep  2 2000 Pixel <pixel@mandrakesoft.com> 1.1.5-6mdk
- add %%lang tags

* Tue Aug 29 2000 dam's <damien@mandrakesoft.com> 1.1.5-5mdk
- draknet : isa cards better recognized.

* Mon Aug 28 2000 dam's <damien@mandrakesoft.com> 1.1.5-4mdk
- corrected draknet. Please test it!

* Sun Aug 27 2000 dam's <damien@mandrakesoft.com> 1.1.5-3mdk
- Added draknet in standalone

* Fri Aug 18 2000 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.5-2mdk
- add requires to modutils >= 2.3.11 because drakgw is reading
  /etc/modules.conf which has been introduced in 2.3.11

* Fri Aug 18 2000 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.5-1mdk
- added `drakgw' in standalone (Internet Connection Sharing tool)

* Fri Aug 11 2000 Pixel <pixel@mandrakesoft.com> 1.1.4-3mdk
- new snapshot

* Thu Aug 10 2000 Pixel <pixel@mandrakesoft.com> 1.1.4-2mdk
- add noreplace for diskdrake.rc

* Thu Aug 10 2000 Pixel <pixel@mandrakesoft.com> 1.1.4-1mdk
- new snapshot

* Mon Aug 07 2000 Frederic Lepied <flepied@mandrakesoft.com> 1.1.3-2mdk
- automatically added BuildRequires

* Fri Jul 21 2000 Pixel <pixel@mandrakesoft.com> 1.1.3-1mdk
- new version, BM

* Wed Jul 05 2000 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.2-2mdk
- build against new libbz2

* Mon Jun 26 2000 Pixel <pixel@mandrakesoft.com> 1.1.2-1mdk
- new version

* Tue Jun 13 2000 Pixel <pixel@mandrakesoft.com> 1.1.1-13mdk
- hopefully fix XFdrake and DDR nvidia cards (silly xfree that is)

* Mon Jun  5 2000 Pixel <pixel@mandrakesoft.com> 1.1.1-12mdk
- fix sbus missing

* Sat Jun  3 2000 Pixel <pixel@mandrakesoft.com> 1.1.1-10mdk
- fix draksec calling init.sh instead of msec

* Thu May 25 2000 Chmouel Boudjnah <chmouel@mandrakesoft.com> 1.1.1-9mdk
- Don't display x86 stuff on drakboot when we are on others arch.

* Thu May 25 2000 François Pons <fpons@mandrakesoft.com> 1.1.1-8mdk
- update with first version for sparc and sparc64.
- fix for printer configuration for SAMBA and NCP (security issue).

* Tue May  9 2000 Pixel <pixel@mandrakesoft.com> 1.1.1-7mdk
- many small fixes (bis)

* Tue May  2 2000 Pixel <pixel@mandrakesoft.com> 1.1.1-6mdk
- many small fixes

* Wed Apr 26 2000 Pixel <pixel@mandrakesoft.com> 1.1.1-5mdk
- new version (fix in adduserdrake, enhance interactive_newt)

* Wed Apr 19 2000 Pixel <pixel@mandrakesoft.com> 1.1.1-4mdk
- llseek works, not lseek64 :(  (need more testing)

* Wed Apr 19 2000 François Pons <fpons@mandrakesoft.com> 1.1.1-3mdk
- updated with CVS of DrakX.

* Fri Mar 31 2000 Pixel <pixel@mandrakesoft.com> 1.1.1-2mdk
- obsoletes setuptool, link setuptool to drakxconf

* Fri Mar 31 2000 Pixel <pixel@mandrakesoft.com> 1.1.1-1mdk
- new version (added drakboot for lilo/grub, XFdrake -xf4 for XFree4)

* Sat Mar 25 2000 Pixel <pixel@mandrakesoft.com> 1.1-1mdk
- new group
- new version

* Wed Jan 12 2000 François PONS <fpons@mandrakesoft.com>
- complete update with DrakX, small fixe on printerdrake again.

* Wed Jan 12 2000 François PONS <fpons@mandrakesoft.com>
- corrected missing generic postscript and text driver for
  printderdrake.

* Wed Jan 12 2000 François PONS <fpons@mandrakesoft.com>
- corrected bad resolution setting in printerdrake.

* Wed Jan 12 2000 François PONS <fpons@mandrakesoft.com>
- fixed print on STDOUT in printerdrake.
- corrected printerdrake against not available drivers in gs.

* Mon Jan 10 2000 Pixel <pixel@mandrakesoft.com>
- new version (bis)
- printerdrake install rhs-printfilters via urpmi if needed

* Fri Jan 07 2000 François PONS <fpons@mandrakesoft.com>
- updated XFdrake and PrinterDrake.

* Fri Jan  7 2000 Pixel <pixel@mandrakesoft.com>
- fixed a bug causing no i18n for rpmdrake
- add require urpmi

* Thu Jan  6 2000 Pixel <pixel@mandrakesoft.com>
- fix an error case in XFdrake

* Tue Jan  4 2000 Pixel <pixel@mandrakesoft.com>
- adduserdrake accept user names on command line
- minor fixes

* Fri Dec 31 1999 Pixel <pixel@mandrakesoft.com>
- 32mdk

* Wed Dec 29 1999 Pixel <pixel@mandrakesoft.com>
- make rpmlint happier
- minor fixes

* Mon Dec 27 1999 Pixel <pixel@mandrakesoft.com>
- better XFdrake and minor fixes

* Fri Dec 24 1999 Pixel <pixel@mandrakesoft.com>
- new version (better adduserdrake and more)
- add /usr/bin/* (for lspcidrake)

* Wed Dec 22 1999 Pixel <pixel@mandrakesoft.com>
- do not try display :0 if DISPLAY is unset

* Mon Dec 20 1999 Pixel <pixel@mandrakesoft.com>
- fixed a bug in drakxservices
- XFdrake now install XFree86 and XFree86-75dpi-fonts if needed
- XFdrake now calls /etc/rc.d/init.d/xfs start if needed
- minor fix

* Sat Dec 18 1999 Pixel <pixel@mandrakesoft.com>
- added kpackage's icons for rpmdrake

* Thu Dec 16 1999 Pixel <pixel@mandrakesoft.com>
- bzip2 .po's
- mount /proc in XFdrake to avoid freeze when called by kudzu
- added Xdrakres

* Thu Dec 16 1999 Chmouel Boudjnah <chmouel@mandrakesoft.com>
- Remove the netdrake ghost.

* Thu Dec 16 1999 Pixel <pixel@mandrakesoft.com>
- fix draksec
- many changes in libDrakX

* Sat Dec 11 1999 Pixel <pixel@mandrakesoft.com>
- adduserdrake added and some more

* Thu Dec  9 1999 Pixel <pixel@linux-mandrake.com>
- added drakxconf, drakxservices
- handle non root via kdesu if X
- warning go to syslog

* Wed Dec  8 1999 Chmouel Boudjnah <chmouel@mandrakesoft.com>
- Add %post and %postun to link redhat tools to our tools.
- Obsoletes: Xconfigurator mouseconfig kbdconfig printtool
- A lots of changes/fix.

* Thu Dec  2 1999 Pixel <pixel@linux-mandrake.com>
- keyboarddrake added, and many changes
- fixed typos

* Fri Nov 26 1999 Pixel <pixel@linux-mandrake.com>
- new version (printerdrake) (did i say lspcidrake was there too?)

* Wed Nov 24 1999 Pixel <pixel@linux-mandrake.com>
- new version
- fixed *.o bundled in the %source

* Sun Nov 21 1999 Pixel <pixel@mandrakesoft.com>
- removed %config for diskdrake.rc (should i?)
- removed xtest from the requires
- added %config for diskdrake.rc (should i?)
- strip .so and ddcxinfos (nice rpmlint :)

* Sat Nov 20 1999 Pixel <pixel@mandrakesoft.com>
- added MonitorsDB to %files (silly me:-!)

* Thu Nov 18 1999 Pixel <pixel@mandrakesoft.com>
- precised the required version for perl-GTK

* Thu Nov 18 1999 Pixel <pixel@mandrakesoft.com>
- First version


# end of file
str">"Valitse maa, jossa olet" #: any.pm:1199 #, c-format msgid "Here is the full list of available countries" msgstr "Lista kaikista käytettävissä olevista maista" #: any.pm:1200 #, c-format msgid "Other Countries" msgstr "Muut maat" #: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444 #, c-format msgid "Advanced" msgstr "Lisäasetukset" #: any.pm:1206 #, c-format msgid "Input method:" msgstr "Syöttömenetelmä:" #: any.pm:1209 #, c-format msgid "None" msgstr "Ei mitään" #: any.pm:1294 #, c-format msgid "No sharing" msgstr "Ei jaettu" # Asennuksen sivuvalikko #: any.pm:1294 #, c-format msgid "Allow all users" msgstr "Salli kaikille käyttäjille" #: any.pm:1294 #, c-format msgid "Custom" msgstr "Mukautettu" #: any.pm:1298 #, 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 "" "Sallitaanko käyttäjien jakaa omia hakemistojaan?\n" "Sallimalla tämän käyttäjien tarvitsee vain painaa \"Jakaminen\"\n" "Konquerorissa tai Nautiluksessa.\n" "\n" "\"Mukautettu\" sallii käyttäjäkohtaiset oikeudet.\n" #: any.pm:1310 #, c-format msgid "" "NFS: the traditional Unix file sharing system, with less support on Mac and " "Windows." msgstr "" "NFS: perinteinen Unix-tiedostonjakojärjestelmä, jota Mac ja Windows tukevat " "huonosti." #: any.pm:1313 #, c-format msgid "" "SMB: a file sharing system used by Windows, Mac OS X and many modern Linux " "systems." msgstr "" "SMB: tiedostonjakojärjestelmä, jota käyttävät Windows, Mac OS X ja monet " "nykyaikaiset Linux-järjestelmät." #: any.pm:1321 #, c-format msgid "" "You can export using NFS or SMB. Please select which you would like to use." msgstr "" "Tiedostoja voidaan jakaa sekä NFS:llä että Samballa. Valitse kumpaa " "käytetään." #: any.pm:1349 #, c-format msgid "Launch userdrake" msgstr "Käynnistä Userdrake" #: any.pm:1351 #, c-format msgid "" "The per-user sharing uses the group \"fileshare\". \n" "You can use userdrake to add a user to this group." msgstr "" "Käyttäjäkohtainen jako käyttää ryhmää \"fileshare\".\n" "Käyttäjä voidaan lisätä ryhmään Userdrake:n avulla." #: any.pm:1458 #, c-format msgid "" "You need to logout and back in again for changes to take effect. Press OK to " "logout now." msgstr "" "Muutosten ottaminen käyttöön vaatii uloskirjautumisen. Valitse OK " "kirjautuaksesi ulos." #: any.pm:1462 #, c-format msgid "You need to log out and back in again for changes to take effect" msgstr "Muutosten ottaminen käyttöön vaatii uloskirjautumisen." #: any.pm:1497 #, c-format msgid "Timezone" msgstr "Aikavyöhyke" #: any.pm:1497 #, c-format msgid "Which is your timezone?" msgstr "Valitse järjestelmän aikavyöhyke" #: any.pm:1520 any.pm:1522 #, c-format msgid "Date, Clock & Time Zone Settings" msgstr "Päivämäärän, kellonajan ja aikavyöhykkeen asetukset" #: any.pm:1523 #, c-format msgid "What is the best time?" msgstr "Valitse aika, joka on lähimpänä oikeata aikaa" #: any.pm:1527 #, c-format msgid "%s (hardware clock set to UTC)" msgstr "%s (laitteistokello UTC-ajassa)" #: any.pm:1528 #, c-format msgid "%s (hardware clock set to local time)" msgstr "%s (laitteistokello paikallisessa ajassa)" #: any.pm:1530 #, c-format msgid "NTP Server" msgstr "NTP-palvelin" #: any.pm:1531 #, c-format msgid "Automatic time synchronization (using NTP)" msgstr "Automaattinen kellon tahdistus NTP:n avulla" #: authentication.pm:24 #, c-format msgid "Local file" msgstr "Paikallinen tiedosto" #: authentication.pm:25 #, c-format msgid "LDAP" msgstr "LDAP" #: authentication.pm:26 #, c-format msgid "NIS" msgstr "NIS" #: authentication.pm:27 #, c-format msgid "Smart Card" msgstr "Älykortti" #: authentication.pm:28 authentication.pm:215 #, c-format msgid "Windows Domain" msgstr "Windows-toimialue" #: authentication.pm:29 #, c-format msgid "Kerberos 5" msgstr "Kerberos 5" #: authentication.pm:65 #, c-format msgid "Local file:" msgstr "Paikallinen tiedosto:" #: authentication.pm:65 #, c-format msgid "" "Use local for all authentication and information user tell in local file" msgstr "Käytetään paikallista tiedostoa käyttäjien tunnistautumiseen." #: authentication.pm:66 #, c-format msgid "LDAP:" msgstr "LDAP:" #: authentication.pm:66 #, c-format msgid "" "Tells your computer to use LDAP for some or all authentication. LDAP " "consolidates certain types of information within your organization." msgstr "Käytetään LDAP:ia osaan tai kaikkeen tunnistautumiseen." #: authentication.pm:67 #, c-format msgid "NIS:" msgstr "NIS:" #: authentication.pm:67 #, c-format msgid "" "Allows you to run a group of computers in the same Network Information " "Service domain with a common password and group file." msgstr "" "Käytetään yhteistä salasana- ja ryhmätiedostoa samaan NIS-toimialueeseen " "kuuluvien käyttäjien tunnistautumiseen." #: authentication.pm:68 #, c-format msgid "Windows Domain:" msgstr "Windows-toimialue:" #: authentication.pm:68 #, c-format msgid "" "Winbind allows the system to retrieve information and authenticate users in " "a Windows domain." msgstr "Noudetaan käyttäjien tunnistautumistiedot Windows-toimialueelta." #: authentication.pm:69 #, c-format msgid "Kerberos 5 :" msgstr "Kerberos 5:" #: authentication.pm:69 #, c-format msgid "With Kerberos and LDAP for authentication in Active Directory Server " msgstr "Active Directory -tunnistautuminen Kerberoksen ja LDAP:n avulla." #: authentication.pm:106 authentication.pm:140 authentication.pm:159 #: authentication.pm:160 authentication.pm:186 authentication.pm:210 #: authentication.pm:865 #, c-format msgid " " msgstr " " #: authentication.pm:107 authentication.pm:141 authentication.pm:187 #: authentication.pm:211 #, c-format msgid "Welcome to the Authentication Wizard" msgstr "Tunnistautumisvelho" #: authentication.pm:109 #, c-format msgid "" "You have selected LDAP authentication. Please review the configuration " "options below " msgstr "" "Valittiin LDAP-tunnistautuminen.\n" "\n" "Muokkaa alla olevia asetuksia." #: authentication.pm:111 authentication.pm:166 #, c-format msgid "LDAP Server" msgstr "LDAP-palvelin" # Vaatii tarkastusta #: authentication.pm:112 authentication.pm:167 #, c-format msgid "Base dn" msgstr "Base dn" # Vaatii tarkastusta #: authentication.pm:113 #, c-format msgid "Fetch base Dn " msgstr "Nouda Base Dn " #: authentication.pm:115 authentication.pm:170 #, c-format msgid "Use encrypt connection with TLS " msgstr "Käytä TLS-salattua yhteyttä " #: authentication.pm:116 authentication.pm:171 #, c-format msgid "Download CA Certificate " msgstr "Lataa CA-sertifikaatti " #: authentication.pm:118 authentication.pm:151 #, c-format msgid "Use Disconnect mode " msgstr "Käytä \"Disconnected\"-tyyppistä yhteyttä " #: authentication.pm:119 authentication.pm:172 #, c-format msgid "Use anonymous BIND " msgstr "Käytä anonyymiä kiinnitystä " #: authentication.pm:120 authentication.pm:123 authentication.pm:125 #: authentication.pm:129 #, c-format msgid " " msgstr " " # Vaatii tarkastusta #: authentication.pm:121 authentication.pm:173 #, c-format msgid "Bind DN " msgstr "Kiinnitä DN " # Vaatii tarkastusta #: authentication.pm:122 authentication.pm:174 #, c-format msgid "Bind Password " msgstr "Kiinnityksen salasana " # Vaatii tarkastusta #: authentication.pm:124 #, c-format msgid "Advanced path for group " msgstr "Ryhmän polku " # Vaatii tarkastusta #: authentication.pm:126 #, c-format msgid "Password base" msgstr "Password base" # Vaatii tarkastusta #: authentication.pm:127 #, c-format msgid "Group base" msgstr "Group base" # Vaatii tarkastusta #: authentication.pm:128 #, c-format msgid "Shadow base" msgstr "Shadow base" #: authentication.pm:143 #, c-format msgid "" "You have selected Kerberos 5 authentication. Please review the configuration " "options below " msgstr "" "Valittiin Kerberos 5-tunnistautuminen.\n" "\n" "Muokkaa alla olevia asetuksia." #: authentication.pm:145 #, c-format msgid "Realm " msgstr "Kerberos-valtuusalue " #: authentication.pm:147 #, c-format msgid "KDCs Servers" msgstr "KDC-palvelimet" #: authentication.pm:149 #, c-format msgid "Use DNS to locate KDC for the realm" msgstr "Käytä nimipalvelinta selvittämään valtuusalueiden KDC-palvelimet" #: authentication.pm:150 #, c-format msgid "Use DNS to locate realms" msgstr "Käytä nimipalvelinta valtuusalueiden paikallistamiseen" #: authentication.pm:155 #, c-format msgid "Use local file for users information" msgstr "Hae käyttäjätiedot paikallisesta tiedostosta" #: authentication.pm:156 #, c-format msgid "Use LDAP for users information" msgstr "Käytä LDAP:ia käyttäjätietojen hakemiseen" #: authentication.pm:162 #, c-format msgid "" "You have selected Kerberos 5 for authentication, now you must choose the " "type of users information " msgstr "" "Valittiin Kerberos 5-tunnistautuminen, valitse myös käyttäjätietojen tyyppi " # Vaatii tarkastusta #: authentication.pm:168 #, c-format msgid "Fecth base Dn " msgstr "Nouda Base Dn " #: authentication.pm:189 #, c-format msgid "" "You have selected NIS authentication. Please review the configuration " "options below " msgstr "" "Valittiin NIS-tunnistautuminen.\n" "\n" "Muokkaa alla olevia asetuksia." #: authentication.pm:191 #, c-format msgid "NIS Domain" msgstr "NIS-toimialue" #: authentication.pm:192 #, c-format msgid "NIS Server" msgstr "NIS-palvelin" #: authentication.pm:213 #, c-format msgid "" "You have selected Windows Domain authentication. Please review the " "configuration options below " msgstr "" "Valittiin tunnistautumisen Windows-toimialueen avulla.\n" "\n" "Muokkaa alla olevia asetuksia." #: authentication.pm:217 #, c-format msgid "Domain Model " msgstr "Toimialueen tyyppi " #: authentication.pm:219 #, c-format msgid "Active Directory Realm " msgstr "Active Directory Realm " #: authentication.pm:220 #, c-format msgid "DNS Domain" msgstr "DNS-toimialue" #: authentication.pm:221 #, c-format msgid "DC Server" msgstr "Toimialueen ohjauskone" #: authentication.pm:235 authentication.pm:251 #, c-format msgid "Authentication" msgstr "Tunnistautuminen" #: authentication.pm:237 #, c-format msgid "Authentication method" msgstr "Tunnistautumistapa" #. -PO: keep this short or else the buttons will not fit in the window #: authentication.pm:242 #, c-format msgid "No password" msgstr "Ei salasanaa" #: authentication.pm:263 #, c-format msgid "This password is too short (it must be at least %d characters long)" msgstr "Salasana on liian lyhyt, sen tulee olla vähintään %d merkkiä pitkä." #: authentication.pm:373 #, c-format msgid "Cannot use broadcast with no NIS domain" msgstr "Kuulutusta ei voida käyttää ilman NIS-toimialuetta" #: authentication.pm:860 #, c-format msgid "Select file" msgstr "Valitse tiedosto" #: authentication.pm:866 #, c-format msgid "Domain Windows for authentication : " msgstr "Windows-toimialue tunnistautumista varten: " #: authentication.pm:868 #, c-format msgid "Domain Admin User Name" msgstr "Toimialueen pääkäyttäjän käyttäjätunnus" #: authentication.pm:869 #, c-format msgid "Domain Admin Password" msgstr "Toimialueen pääkäyttäjän salasana" # NOTE: this message will be displayed at boot time; that is # only the ascii charset will be available on most machines # so use only 7bit for this message (and do transliteration or # leave it in English, as it is the best for your language) # #. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit) #: bootloader.pm:1112 #, c-format msgid "" "Welcome to the operating system chooser!\n" "\n" "Choose an operating system from the list above or\n" "wait for default boot.\n" "\n" msgstr "" "Tervetuloa kayttojarjestelman valitsijaan!\n" "\n" "Valitse kayttojarjestelma ylla olevasta listasta tai\n" "odota oletuskaynnistysta.\n" "\n" #: bootloader.pm:1277 #, c-format msgid "LILO with text menu" msgstr "LILO tekstipohjaisella valikolla" #: bootloader.pm:1278 #, fuzzy, c-format msgid "GRUB2 with graphical menu" msgstr "GRUB graafisella valikolla" #: bootloader.pm:1279 #, c-format msgid "GRUB with graphical menu" msgstr "GRUB graafisella valikolla" #: bootloader.pm:1280 #, c-format msgid "GRUB with text menu" msgstr "GRUB tekstipohjaisella valikolla" #: bootloader.pm:1335 #, c-format msgid "not enough room in /boot" msgstr "/boot-osiolla tai -hakemistossa ei ole tarpeeksi vapaata tilaa" #: bootloader.pm:2103 #, c-format msgid "You cannot install the bootloader on a %s partition\n" msgstr "Käyttöjärjestelmän lataajaa ei voida asentaa osiolle %s\n" #: bootloader.pm:2278 #, c-format msgid "" "Your bootloader configuration must be updated because partition has been " "renumbered" msgstr "" "Käynnistyslataimen asetukset pitää päivittää, koska levyosiot on numeroitu " "uudelleen" #: bootloader.pm:2291 #, c-format msgid "" "The bootloader cannot be installed correctly. You have to boot rescue and " "choose \"%s\"" msgstr "" "Käynnistyslatainta ei voida asentaa oikein. Tietokone täytyy käynnistää " "rescue-tilaan ja valita \"%s\"" # Asennuksen sivuvalikko #: bootloader.pm:2292 #, c-format msgid "Re-install Boot Loader" msgstr "Asenna käynnistyslatain uudelleen" #: common.pm:271 #, c-format msgid "B" msgstr "t" #: common.pm:271 #, c-format msgid "KB" msgstr "kt" #: common.pm:271 #, c-format msgid "MB" msgstr "Mt" #: common.pm:271 #, c-format msgid "GB" msgstr "Gt" #: common.pm:271 common.pm:280 #, c-format msgid "TB" msgstr "Tt" #: common.pm:288 #, c-format msgid "%d minutes" msgstr "%d minuuttia" #: common.pm:290 #, c-format msgid "1 minute" msgstr "1 minuutti" #: common.pm:292 #, c-format msgid "%d seconds" msgstr "%d sekuntia" #: diskdrake/dav.pm:17 #, c-format msgid "" "WebDAV is a protocol that allows you to mount a web server's directory\n" "locally, and treat it like a local filesystem (provided the web server is\n" "configured as a WebDAV server). If you would like to add WebDAV mount\n" "points, select \"New\"." msgstr "" "WebDAV on protokolla, joka sallii WWW-palvelimen hakemiston liittämisen\n" "paikallisesti ja sen käyttämisen paikallisena tiedostojärjestelmänä " "(olettaen,\n" "että WWW-palvelimeen on asennettu WebDAV-tuki). Jos haluat lisätä WebDAV\n" "-liitoskohdan, valitse \"Uusi\"." #: diskdrake/dav.pm:25 #, c-format msgid "New" msgstr "Uusi" #: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75 #, c-format msgid "Unmount" msgstr "Irrota" #: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76 #, c-format msgid "Mount" msgstr "Liitä" #: diskdrake/dav.pm:65 #, c-format msgid "Server" msgstr "Palvelin" #: diskdrake/dav.pm:66 diskdrake/interactive.pm:408 #: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737 #: diskdrake/interactive.pm:741 diskdrake/removable.pm:23 #: diskdrake/smbnfs_gtk.pm:79 #, c-format msgid "Mount point" msgstr "Liitospiste" #: diskdrake/dav.pm:67 diskdrake/interactive.pm:410 #: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24 #: diskdrake/smbnfs_gtk.pm:80 #, c-format msgid "Options" msgstr "Valinnat" #: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456 #, c-format msgid "Remove" msgstr "Poista" #: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26 #: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151 #, c-format msgid "Done" msgstr "Valmis" #: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320 #: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258 #: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527 #: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550 #: diskdrake/interactive.pm:709 diskdrake/interactive.pm:1012 #: diskdrake/interactive.pm:1064 diskdrake/interactive.pm:1221 #: diskdrake/interactive.pm:1234 diskdrake/interactive.pm:1237 #: diskdrake/interactive.pm:1502 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:49 #: do_pkgs.pm:54 do_pkgs.pm:79 do_pkgs.pm:103 do_pkgs.pm:108 do_pkgs.pm:142 #: fsedit.pm:256 interactive/http.pm:117 interactive/http.pm:118 #: modules/interactive.pm:19 scanner.pm:94 scanner.pm:105 scanner.pm:112 #: scanner.pm:119 wizards.pm:95 wizards.pm:99 wizards.pm:121 #, c-format msgid "Error" msgstr "Virhe" #: diskdrake/dav.pm:86 #, c-format msgid "Please enter the WebDAV server URL" msgstr "Anna WebDAV-palvelimen osoite (URL)" #: diskdrake/dav.pm:90 #, c-format msgid "The URL must begin with http:// or https://" msgstr "Osoitteen tulee alkaa etuliitteellä http:// tai https://" #: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304 #: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597 #: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877 #: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086 #: diskdrake/interactive.pm:1087 diskdrake/interactive.pm:1321 #: diskdrake/interactive.pm:1359 diskdrake/interactive.pm:1501 do_pkgs.pm:45 #: do_pkgs.pm:74 do_pkgs.pm:100 do_pkgs.pm:137 #, c-format msgid "Warning" msgstr "Varoitus" #: diskdrake/dav.pm:106 #, c-format msgid "Are you sure you want to delete this mount point?" msgstr "Haluatko varmasti poistaa liitospisteen?" #: diskdrake/dav.pm:124 #, c-format msgid "Server: " msgstr "Palvelin: " #: diskdrake/dav.pm:125 diskdrake/interactive.pm:501 #: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462 #, c-format msgid "Mount point: " msgstr "Liitospiste: " #: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469 #, c-format msgid "Options: %s" msgstr "Vaihtoehdot: %s" #: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299 #: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113 #: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243 #: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286 #: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495 #: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581 #, c-format msgid "Partitioning" msgstr "Osiointi" #: diskdrake/hd_gtk.pm:74 #, c-format msgid "Click on a partition, choose a filesystem type then choose an action" msgstr "" "Valitse ensin osio, käytettävä tiedostojärjestelmä ja tämän jälkeen " "tarvittavat toimenpiteet" #: diskdrake/hd_gtk.pm:125 diskdrake/interactive.pm:1194 #: diskdrake/interactive.pm:1204 diskdrake/interactive.pm:1259 #, c-format msgid "Read carefully" msgstr "HUOM!" #: diskdrake/hd_gtk.pm:125 #, c-format msgid "Please make a backup of your data first" msgstr "Luo ensin varmuuskopio tiedoistasi" #: diskdrake/hd_gtk.pm:126 diskdrake/interactive.pm:238 #, c-format msgid "Exit" msgstr "Poistu" #: diskdrake/hd_gtk.pm:126 #, c-format msgid "Continue" msgstr "Jatka" #: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778 #: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862 #: ugtk2.pm:936 ugtk3.pm:1034 #, c-format msgid "Help" msgstr "Ohje" #: diskdrake/hd_gtk.pm:255 #, 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 "" "Löytyi yksi suuri Microsoft Windows -osio.\n" "Ehdotan, että ensimmäiseksi muutetaan osion kokoa\n" "(napsauta osiota ja valitse \"Muuta kokoa\")." #: diskdrake/hd_gtk.pm:257 #, c-format msgid "Please click on a partition" msgstr "Napsauta osiota" #: diskdrake/hd_gtk.pm:271 diskdrake/smbnfs_gtk.pm:63 #, c-format msgid "Details" msgstr "Yksityiskohdat" #: diskdrake/hd_gtk.pm:320 #, c-format msgid "No hard disk drives found" msgstr "Yhtään kiintolevyä ei löytynyt" #: diskdrake/hd_gtk.pm:357 #, c-format msgid "Unknown" msgstr "Tuntematon" #: diskdrake/hd_gtk.pm:424 #, c-format msgid "Ext4" msgstr "Ext4" #: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402 #, c-format msgid "XFS" msgstr "XFS" #: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402 #, c-format msgid "Swap" msgstr "Sivutus" #: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402 #, c-format msgid "Windows" msgstr "Windows" #: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195 #, c-format msgid "Other" msgstr "Muut" #: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389 #: fs/partitioning_wizard.pm:403 #, c-format msgid "Empty" msgstr "Tyhjä" #: diskdrake/hd_gtk.pm:432 #, c-format msgid "Filesystem types:" msgstr "Tiedostojärjestelmät:" #: diskdrake/hd_gtk.pm:453 #, c-format msgid "This partition is already empty" msgstr "Osio on jo tyhjä" #: diskdrake/hd_gtk.pm:462 #, c-format msgid "Use ``Unmount'' first" msgstr "Käytä ensin komentoa \"Irrota\"" #: diskdrake/hd_gtk.pm:462 #, c-format msgid "Use ``%s'' instead (in expert mode)" msgstr "Käytä sen sijaan sovellusta %s (asiantuntijatilassa)" #: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409 #: diskdrake/interactive.pm:636 diskdrake/removable.pm:25 #: diskdrake/removable.pm:48 #, c-format msgid "Type" msgstr "Tyyppi" #: diskdrake/interactive.pm:209 #, c-format msgid "Choose another partition" msgstr "Valitse toinen osio" #: diskdrake/interactive.pm:209 #, c-format msgid "Choose a partition" msgstr "Valitse osio" #: diskdrake/interactive.pm:271 diskdrake/interactive.pm:382 #: interactive/curses.pm:532 #, c-format msgid "More" msgstr "Lisää" #: diskdrake/interactive.pm:279 diskdrake/interactive.pm:292 #: diskdrake/interactive.pm:1305 mygtk2.pm:1228 mygtk3.pm:1282 #, c-format msgid "Confirmation" msgstr "Vahvistaminen" #: diskdrake/interactive.pm:279 #, c-format msgid "Continue anyway?" msgstr "Jatka joka tapauksessa?" #: diskdrake/interactive.pm:284 #, c-format msgid "Quit without saving" msgstr "Lopeta tallentamatta" #: diskdrake/interactive.pm:284 #, c-format msgid "Quit without writing the partition table?" msgstr "Lopeta kirjoittamatta osiotaulua?" #: diskdrake/interactive.pm:292 #, c-format msgid "Do you want to save the /etc/fstab modifications?" msgstr "Tallennetaanko muutokset tiedostoon /etc/fstab" #: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286 #, c-format msgid "You need to reboot for the partition table modifications to take effect" msgstr "" "Järjestelmä tulee käynnistää uudelleen osiotaulun muutosten toteuttamiseksi" #: diskdrake/interactive.pm:304 #, c-format msgid "" "You should format partition %s.\n" "Otherwise no entry for mount point %s will be written in fstab.\n" "Quit anyway?" msgstr "" "Osio %s tulisi alustaa.\n" "Muuten fstabiin ei kirjoiteta merkintää liitoskohdasta %s.\n" "Lopeta joka tapauksessa?" #: diskdrake/interactive.pm:317 #, c-format msgid "Clear all" msgstr "Tyhjennä kaikki" #: diskdrake/interactive.pm:318 #, c-format msgid "Auto allocate" msgstr "Automaattinen varaus" #: diskdrake/interactive.pm:324 #, c-format msgid "Toggle to normal mode" msgstr "Vaihda vakiotilaan" #: diskdrake/interactive.pm:324 #, c-format msgid "Toggle to expert mode" msgstr "Vaihda asiantuntijatilaan" #: diskdrake/interactive.pm:336 #, c-format msgid "Hard disk drive information" msgstr "Kiintolevyn tiedot" #: diskdrake/interactive.pm:371 #, c-format msgid "All primary partitions are used" msgstr "Kaikki ensisijaiset osiot on käytetty" #: diskdrake/interactive.pm:372 #, c-format msgid "I cannot add any more partitions" msgstr "Uusia osioita ei voida lisätä" #: diskdrake/interactive.pm:373 #, c-format msgid "" "To have more partitions, please delete one to be able to create an extended " "partition" msgstr "" "Uusien osioiden luomiseksi on tuhottava yksi olemassa oleva osio " "(laajennetun osion luomiseksi)" #: diskdrake/interactive.pm:384 #, c-format msgid "Reload partition table" msgstr "Lataa osiotaulu uudelleen" #: diskdrake/interactive.pm:391 #, c-format msgid "Detailed information" msgstr "Yksityiskohtaiset tiedot" #: diskdrake/interactive.pm:407 #, c-format msgid "View" msgstr "Näytä" #: diskdrake/interactive.pm:412 diskdrake/interactive.pm:825 #, c-format msgid "Resize" msgstr "Muuta kokoa" #: diskdrake/interactive.pm:413 #, c-format msgid "Format" msgstr "Alusta" #: diskdrake/interactive.pm:415 diskdrake/interactive.pm:975 #, c-format msgid "Add to RAID" msgstr "Lisää RAIDiin" #: diskdrake/interactive.pm:416 diskdrake/interactive.pm:994 #, c-format msgid "Add to LVM" msgstr "Lisää LVM:ään" #: diskdrake/interactive.pm:417 #, c-format msgid "Use" msgstr "Käytä" #: diskdrake/interactive.pm:419 #, c-format msgid "Delete" msgstr "Poista" #: diskdrake/interactive.pm:420 #, c-format msgid "Remove from RAID" msgstr "Poista RAIDista" #: diskdrake/interactive.pm:421 #, c-format msgid "Remove from LVM" msgstr "Poista LVM:stä" #: diskdrake/interactive.pm:422 #, c-format msgid "Remove from dm" msgstr "Poista dm:stä" #: diskdrake/interactive.pm:423 #, c-format msgid "Modify RAID" msgstr "Muokkaa RAID:ia" #: diskdrake/interactive.pm:424 #, c-format msgid "Use for loopback" msgstr "Käytä loopback-tiedostoa" #: diskdrake/interactive.pm:434 #, c-format msgid "Create" msgstr "Luo" #: diskdrake/interactive.pm:456 #, c-format msgid "Failed to mount partition" msgstr "Osion liittäminen epäonnistui" #: diskdrake/interactive.pm:490 diskdrake/interactive.pm:492 #, c-format msgid "Create a new partition" msgstr "Luo uusi osio" #: diskdrake/interactive.pm:494 #, c-format msgid "Start sector: " msgstr "Aloitussektori: " #: diskdrake/interactive.pm:497 diskdrake/interactive.pm:1079 #, c-format msgid "Size in MB: " msgstr "Koko Mt: " #: diskdrake/interactive.pm:499 diskdrake/interactive.pm:1080 #, c-format msgid "Filesystem type: " msgstr "Tiedostojärjestelmä: " #: diskdrake/interactive.pm:505 #, c-format msgid "Preference: " msgstr "Ominaisuus: " #: diskdrake/interactive.pm:508 #, c-format msgid "Logical volume name " msgstr "Loogisen taltion nimi " #: diskdrake/interactive.pm:510 #, c-format msgid "Encrypt partition" msgstr "Salaa osio" #: diskdrake/interactive.pm:511 #, c-format msgid "Encryption key " msgstr "Salausavain" #: diskdrake/interactive.pm:512 diskdrake/interactive.pm:1506 #, c-format msgid "Encryption key (again)" msgstr "Salausavain (uudelleen)" #: diskdrake/interactive.pm:524 diskdrake/interactive.pm:1502 #, c-format msgid "The encryption keys do not match" msgstr "Salausavaimet eivät täsmää" #: diskdrake/interactive.pm:525 #, c-format msgid "Missing encryption key" msgstr "Salausavain puuttuu" #: diskdrake/interactive.pm:545 #, c-format msgid "" "You cannot 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 "" "Uutta osiota ei voi luoda.\n" "(Koska maksimimäärä ensisijaisia osioita on jo olemassa).\n" "Ensin on poistettava yksi ensisijainen osio ja luotava tilalle laajennettu " "osio." # mat #: diskdrake/interactive.pm:597 #, c-format msgid "Remove the loopback file?" msgstr "Poista loopback-tiedosto?" # mat #: diskdrake/interactive.pm:617 #, c-format msgid "" "After changing type of partition %s, all data on this partition will be lost" msgstr "Osion %s tyypin vaihtamisen jälkeen kaikki sen tiedot tuhoutuvat" #: diskdrake/interactive.pm:633 #, c-format msgid "Change partition type" msgstr "Muuta osiotyyppiä" #: diskdrake/interactive.pm:635 diskdrake/removable.pm:47 #, c-format msgid "Which filesystem do you want?" msgstr "Valitse tiedostojärjestelmä" #: diskdrake/interactive.pm:642 #, c-format msgid "Switching from %s to %s" msgstr "Vaihdetaan %s tiedostojärjestelmään %s" #: diskdrake/interactive.pm:677 #, c-format msgid "Set volume label" msgstr "Anna taltion nimi" #: diskdrake/interactive.pm:679 #, c-format msgid "Beware, this will be written to disk as soon as you validate!" msgstr "HUOM! Tiedot kirjoitetaan levylle heti hyväksymisen jälkeen!" #: diskdrake/interactive.pm:680 #, c-format msgid "Beware, this will be written to disk only after formatting!" msgstr "HUOM! Tiedot kirjoitetaan levylle vasta alustamisen jälkeen!" #: diskdrake/interactive.pm:682 #, c-format msgid "Which volume label?" msgstr "Mikä taltio?" #: diskdrake/interactive.pm:683 #, c-format msgid "Label:" msgstr "Nimi:" # mat #: diskdrake/interactive.pm:704 #, c-format msgid "Where do you want to mount the loopback file %s?" msgstr "Minne loopback-tiedosto %s liitetään?" #: diskdrake/interactive.pm:705 #, c-format msgid "Where do you want to mount device %s?" msgstr "Minne laite %s liitetään?" #: diskdrake/interactive.pm:710 #, c-format msgid "" "Cannot unset mount point as this partition is used for loop back.\n" "Remove the loopback first" msgstr "" "Liitospistettä ei voida poistaa, koska osiota käytetään loopback-tilassa.\n" "Loopback-tiedosto on poistettava ensin." #: diskdrake/interactive.pm:740 #, c-format msgid "Where do you want to mount %s?" msgstr "Minne laite %s liitetään?" #: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866 #: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212 #, c-format msgid "Resizing" msgstr "Muutetaan kokoa" #: diskdrake/interactive.pm:770 #, c-format msgid "Computing FAT filesystem bounds" msgstr "Lasketaan FAT-tiedostojärjestelmän rajoja" #: diskdrake/interactive.pm:812 #, c-format msgid "This partition is not resizeable" msgstr "Osion kokoa ei voi muuttaa" #: diskdrake/interactive.pm:817 #, c-format msgid "All data on this partition should be backed up" msgstr "Kaikki osion tiedot tulisi varmuuskopioida" # mat #: diskdrake/interactive.pm:819 #, c-format msgid "After resizing partition %s, all data on this partition will be lost" msgstr "Osion %s koon muuttamisen jälkeen kaikki osion tiedot tuhoutuvat" #: diskdrake/interactive.pm:826 #, c-format msgid "Choose the new size" msgstr "Valitse uusi koko" #: diskdrake/interactive.pm:827 #, c-format msgid "New size in MB: " msgstr "Uusi koko (Mt): " #: diskdrake/interactive.pm:828 #, c-format msgid "Minimum size: %s MB" msgstr "Minimikoko: %s Mt" #: diskdrake/interactive.pm:829 #, c-format msgid "Maximum size: %s MB" msgstr "Maksimikoko: %s Mt" #: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220 #, c-format msgid "" "To ensure data integrity after resizing the partition(s),\n" "filesystem checks will be run on your next boot into Microsoft Windows®" msgstr "" "Tietojen yhtenäisyyden varmistamiseksi osion tai osioiden koon\n" "muuttamisen jälkeen suoritetaan tiedostojärjestelmän tarkistus,\n" "kun Windows käynnistetään seuraavan kerran." #: diskdrake/interactive.pm:943 diskdrake/interactive.pm:1497 #, c-format msgid "Filesystem encryption key" msgstr "Tiedostojärjestelmän salausavain" #: diskdrake/interactive.pm:944 #, c-format msgid "Enter your filesystem encryption key" msgstr "Anna tiedostojärjestelmän salausavain" #: diskdrake/interactive.pm:945 diskdrake/interactive.pm:1505 #, c-format msgid "Encryption key" msgstr "Salausavain" #: diskdrake/interactive.pm:952 #, c-format msgid "Invalid key" msgstr "Virheellinen avain" #: diskdrake/interactive.pm:975 #, c-format msgid "Choose an existing RAID to add to" msgstr "Valitse RAID-laite tai luo uusi" #: diskdrake/interactive.pm:977 diskdrake/interactive.pm:996 #, c-format msgid "new" msgstr "Uusi" #: diskdrake/interactive.pm:994 #, c-format msgid "Choose an existing LVM to add to" msgstr "Valitse taltioryhmä tai luo uusi" #: diskdrake/interactive.pm:1006 diskdrake/interactive.pm:1015 #, c-format msgid "LVM name" msgstr "Taltioryhmän nimi" #: diskdrake/interactive.pm:1007 #, c-format msgid "Enter a name for the new LVM volume group" msgstr "Anna uuden LVM-taltioryhmän nimi" #: diskdrake/interactive.pm:1012 #, c-format msgid "\"%s\" already exists" msgstr "%s on jo olemassa" #: diskdrake/interactive.pm:1044 #, c-format msgid "" "Physical volume %s is still in use.\n" "Do you want to move used physical extents on this volume to other volumes?" msgstr "" "Fyysinen levy %s on vielä käytössä.\n" "Siirretäänkö käytetyt fyysiset jatkeet muille levyille?" #: diskdrake/interactive.pm:1046 #, c-format msgid "Moving physical extents" msgstr "Siirretään fyysisiä jatkeita" #: diskdrake/interactive.pm:1064 #, c-format msgid "This partition cannot be used for loopback" msgstr "Osiota ei voida käyttää loopback-osiona" #: diskdrake/interactive.pm:1077 #, c-format msgid "Loopback" msgstr "Loopback" #: diskdrake/interactive.pm:1078 #, c-format msgid "Loopback file name: " msgstr "Loopback-tiedoston nimi: " #: diskdrake/interactive.pm:1083 #, c-format msgid "Give a file name" msgstr "Anna tiedostonimi" #: diskdrake/interactive.pm:1086 #, c-format msgid "File is already used by another loopback, choose another one" msgstr "Tiedosto on jo toisen loopback:n käytössä, valitse toinen" #: diskdrake/interactive.pm:1087 #, c-format msgid "File already exists. Use it?" msgstr "Tiedosto on jo olemassa. Käytetäänkö sitä?" #: diskdrake/interactive.pm:1119 diskdrake/interactive.pm:1122 #, c-format msgid "Mount options" msgstr "Liitosasetukset" #: diskdrake/interactive.pm:1129 #, c-format msgid "Various" msgstr "Lisäasetukset" #: diskdrake/interactive.pm:1175 #, c-format msgid "device" msgstr "RAID-laite" #: diskdrake/interactive.pm:1176 #, c-format msgid "level" msgstr "RAID-taso" #: diskdrake/interactive.pm:1177 #, c-format msgid "chunk size in KiB" msgstr "Lohkon koko (kt)" #: diskdrake/interactive.pm:1195 #, c-format msgid "Be careful: this operation is dangerous." msgstr "Varoitus! Kyseessä on vaarallinen toimenpide." #: diskdrake/interactive.pm:1212 #, c-format msgid "Partitioning Type" msgstr "Osiointitapa" #: diskdrake/interactive.pm:1212 #, c-format msgid "What type of partitioning?" msgstr "Valitse osiointitapa" #: diskdrake/interactive.pm:1250 #, c-format msgid "You'll need to reboot before the modification can take effect" msgstr "Kone täytyy käynnistää uudelleen, jotta muutos tulee voimaan" #: diskdrake/interactive.pm:1259 #, c-format msgid "Partition table of drive %s is going to be written to disk" msgstr "Levyn %s osiotaulu kirjoitetaan levylle" #: diskdrake/interactive.pm:1278 fs/format.pm:107 fs/format.pm:114 #, c-format msgid "Formatting partition %s" msgstr "Alustetaan osiota %s" # mat #: diskdrake/interactive.pm:1291 #, c-format msgid "After formatting partition %s, all data on this partition will be lost" msgstr "Kaikki osiolla %s olevat tiedot häviävät osion alustuksen yhteydessä" #: diskdrake/interactive.pm:1305 fs/partitioning.pm:48 #, c-format msgid "Check for bad blocks?" msgstr "Tarkistetaanko vialliset lohkot?" #: diskdrake/interactive.pm:1320 #, c-format msgid "Move files to the new partition" msgstr "Siirrä tiedostot uudelle osiolle" #: diskdrake/interactive.pm:1320 #, c-format msgid "Hide files" msgstr "Piilota tiedostot" #: diskdrake/interactive.pm:1321 #, c-format msgid "" "Directory %s already contains data\n" "(%s)\n" "\n" "You can either choose to move the files into the partition that will be " "mounted there or leave them where they are (which results in hiding them by " "the contents of the mounted partition)" msgstr "" "Hakemisto %s sisältää jo tiedot\n" "(%s)\n" "\n" "Tiedostot voidaan siirtää osiolle, joka liitetään kyseiseen sijaintiin tai " "tiedostot voidaan jättää entiseen sijaintiinsa (jonka seurauksena " "liitettävän osion tiedot piilottavat ne)" #: diskdrake/interactive.pm:1336 #, c-format msgid "Moving files to the new partition" msgstr "Siirretään tiedostoja uudelle osiolle" #: diskdrake/interactive.pm:1340 #, c-format msgid "Copying %s" msgstr "Kopioidaan %s" #: diskdrake/interactive.pm:1344 #, c-format msgid "Removing %s" msgstr "Poistetaan %s" #: diskdrake/interactive.pm:1358 #, c-format msgid "partition %s is now known as %s" msgstr "osio %s tunnetaan nyt nimellä %s" #: diskdrake/interactive.pm:1359 #, c-format msgid "Partitions have been renumbered: " msgstr "Osiot numeroitiin uudelleen: " #: diskdrake/interactive.pm:1384 diskdrake/interactive.pm:1446 #, c-format msgid "Device: " msgstr "Laite: " #: diskdrake/interactive.pm:1385 #, c-format msgid "Volume label: " msgstr "Osion nimi: " #: diskdrake/interactive.pm:1386 #, c-format msgid "UUID: " msgstr "UUID: " #: diskdrake/interactive.pm:1387 #, c-format msgid "DOS drive letter: %s (just a guess)\n" msgstr "DOS-kirjaintunnus: %s (vain arvaus)\n" #: diskdrake/interactive.pm:1391 diskdrake/interactive.pm:1465 #, c-format msgid "Type: " msgstr "Tyyppi: " #: diskdrake/interactive.pm:1393 #, c-format msgid "Start: sector %s\n" msgstr "Alku: sektori %s\n" # mat #: diskdrake/interactive.pm:1394 #, c-format msgid "Size: %s" msgstr "Koko: %s" #: diskdrake/interactive.pm:1396 #, c-format msgid ", %s sectors" msgstr ", %s sektoria" #: diskdrake/interactive.pm:1398 #, c-format msgid "Cylinder %d to %d\n" msgstr "Sylinteristä %d sylinteriin %d\n" #: diskdrake/interactive.pm:1399 #, c-format msgid "Number of logical extents: %d\n" msgstr "Loogisten jatkeiden määrä: %d\n" #: diskdrake/interactive.pm:1400 #, c-format msgid "Formatted\n" msgstr "Alustettu\n" #: diskdrake/interactive.pm:1401 #, c-format msgid "Not formatted\n" msgstr "Ei alustettu\n" #: diskdrake/interactive.pm:1402 #, c-format msgid "Mounted\n" msgstr "Liitetty\n" #: diskdrake/interactive.pm:1403 #, c-format msgid "RAID %s\n" msgstr "RAID %s\n" #: diskdrake/interactive.pm:1405 #, c-format msgid "Encrypted" msgstr "Salattu" # Vaatii tarkastusta #: diskdrake/interactive.pm:1407 #, c-format msgid " (mapped on %s)" msgstr " (liitetty %s)" # Vaatii tarkastusta #: diskdrake/interactive.pm:1408 #, c-format msgid " (to map on %s)" msgstr " (liitettäväksi %s)" #: diskdrake/interactive.pm:1409 #, c-format msgid " (inactive)" msgstr "(ei aktiivinen)" #: diskdrake/interactive.pm:1416 #, c-format msgid "" "Loopback file(s):\n" " %s\n" msgstr "" "Loopback tiedosto(t):\n" " %s\n" #: diskdrake/interactive.pm:1417 #, c-format msgid "" "Partition booted by default\n" " (for MS-DOS boot, not for lilo)\n" msgstr "" "Osio on aktiivinen\n" " (MS-DOS käynnistys, ei LILO)\n" #: diskdrake/interactive.pm:1419 #, c-format msgid "Level %s\n" msgstr "Taso %s\n" #: diskdrake/interactive.pm:1420 #, c-format msgid "Chunk size %d KiB\n" msgstr "Lohkon koko %d kt\n" #: diskdrake/interactive.pm:1421 #, c-format msgid "RAID-disks %s\n" msgstr "RAID-levyt %s\n" #: diskdrake/interactive.pm:1423 #, c-format msgid "Loopback file name: %s" msgstr "Loopback-tiedoston nimi: %s" #: diskdrake/interactive.pm:1426 #, c-format msgid "" "\n" "Chances are, this partition is\n" "a Driver partition. You should\n" "probably leave it alone.\n" msgstr "" "\n" "On mahdollista, että osio on\n" "ajuriosio. On ehkä parasta\n" "jättää se rauhaan.\n" #: diskdrake/interactive.pm:1429 #, c-format msgid "" "\n" "This special Bootstrap\n" "partition is for\n" "dual-booting your system.\n" msgstr "" "\n" "Erityinen Bootsrap-osio\n" "on tarkoitettu järjestelmän\n" "käynnistämiseksi eri\n" "käyttöjärjestelmiin.\n" #: diskdrake/interactive.pm:1438 #, c-format msgid "Free space on %s (%s)" msgstr "Vapaata tilaa osiolla %s (%s)" #: diskdrake/interactive.pm:1447 #, c-format msgid "Read-only" msgstr "Vain luku" #: diskdrake/interactive.pm:1448 #, c-format msgid "Size: %s\n" msgstr "Koko: %s\n" #: diskdrake/interactive.pm:1449 #, c-format msgid "Geometry: %s cylinders, %s heads, %s sectors\n" msgstr "Levyn tiedot: %s sylinteriä, %s lukupäätä, %s sektoria\n" #: diskdrake/interactive.pm:1450 #, c-format msgid "Name: " msgstr "Nimi: " #: diskdrake/interactive.pm:1451 #, c-format msgid "Medium type: " msgstr "Tietovälineen tyyppi: " #: diskdrake/interactive.pm:1452 #, c-format msgid "LVM-disks %s\n" msgstr "LVM-levyt %s\n" # mat #: diskdrake/interactive.pm:1453 #, c-format msgid "Partition table type: %s\n" msgstr "Osiotaulun tyyppi: %s\n" #: diskdrake/interactive.pm:1454 #, c-format msgid "on channel %d id %d\n" msgstr "väylässä %d id %d\n" #: diskdrake/interactive.pm:1498 #, c-format msgid "Choose your filesystem encryption key" msgstr "Valitse tiedostojärjestelmän salausavain" #: diskdrake/interactive.pm:1501 #, c-format msgid "This encryption key is too simple (must be at least %d characters long)" msgstr "Salausavain on liian lyhyt, sen tulee olla vähintään %d merkkiä pitkä." #: diskdrake/interactive.pm:1508 #, c-format msgid "Encryption algorithm" msgstr "Salausalgoritmi" #: diskdrake/removable.pm:46 #, c-format msgid "Change type" msgstr "Muuta tyyppiä" #: diskdrake/smbnfs_gtk.pm:81 interactive.pm:120 interactive.pm:675 #: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160 #: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 #: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517 #: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602 #: ugtk3.pm:910 #, c-format msgid "Cancel" msgstr "Peruuta" #: diskdrake/smbnfs_gtk.pm:164 #, c-format msgid "Cannot login using username %s (bad password?)" msgstr "Käyttäjätunnuksella %s ei voida kirjautua (väärä salasana?)" #: diskdrake/smbnfs_gtk.pm:168 diskdrake/smbnfs_gtk.pm:177 #, c-format msgid "Domain Authentication Required" msgstr "Verkkoaluetunnistautuminen vaaditaan" #: diskdrake/smbnfs_gtk.pm:169 #, c-format msgid "Which username" msgstr "Mikä käyttäjätunnus" #: diskdrake/smbnfs_gtk.pm:169 #, c-format msgid "Another one" msgstr "Muu" #: diskdrake/smbnfs_gtk.pm:178 #, c-format msgid "" "Please enter your username, password and domain name to access this host." msgstr "Anna tunnus, salasana ja verkkoalue käyttääksesi tätä konetta." #: diskdrake/smbnfs_gtk.pm:180 #, c-format msgid "Username" msgstr "Käyttäjätunnus" #: diskdrake/smbnfs_gtk.pm:182 #, c-format msgid "Domain" msgstr "Verkkoalue" #: diskdrake/smbnfs_gtk.pm:206 #, c-format msgid "Search servers" msgstr "Hae palvelimet" #: diskdrake/smbnfs_gtk.pm:211 #, c-format msgid "Search for new servers" msgstr "Etsi uudet palvelimet" #: do_pkgs.pm:45 do_pkgs.pm:100 #, c-format msgid "The package %s needs to be installed. Do you want to install it?" msgstr "Paketti %s pitää asentaa. Asennetaanko se?" #: do_pkgs.pm:49 do_pkgs.pm:79 do_pkgs.pm:103 do_pkgs.pm:142 #, c-format msgid "Could not install the %s package!" msgstr "Pakettia %s ei voitu asentaa!" #: do_pkgs.pm:54 do_pkgs.pm:108 #, c-format msgid "Mandatory package %s is missing" msgstr "Pakollinen paketti %s puuttuu" #: do_pkgs.pm:74 do_pkgs.pm:137 #, c-format msgid "The following packages need to be installed:\n" msgstr "Seuraavat paketit pitää asentaa:\n" #: do_pkgs.pm:342 #, c-format msgid "Installing packages..." msgstr "Asennetaan paketteja..." #: do_pkgs.pm:387 pkgs.pm:293 #, c-format msgid "Removing packages..." msgstr "Poistetaan paketteja..." #: fs/any.pm:18 #, 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 "" "Tapahtui virhe - ei löytynyt yhtään laitetta, jolle voisi luoda uuden " "tiedostojärjestelmän. Tarkista laitteisto ongelman varalta." #: fs/any.pm:71 fs/partitioning_wizard.pm:68 #, c-format msgid "You must have a ESP FAT32 partition mounted in /boot/EFI" msgstr "Hakemistoon /boot/EFI tulee olla liitettynä ESP FAT32-osio" #: fs/format.pm:111 #, c-format msgid "Creating and formatting file %s" msgstr "Luodaan ja alustetaan tiedostoa %s" #: fs/format.pm:131 #, c-format msgid "I do not know how to set label on %s with type %s" msgstr "Nimen lisääminen levylle %s (%s) ei onnistu" #: fs/format.pm:143 #, c-format msgid "setting label on %s failed, is it formatted?" msgstr "levyn %s nimeäminen epäonnistui, onko se alustettu?" #: fs/format.pm:184 #, c-format msgid "I do not know how to format %s in type %s" msgstr "Levyn %s (%s) alustaminen ei onnistu" #: fs/format.pm:189 fs/format.pm:191 #, c-format msgid "%s formatting of %s failed" msgstr "%s alustus %s epäonnistui" #: fs/loopback.pm:24 #, c-format msgid "Circular mounts %s\n" msgstr "Sisäkkäiset liitokset %s\n" #: fs/mount.pm:85 #, c-format msgid "Mounting partition %s" msgstr "Liitetään osiota %s" #: fs/mount.pm:87 #, c-format msgid "mounting partition %s in directory %s failed" msgstr "osion %s liittäminen hakemistoon %s epäonnistui" #: fs/mount.pm:92 fs/mount.pm:109 #, c-format msgid "Checking %s" msgstr "Tarkistetaan %s" #: fs/mount.pm:126 partition_table.pm:397 #, c-format msgid "error unmounting %s: %s" msgstr "virhe irrotettaessa %s: %s" #: fs/mount.pm:141 #, c-format msgid "Enabling swap partition %s" msgstr "Otetaan käyttöön sivutusosiota %s" #: fs/mount_options.pm:114 #, c-format msgid "Enable POSIX Access Control Lists" msgstr "Ota käyttöön POSIX ACL:t" #: fs/mount_options.pm:116 #, c-format msgid "Flush write cache on file close" msgstr "Tyhjennä kirjoitusvälimuisti suljettaessa tiedosto" #: fs/mount_options.pm:118 #, c-format msgid "Enable group disk quota accounting and optionally enforce limits" msgstr "" "Ota ryhmän levynkäytön rajoitukset käyttöön ja vaihtoehtoisesti pakota " "rajoitukset" #: fs/mount_options.pm:120 #, c-format msgid "" "Do not update inode access times on this filesystem\n" "(e.g, for faster access on the news spool to speed up news servers)." msgstr "" "Älä päivitä inoodien käyttöaikaa tässä tiedostojärjestelmässä\n" "(esim. nopeampaan uutisspoolin käyttöön nopeuttamaan uutispalvelimia)." #: fs/mount_options.pm:123 #, c-format msgid "" "Update inode access times on this filesystem in a more efficient way\n" "(e.g, for faster access on the news spool to speed up news servers)." msgstr "" "Päivitä inoodien käyttöaika tehokkaammin tässä tiedostojärjestelmässä\n" "(esim. nopeampaan uutisspoolin käyttöön nopeuttamaan uutispalvelimia)." #: fs/mount_options.pm:126 #, c-format msgid "" "Can only be mounted explicitly (i.e.,\n" "the -a option will not cause the filesystem to be mounted)." msgstr "" "Voidaan liittää vain erikseen määritettynä\n" "(esim. valitsin -a ei liitä tiedostojärjestelmää)." #: fs/mount_options.pm:129 #, c-format msgid "Do not interpret character or block special devices on the filesystem." msgstr "Älä tulkitse merkki- tai lohkolaitteita tiedostojärjestelmässä." #: fs/mount_options.pm:131 #, c-format msgid "" "Do not allow execution of any binaries on the mounted\n" "filesystem. This option might be useful for a server that has filesystems\n" "containing binaries for architectures other than its own." msgstr "" "Älä salli minkään binääritiedoston suoritusta tiedosto-\n" "järjestelmässä. Tämä optio saattaa olla hyödyllinen\n" "palvelimelle, jonka tiedostojärjestelmässä on binäärejä\n" "muille kuin omalle arkkitehtuurille." #: fs/mount_options.pm:135 #, c-format msgid "" "Do not allow set-user-identifier or set-group-identifier\n" "bits to take effect. (This seems safe, but is in fact rather unsafe if you\n" "have suidperl(1) installed.)" msgstr "" "Älä salli aseta-käyttäjätunniste tai aseta-ryhmätunniste\n" "bittien vaikutusta. (Tämä vaikuttaa turvalliselta, mutta on\n" "itse asiassa melko turvaton mikäli järjestelmässä on suidperl(1)\n" "asennettuna.)" #: fs/mount_options.pm:139 #, c-format msgid "Mount the filesystem read-only." msgstr "Liitä tiedostojärjestelmä vain luku -tilassa." #: fs/mount_options.pm:141 #, c-format msgid "All I/O to the filesystem should be done synchronously." msgstr "Kaikki luku/kirjoitustoiminnot tehdään synkronoidusti." #: fs/mount_options.pm:143 #, c-format msgid "Allow every user to mount and umount the filesystem." msgstr "Salli kaikkien käyttäjien liittää ja irrottaa tiedostojärjestelmä." #: fs/mount_options.pm:145 #, c-format msgid "Allow an ordinary user to mount the filesystem." msgstr "Salli tavallisen käyttäjän liittää tiedostojärjestelmä." #: fs/mount_options.pm:147 #, c-format msgid "Enable user disk quota accounting, and optionally enforce limits" msgstr "" "Ota käyttäjien levynkäytön rajoitukset käyttöön ja vaihtoehtoisesti pakota " "rajoitukset" #: fs/mount_options.pm:149 #, c-format msgid "Support \"user.\" extended attributes" msgstr "Tue laajennettuja \"user.\"-ominaisuuksia" #: fs/mount_options.pm:151 #, c-format msgid "Give write access to ordinary users" msgstr "Anna kirjoitusoikeus tavallisille käyttäjille" #: fs/mount_options.pm:153 #, c-format msgid "Give read-only access to ordinary users" msgstr "Anna vain luku -oikeus tavallisille käyttäjille" #: fs/mount_point.pm:87 #, c-format msgid "Duplicate mount point %s" msgstr "Kahdentunut liitospiste %s" #: fs/mount_point.pm:102 #, c-format msgid "No partition available" msgstr "Ei vapaita osioita" #: fs/mount_point.pm:105 #, c-format msgid "Scanning partitions to find mount points" msgstr "Tarkistetaan osioita liitospisteiden löytämiseksi" #: fs/mount_point.pm:112 #, c-format msgid "Choose the mount points" msgstr "Valitse liitospisteet" #: fs/partitioning.pm:46 #, c-format msgid "Choose the partitions you want to format" msgstr "Valitse alustettavat osiot" #: fs/partitioning.pm:75 #, c-format msgid "" "Failed to check filesystem %s. Do you want to repair the errors? (beware, " "you can lose data)" msgstr "" "Tiedostojärjestelmän %s tarkistus epäonnistui. Korjataanko virheet?\n" "(HUOM: voit menettää tietoja)" #: fs/partitioning.pm:78 #, c-format msgid "Not enough swap space to fulfill installation, please add some" msgstr "Sivutustilaa ei ole riittävästi, suurenna sitä" #: fs/partitioning_wizard.pm:59 #, c-format msgid "" "You must have a root partition.\n" "To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Juuriosio tulee olla olemassa.\n" "Luo osio sitä varten (tai napsauta olemassa olevaa),\n" "valitse \"Liitospiste\" ja aseta sille arvoksi \"/\"." #: fs/partitioning_wizard.pm:65 #, c-format msgid "" "You do not have a swap partition.\n" "\n" "Continue anyway?" msgstr "" "Sivutusosiota ei ole olemassa.\n" "\n" "Jatka joka tapauksessa?" #: fs/partitioning_wizard.pm:100 #, c-format msgid "Use free space" msgstr "Käytä tyhjää tilaa" #: fs/partitioning_wizard.pm:102 #, c-format msgid "Not enough free space to allocate new partitions" msgstr "Tilaa ei ole tarpeeksi uusien osioiden luomiseksi" #: fs/partitioning_wizard.pm:110 #, c-format msgid "Use existing partitions" msgstr "Käytä olemassa olevia osioita" #: fs/partitioning_wizard.pm:112 #, c-format msgid "There is no existing partition to use" msgstr "Ei olemassa olevaa osiota käytettäväksi" #: fs/partitioning_wizard.pm:136 #, c-format msgid "Computing the size of the Microsoft Windows® partition" msgstr "Lasketaan Microsoft Windows®-osion kokoa" #: fs/partitioning_wizard.pm:172 #, c-format msgid "Use the free space on a Microsoft Windows® partition" msgstr "Käytä Microsoft Windows®-osion tyhjää tilaa" #: fs/partitioning_wizard.pm:176 #, c-format msgid "Which partition do you want to resize?" msgstr "Valitse osio, jonka kokoa muutetaan" #: fs/partitioning_wizard.pm:179 #, c-format msgid "" "Your Microsoft Windows® partition is too fragmented. Please reboot your " "computer under Microsoft Windows®, run the ``defrag'' utility, then restart " "the %s installation." msgstr "" "Microsoft Windows®-osio on liian pirstoutunut. Käynnistä kone uudelleen " "Windowsiin ja suorita \"Levyn eheytys\" ja aloita %sin asennus sen jälkeen " "uudestaan." #: fs/partitioning_wizard.pm:186 #, c-format msgid "Failed to find the partition to resize (%d choices)" msgstr "" #: fs/partitioning_wizard.pm:193 #, c-format msgid "" "WARNING!\n" "\n" "\n" "Your Microsoft Windows® partition will be now resized.\n" "\n" "\n" "Be careful: this operation is dangerous. If you have not already done so, " "you first need to exit the installation, run \"chkdsk c:\" from a Command " "Prompt under Microsoft Windows® (beware, running graphical program \"scandisk" "\" is not enough, be sure to use \"chkdsk\" in a Command Prompt!), " "optionally run defrag, then restart the installation. You should also backup " "your data.\n" "\n" "\n" "When sure, press %s." msgstr "" "VAROITUS!\n" "\n" "\n" "DrakX aikoo nyt muuttaa Windows-osion kokoa.\n" "\n" "\n" "Ole varovainen, toimenpide on vaarallinen. Jos Windows-osiota ei ole vielä " "tarkistettu, tulisi asennuksesta poistua ja suorittaa kiintolevyjen " "tarkistus \"chkdsk c:\" Windowsin komentokehotteessa (graafisen \"scandisk\"-" "ohjelman käyttö ei riitä) sekä mahdollisesti myös eheyttää levyt käyttämällä " "ohjelmaa \"Levyn eheytys\". Tämän jälkeen asennus voidaan aloittaa " "uudelleen. Samalla suosittelemme ottamaan varmuuskopiot tärkeistä " "tiedoista.\n" "\n" "\n" "Kun olet varma, paina %s." #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX #: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558 #: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595 #, c-format msgid "Next" msgstr "Seuraava" #: fs/partitioning_wizard.pm:202 #, c-format msgid "Partitionning" msgstr "Osiointi" #: fs/partitioning_wizard.pm:202 #, c-format msgid "Which size do you want to keep for Microsoft Windows® on partition %s?" msgstr "Kuinka paljon Microsoft Windows®:lle jätetään tilaa osiolle %s?" # mat #: fs/partitioning_wizard.pm:203 #, c-format msgid "Size" msgstr "Koko" #: fs/partitioning_wizard.pm:212 #, c-format msgid "Resizing Microsoft Windows® partition" msgstr "Muutetaan Microsoft Windows®-osion kokoa" #: fs/partitioning_wizard.pm:217 #, c-format msgid "FAT resizing failed: %s" msgstr "FAT-tiedostojärjestelmän koon muuttaminen epäonnistui: %s" #: fs/partitioning_wizard.pm:233 #, c-format msgid "There is no FAT partition to resize (or not enough space left)" msgstr "" "Muutettavaa FAT-osiota ei löydy (tai osiolla ei ole tarpeeksi vapaata tilaa)" #: fs/partitioning_wizard.pm:238 #, c-format msgid "Remove Microsoft Windows®" msgstr "Poista Microsoft Windows®" #: fs/partitioning_wizard.pm:238 #, c-format msgid "Erase and use entire disk" msgstr "Tyhjennä ja käytä koko levy" #: fs/partitioning_wizard.pm:242 #, c-format msgid "" "You have more than one hard disk drive, which one do you want the installer " "to use?" msgstr "" "Tietokoneessa on useampi kuin yksi kiintolevy. Valitse kiintolevy, jolle " "Linux asennetaan." # mat #: fs/partitioning_wizard.pm:250 fsedit.pm:642 #, c-format msgid "ALL existing partitions and their data will be lost on drive %s" msgstr "" "KAIKKI olemassa olevat osiot ja niissä olevat tiedot tuhoutuvat levyltä %s" #: fs/partitioning_wizard.pm:260 #, c-format msgid "Custom disk partitioning" msgstr "Mukautettu levyn osiointi" #: fs/partitioning_wizard.pm:266 #, c-format msgid "Use fdisk" msgstr "Käytä fdisk:iä" #: fs/partitioning_wizard.pm:269 #, c-format msgid "" "You can now partition %s.\n" "When you are done, do not forget to save using `w'" msgstr "" "Kiintolevy %s voidaan nyt osioida.\n" "Älä unohda tallentaa asetuksia näppäimellä \"w\"." #: fs/partitioning_wizard.pm:402 #, c-format msgid "Ext2/3/4" msgstr "Ext2/3/4" #: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578 #, c-format msgid "I cannot find any room for installing" msgstr "Asennukselle ei löydy tarpeeksi vapaata tilaa" #: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585 #, c-format msgid "The DrakX Partitioning wizard found the following solutions:" msgstr "DrakX Osiointivelho löysi seuraavat vaihtoehdot:" #: fs/partitioning_wizard.pm:511 #, c-format msgid "Here is the content of your disk drive " msgstr "Kiintolevyn sisältö" # mat #: fs/partitioning_wizard.pm:596 #, c-format msgid "Partitioning failed: %s" msgstr "Osiointi epäonnistui: %s" #: fs/type.pm:369 #, c-format msgid "You cannot use JFS for partitions smaller than 16MB" msgstr "JFS-tiedostojärjestelmää ei voida käyttää alle 16 Mt osioilla" #: fs/type.pm:370 #, c-format msgid "You cannot use ReiserFS for partitions smaller than 32MB" msgstr "ReiserFS-tiedostojärjestelmää ei voida käyttää alle 32 Mt osioilla" #: fs/type.pm:371 #, fuzzy, c-format msgid "You cannot use btrfs for partitions smaller than 256MB" msgstr "JFS-tiedostojärjestelmää ei voida käyttää alle 16 Mt osioilla" #: fsedit.pm:25 #, c-format msgid "simple" msgstr "Yksinkertainen" #: fsedit.pm:29 #, c-format msgid "with /usr" msgstr "Erillinen /usr-osio" #: fsedit.pm:34 #, c-format msgid "server" msgstr "Palvelin" #: fsedit.pm:147 #, c-format msgid "BIOS software RAID detected on disks %s. Activate it?" msgstr "Levyltä %s löytyi ohjelmistopohjainen RAID. Otetaanko se käyttöön?" #: fsedit.pm:257 #, c-format msgid "" "I cannot 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 lose all the partitions?\n" msgstr "" "Laitteen %s osiotaulua ei voida lukea. Se on liian vioittunut.\n" "Poistamalla kaikki virheelliset osiot, ja niiden tiedot, voidaan jatkaa.\n" "Vaihtoehtoisesti DrakX voidaan käskeä olemaan koskematta osiotauluun.\n" "(Virhe: %s)\n" "\n" "Poistetaanko kaikki virheelliset osiot?\n" #: fsedit.pm:437 #, c-format msgid "Mount points must begin with a leading /" msgstr "Liitospisteiden tulee alkaa /-merkillä." #: fsedit.pm:438 #, c-format msgid "Mount points should contain only alphanumerical characters" msgstr "Liitospisteet saavat sisältää vain kirjaimia ja numeroita" # mat #: fsedit.pm:439 #, c-format msgid "There is already a partition with mount point %s\n" msgstr "On jo olemassa osio, jonka liitospiste on %s\n" #: fsedit.pm:444 #, 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 separate /boot partition" msgstr "" "Ohjelmallinen RAID-osio on valittu juuriosioksi (/).\n" "Käynnistyslataimet eivät osaa käsitellä tätä ilman /boot-osiota.\n" "Muista luoda erillinen /boot-osio." #: fsedit.pm:450 #, c-format msgid "" "Metadata version unsupported for a boot partition. Please be sure to add a " "separate /boot partition." msgstr "" "Metadatan versio ei ole tuettu käynnistysosioksi. Muista luoda erillinen /" "boot-osio." #: fsedit.pm:458 #, c-format msgid "" "You've selected a software RAID partition as /boot.\n" "No bootloader is able to handle this." msgstr "" "Ohjelmallinen RAID-osio on valittu /boot osioksi.\n" "Käynnistyslataimet eivät osaa käsitellä tätä." #: fsedit.pm:462 #, c-format msgid "Metadata version unsupported for a boot partition." msgstr "Metadatan versio ei ole tuettu käynnistysosioksi." #: fsedit.pm:469 #, c-format msgid "" "You've selected an encrypted partition as root (/).\n" "No bootloader is able to handle this without a /boot partition.\n" "Please be sure to add a separate /boot partition" msgstr "" "Juuriosioksi (/) on valittu salattu osio. Käynnistyslataimet eivät\n" "osaa käsitellä salattua juuriosiota ilman /boot-osiota.\n" "Muista luoda erillinen /boot-osio." #: fsedit.pm:475 fsedit.pm:493 #, c-format msgid "You cannot use an encrypted filesystem for mount point %s" msgstr "Salattua tiedostojärjestelmää ei voi käyttää liitospisteelle %s" #: fsedit.pm:479 #, c-format msgid "" "You cannot use the LVM Logical Volume for mount point %s since it spans " "physical volumes" msgstr "" "LVM:n loogista taltiota ei voi käyttää liitospisteessä %s, koska se ylittää " "fyysiset taltiot" #: fsedit.pm:481 #, c-format msgid "" "You've selected the LVM Logical Volume as root (/).\n" "The bootloader is not able to handle this when the volume spans physical " "volumes.\n" "You should create a separate /boot partition first" msgstr "" "Juuriosioksi (/) on valittu LVM-osio.\n" "Käynnistyslataimet eivät osaa käsitellä osioiden jakaantumista usealle " "fyysiselle levylle.\n" "Erillinen /boot-osio tulisi luoda." #: fsedit.pm:485 fsedit.pm:487 #, c-format msgid "This directory should remain within the root filesystem" msgstr "Tämän hakemiston pitäisi olla juuritiedostojärjestelmässä" #: fsedit.pm:489 fsedit.pm:491 #, c-format msgid "" "You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount " "point\n" msgstr "" "Tarvotaan \"oikea\" tiedostojärjestelmä (ext2/ext3/ext4, ReiserFS, XFS tai " "JFS) tälle liitospisteelle.\n" #: fsedit.pm:558 #, c-format msgid "Not enough free space for auto-allocating" msgstr "Vapaa tila ei riitä automaattiseen varaukseen" #: fsedit.pm:560 #, c-format msgid "Nothing to do" msgstr "Ei suoritettavia toimenpiteitä" #: harddrake/data.pm:62 #, c-format msgid "SATA controllers" msgstr "SATA-ohjaimet" #: harddrake/data.pm:71 #, c-format msgid "RAID controllers" msgstr "RAID-ohjaimet" #: harddrake/data.pm:81 #, c-format msgid "(E)IDE/ATA controllers" msgstr "(E)IDE/ATA-ohjaimet" #: harddrake/data.pm:92 #, c-format msgid "Card readers" msgstr "Kortinlukijat" #: harddrake/data.pm:101 #, c-format msgid "Firewire controllers" msgstr "FireWire-ohjaimet" #: harddrake/data.pm:110 #, c-format msgid "PCMCIA controllers" msgstr "PCMCIA-ohjaimet" #: harddrake/data.pm:119 #, c-format msgid "SCSI controllers" msgstr "SCSI-ohjaimet" #: harddrake/data.pm:128 #, c-format msgid "USB controllers" msgstr "USB-ohjaimet" #: harddrake/data.pm:137 #, c-format msgid "USB ports" msgstr "USB-portit" #: harddrake/data.pm:146 #, c-format msgid "SMBus controllers" msgstr "SMBus-ohjaimet" #: harddrake/data.pm:155 #, c-format msgid "Bridges and system controllers" msgstr "Sillat ja järjestelmäohjaimet" #: harddrake/data.pm:167 #, c-format msgid "Floppy" msgstr "Levyke" #: harddrake/data.pm:177 #, c-format msgid "Zip" msgstr "Zip" #: harddrake/data.pm:193 #, c-format msgid "Hard Disk" msgstr "Kiintolevy" #: harddrake/data.pm:203 #, c-format msgid "USB Mass Storage Devices" msgstr "USB-massamuistit" #: harddrake/data.pm:212 #, c-format msgid "CDROM" msgstr "CD-ROM" #: harddrake/data.pm:222 #, c-format msgid "CD/DVD burners" msgstr "Polttavat CD/DVD-asemat" #: harddrake/data.pm:232 #, c-format msgid "DVD-ROM" msgstr "DVD-ROM" #: harddrake/data.pm:242 #, c-format msgid "Tape" msgstr "Nauha" #: harddrake/data.pm:253 #, c-format msgid "AGP controllers" msgstr "AGP-näytönohjaimet" #: harddrake/data.pm:262 #, c-format msgid "Videocard" msgstr "Näytönohjain" #: harddrake/data.pm:271 #, c-format msgid "DVB card" msgstr "Digi-TV-kortti" #: harddrake/data.pm:279 #, c-format msgid "Tvcard" msgstr "TV-kortti" #: harddrake/data.pm:289 #, c-format msgid "Other MultiMedia devices" msgstr "Muut multimedialaitteet" #: harddrake/data.pm:298 #, c-format msgid "Soundcard" msgstr "Äänikortti" #: harddrake/data.pm:312 #, c-format msgid "Webcam" msgstr "Web-kamera" #: harddrake/data.pm:327 #, c-format msgid "Processors" msgstr "Prosessorit" #: harddrake/data.pm:337 #, c-format msgid "ISDN adapters" msgstr "ISDN-sovittimet" #: harddrake/data.pm:348 #, c-format msgid "USB sound devices" msgstr "USB-äänikortit" #: harddrake/data.pm:357 #, c-format msgid "Radio cards" msgstr "Radiokortit" #: harddrake/data.pm:366 #, c-format msgid "ATM network cards" msgstr "ATM-verkkokortit" #: harddrake/data.pm:375 #, c-format msgid "WAN network cards" msgstr "WAN-verkkokortit" #: harddrake/data.pm:384 #, c-format msgid "Bluetooth devices" msgstr "Bluetooth-laitteet" #: harddrake/data.pm:393 #, c-format msgid "Ethernetcard" msgstr "Verkkokortti" #: harddrake/data.pm:410 #, c-format msgid "Modem" msgstr "Modeemi" #: harddrake/data.pm:420 #, c-format msgid "ADSL adapters" msgstr "ADSL-sovittimet" #: harddrake/data.pm:432 #, c-format msgid "Memory" msgstr "Muisti" #: harddrake/data.pm:441 #, c-format msgid "Printer" msgstr "Tulostin" #. -PO: these are joysticks controllers: #: harddrake/data.pm:455 #, c-format msgid "Game port controllers" msgstr "Peliportin ohjain" #: harddrake/data.pm:464 #, c-format msgid "Joystick" msgstr "Peliohjain" #: harddrake/data.pm:474 #, c-format msgid "Keyboard" msgstr "Näppäimistö" #: harddrake/data.pm:488 #, c-format msgid "Tablet and touchscreen" msgstr "Kosketusnäytöt" #: harddrake/data.pm:497 #, c-format msgid "Mouse" msgstr "Hiiri" #: harddrake/data.pm:512 #, c-format msgid "Biometry" msgstr "Biometria" #: harddrake/data.pm:520 #, c-format msgid "UPS" msgstr "UPS" #: harddrake/data.pm:529 #, c-format msgid "Scanner" msgstr "Kuvanlukija" #: harddrake/data.pm:540 #, c-format msgid "Unknown/Others" msgstr "Tuntematon/Muut" #: harddrake/data.pm:570 #, c-format msgid "cpu # " msgstr "CPU # " #: harddrake/sound.pm:77 #, c-format msgid "Please Wait... Applying the configuration" msgstr "Odota hetki... Otetaan asetukset käyttöön" #: harddrake/sound.pm:98 #, c-format msgid "No known driver" msgstr "Ei tunnettua ajuria" #: harddrake/sound.pm:99 #, c-format msgid "There's no known driver for your sound card (%s)" msgstr "Ei tunnettua ajuria äänikortillesi (%s)" #: harddrake/sound.pm:130 #, c-format msgid "Enable PulseAudio" msgstr "Ota PulseAudio käyttöön" #: harddrake/sound.pm:135 #, c-format msgid "Use Glitch-Free mode" msgstr "Käytä \"Glitch free\"-tilaa" #: harddrake/sound.pm:141 #, c-format msgid "Reset sound mixer to default values" msgstr "Palauta äänimikserin säätimet oletusarvoihin" #: harddrake/sound.pm:146 #, c-format msgid "Troubleshooting" msgstr "Vianetsintä" #: harddrake/sound.pm:153 #, c-format msgid "No alternative driver" msgstr "Ei vaihtoehtoista ajuria" #: harddrake/sound.pm:154 #, c-format msgid "" "There's no known OSS/ALSA alternative driver for your sound card (%s) which " "currently uses \"%s\"" msgstr "" "Tunnettua vaihtoehtoista OSS- tai ALSA-ajuria äänikortille \"%s\" ei ole. " "Käytössä oleva ajuri: %s" #: harddrake/sound.pm:161 #, c-format msgid "Sound configuration" msgstr "Ääniasetukset" #. -PO: here the first %s is either "ALSA", #. -PO: the second %s is the name of the current driver #. -PO: and the third %s is the name of the default driver #: harddrake/sound.pm:167 #, c-format msgid "" "\n" "\n" "Your card currently uses the %s\"%s\" driver (the default driver for your " "card is \"%s\")" msgstr "" "\n" "\n" "Käytössä on %s-ajuri %s. (Oletusajuri: %s)" #: harddrake/sound.pm:169 #, c-format msgid "" "OSS (Open Sound System) was the first sound API. It's an OS independent " "sound API (it's available on most UNIX(tm) systems) but it's a very basic " "and limited API.\n" "What's more, OSS drivers all reinvent the wheel.\n" "\n" "ALSA (Advanced Linux Sound Architecture) is a modularized architecture " "which\n" "supports quite a large range of ISA, USB and PCI cards.\n" "\n" "It also provides a much higher API than OSS.\n" "\n" "To use alsa, one can either use:\n" "- the old compatibility OSS API\n" "- the new ALSA API that provides many enhanced features but requires using " "the ALSA library.\n" msgstr "" "OSS (Open Sound System, eli avoin äänijärjestelmä) oli ensimmäinen ääni-" "API.\n" "Se on käyttöjärjestelmäriippumaton ääni-API (se on saatavilla useimmille\n" "Unix-järjestelmille), mutta se aika perustasoa ja rajoitettu API.\n" "Sen lisäksi, OSS-ajureissa kaikki 'kehittävät pyörän uudelleen'.\n" "\n" "ALSA (Advanced Linux Sound Architecture, eli Linuxin edistynyt\n" "äänijärjestelmä) on modulaarinen arkkitehtuuri, joka tukee suurta\n" "määrää ISA, USB ja PCI kortteja.\n" "\n" "Se tarjoaa myös paljon korkeamman tason API:n kuin OSS.\n" "\n" "Käyttääksesi ALSA:a, voit käyttää yhtä näistä:\n" "- vanha OSS-yhteensopiva api.\n" "- uusi ALSA-api, joka tarjoaa useita parannettuja ominaisuuksia,\n" "mutta vaatii ALSA-kirjaston käyttöä.\n" #: harddrake/sound.pm:184 harddrake/sound.pm:266 #, c-format msgid "Driver:" msgstr "Ajuri:" #: harddrake/sound.pm:206 #, c-format msgid "Sound troubleshooting" msgstr "Äänen vianetsintä" #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX #: harddrake/sound.pm:209 #, c-format msgid "" "Below are some basic tips to help debug audio problems, but for accurate and " "up-to-date tips and tricks, please see:\n" "\n" "https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n" "\n" "\n" "\n" "- General Recommendation: Enable PulseAudio. If you have opted to not to use " "PulseAudio, we would strongly advise you enable it. For the vast majority of " "desktop use cases, PulseAudio is the recommended and best supported option.\n" "\n" "\n" "\n" "- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pavucontrol" "\" (generic) will launch graphical applications to allow you to view your " "sound devices and adjust volume levels\n" "\n" "\n" "- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n" "\n" "\n" "- \"pactl stat\" will check that you can connect to the PulseAudio daemon " "correctly.\n" "\n" "\n" "- \"pactl list sink-inputs\" will tell you which programs are currently " "playing sound via PulseAudio.\n" "\n" "\n" "- \"systemctl status osspd.service\" will tell you the current state of the " "OSS Proxy Daemon. This is used to enable sound from legacy applications " "which use the OSS sound API. You should install the \"ossp\" package if you " "need this functionality.\n" "\n" "\n" "- \"pacmd ls\" will give you a LOT of debug information about the current " "state of your audio.\n" "\n" "\n" "- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver " "your card uses by default.\n" "\n" "\n" "- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound " "related kernel modules (drivers) are loaded.\n" "\n" "\n" "- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA " "mixer controls for first sound card\n" "\n" "\n" "- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are " "currently using the sound card directly (normally this should only show " "PulseAudio)\n" msgstr "" #: harddrake/sound.pm:255 #, c-format msgid "Let me pick any driver" msgstr "Anna valita mikä ajuri tahansa" #: harddrake/sound.pm:258 #, c-format msgid "Choosing an arbitrary driver" msgstr "Summittaisen ajurin valinta" #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX #: harddrake/sound.pm:261 #, fuzzy, c-format msgid "" "If you really think that you know which driver is the right one for your " "card\n" "you can pick one from the list below.\n" "\n" "The current driver for your \"%s\" sound card is \"%s\" " msgstr "" "Jos todellakin uskot tietäväsi, mikä ajuri on oikea äänikortillesi,\n" "voit valita yhden yllä olevasta listasta.\n" "\n" "Nykyinen ajuri äänikortille \"%s\" on \"%s\" " #: harddrake/v4l.pm:12 #, c-format msgid "Auto-detect" msgstr "Automaattinen tunnistaminen" #: harddrake/v4l.pm:97 harddrake/v4l.pm:285 harddrake/v4l.pm:337 #, c-format msgid "Unknown|Generic" msgstr "Tuntematon|Yleinen" #: harddrake/v4l.pm:130 #, c-format msgid "Unknown|CPH05X (bt878) [many vendors]" msgstr "Tuntematon|CPH05X (bt878) [monta valmistajaa]" #: harddrake/v4l.pm:131 #, c-format msgid "Unknown|CPH06X (bt878) [many vendors]" msgstr "Tuntematon|CPH06X (bt878) [monta valmistajaa]" #: harddrake/v4l.pm:475 #, 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 "" "GNU/Linux-ytimen bttv-moduuli tunnistaa useimmille nykyisille TV-korteille " "automaattisesti oikeat parametrit.\n" "Jos kortti on tunnistettu väärin, oikea vastaanotin sekä kortin tyyppi " "voidaan pakottaa täällä. Valitse TV-korttisi parametrit vain tarvittaessa." #: harddrake/v4l.pm:478 #, c-format msgid "Card model:" msgstr "Kortin malli:" #: harddrake/v4l.pm:479 #, c-format msgid "Tuner type:" msgstr "Vastaanottimen tyyppi:" #: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270 #: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39 #: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846 #: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835 #: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933 #, c-format msgid "Ok" msgstr "OK" #: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909 #: wizards.pm:156 #, c-format msgid "Yes" msgstr "Kyllä" #: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909 #: wizards.pm:156 #, c-format msgid "No" msgstr "Ei" #: interactive.pm:253 #, c-format msgid "Choose a file" msgstr "Valitse tiedosto" #: interactive.pm:390 interactive/gtk.pm:456 #, c-format msgid "Add" msgstr "Lisää" #: interactive.pm:390 interactive/gtk.pm:456 #, c-format msgid "Modify" msgstr "Muokkaa" #: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595 #, c-format msgid "Finish" msgstr "Valmis" #: interactive.pm:675 interactive/curses.pm:267 ugtk2.pm:517 ugtk3.pm:593 #, c-format msgid "Previous" msgstr "Edellinen" #: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970 #, c-format msgid "No file chosen" msgstr "Tiedostoa ei valittu" #: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974 #, c-format msgid "You have chosen a directory, not a file" msgstr "Valittiin hakemisto, ei tiedostoa" #: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976 #, c-format msgid "No such directory" msgstr "Hakemistoa ei ole olemassa" #: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976 #, c-format msgid "No such file" msgstr "Tiedostoa ei ole olemassa" #: interactive/gtk.pm:596 #, c-format msgid "Beware, Caps Lock is enabled" msgstr "HUOM: Caps Lock on käytössä" #: interactive/stdio.pm:29 interactive/stdio.pm:154 #, c-format msgid "Bad choice, try again\n" msgstr "Väärä valinta, yritä uudelleen\n" #: interactive/stdio.pm:30 interactive/stdio.pm:155 #, c-format msgid "Your choice? (default %s) " msgstr "Valintasi? (oletus %s) " #: interactive/stdio.pm:54 #, c-format msgid "" "Entries you'll have to fill:\n" "%s" msgstr "" "Kohdat, jotka pitää täyttää:\n" "%s" #: interactive/stdio.pm:70 #, c-format msgid "Your choice? (0/1, default `%s') " msgstr "Valintasi? (0/1, oletus '%s') " #: interactive/stdio.pm:97 #, c-format msgid "Button `%s': %s" msgstr "Painike '%s': %s" #: interactive/stdio.pm:98 #, c-format msgid "Do you want to click on this button?" msgstr "Haluatko napsauttaa painiketta?" #: interactive/stdio.pm:110 #, c-format msgid "Your choice? (default `%s'%s) " msgstr "Valintasi? (oletus '%s'%s) " #: interactive/stdio.pm:110 #, c-format msgid " enter `void' for void entry" msgstr " kirjoita 'void' jos haluat tyhjän tietueen" #: interactive/stdio.pm:128 #, c-format msgid "=> There are many things to choose from (%s).\n" msgstr "=> On monta asiaa, joista valita (%s).\n" #: interactive/stdio.pm:131 #, 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 "" "Valitse ensimmäinen numero 10-alueella, jota muokataan,\n" "tai paina vain Enter jatkaaksesi.\n" "Valintasi? " #: interactive/stdio.pm:144 #, c-format msgid "" "=> Notice, a label changed:\n" "%s" msgstr "" "=> Huomaa, että nimi vaihtui:\n" "%s" #: interactive/stdio.pm:151 #, c-format msgid "Re-submit" msgstr "Lähetä uudelleen" #. -PO: the string "default:LTR" can be translated *ONLY* as "default:LTR" #. -PO: or as "default:RTL", depending if your language is written from #. -PO: left to right, or from right to left; any other string is wrong. #: lang.pm:247 #, c-format msgid "default:LTR" msgstr "default:LTR" #: lang.pm:301 #, c-format msgid "Andorra" msgstr "Andorra" #: lang.pm:302 timezone.pm:237 #, c-format msgid "United Arab Emirates" msgstr "Arabiemiirikunnat" #: lang.pm:303 #, c-format msgid "Afghanistan" msgstr "Afganistan" #: lang.pm:304 #, c-format msgid "Antigua and Barbuda" msgstr "Antigua ja Barbuda" #: lang.pm:305 #, c-format msgid "Anguilla" msgstr "Anguilla" #: lang.pm:306 #, c-format msgid "Albania" msgstr "Albania" #: lang.pm:307 #, c-format msgid "Armenia" msgstr "Armenia" #: lang.pm:308 #, c-format msgid "Netherlands Antilles" msgstr "Alankomaiden Antillit" #: lang.pm:309 #, c-format msgid "Angola" msgstr "Angola" #: lang.pm:310 #, c-format msgid "Antarctica" msgstr "Antarktis" #: lang.pm:311 timezone.pm:282 #, c-format msgid "Argentina" msgstr "Argentiina" #: lang.pm:312 #, c-format msgid "American Samoa" msgstr "Amerikan Samoa" #: lang.pm:313 mirror.pm:22 timezone.pm:240 #, c-format msgid "Austria" msgstr "Itävalta" #: lang.pm:314 mirror.pm:21 timezone.pm:278 #, c-format msgid "Australia" msgstr "Australia" #: lang.pm:315 #, c-format msgid "Aruba" msgstr "Aruba" #: lang.pm:316 #, c-format msgid "Azerbaijan" msgstr "Azerbaidžan" #: lang.pm:317 #, c-format msgid "Bosnia and Herzegovina" msgstr "Bosnia ja Herzegovina" #: lang.pm:318 #, c-format msgid "Barbados" msgstr "Barbados" #: lang.pm:319 timezone.pm:222 #, c-format msgid "Bangladesh" msgstr "Bangladesh" #: lang.pm:320 mirror.pm:23 timezone.pm:242 #, c-format msgid "Belgium" msgstr "Belgia" #: lang.pm:321 #, c-format msgid "Burkina Faso" msgstr "Burkina Faso" #: lang.pm:322 timezone.pm:243 #, c-format msgid "Bulgaria" msgstr "Bulgaria" #: lang.pm:323 #, c-format msgid "Bahrain" msgstr "Bahrain" #: lang.pm:324 #, c-format msgid "Burundi" msgstr "Burundi" #: lang.pm:325 #, c-format msgid "Benin" msgstr "Benin" #: lang.pm:326 #, c-format msgid "Bermuda" msgstr "Bermuda" #: lang.pm:327 #, c-format msgid "Brunei Darussalam" msgstr "Brunei Darussalam" #: lang.pm:328 #, c-format msgid "Bolivia" msgstr "Bolivia" #: lang.pm:329 mirror.pm:24 timezone.pm:283 #, c-format msgid "Brazil" msgstr "Brasilia" #: lang.pm:330 #, c-format msgid "Bahamas" msgstr "Bahama" #: lang.pm:331 #, c-format msgid "Bhutan" msgstr "Bhutan" #: lang.pm:332 #, c-format msgid "Bouvet Island" msgstr "Bouvet'n saari" #: lang.pm:333 #, c-format msgid "Botswana" msgstr "Botswana" #: lang.pm:334 timezone.pm:241 #, c-format msgid "Belarus" msgstr "Valko-Venäjä" #: lang.pm:335 #, c-format msgid "Belize" msgstr "Belize" #: lang.pm:336 mirror.pm:25 timezone.pm:272 #, c-format msgid "Canada" msgstr "Kanada" #: lang.pm:337 #, c-format msgid "Cocos (Keeling) Islands" msgstr "Kookossaaret" #: lang.pm:338 #, c-format msgid "Congo (Kinshasa)" msgstr "Kongo (Kinshasa)" #: lang.pm:339 #, c-format msgid "Central African Republic" msgstr "Keski-Afrikan tasavalta" #: lang.pm:340 #, c-format msgid "Congo (Brazzaville)" msgstr "Kongo (Brazzaville)" #: lang.pm:341 mirror.pm:49 timezone.pm:266 #, c-format msgid "Switzerland" msgstr "Sveitsi" #: lang.pm:342 #, c-format msgid "Cote d'Ivoire" msgstr "Cote d'Ivoire" #: lang.pm:343 #, c-format msgid "Cook Islands" msgstr "Cookinsaaret" #: lang.pm:344 timezone.pm:284 #, c-format msgid "Chile" msgstr "Chile" #: lang.pm:345 #, c-format msgid "Cameroon" msgstr "Kamerun" #: lang.pm:346 timezone.pm:223 #, c-format msgid "China" msgstr "Kiina" #: lang.pm:347 #, c-format msgid "Colombia" msgstr "Kolumbia" #: lang.pm:348 mirror.pm:26 #, c-format msgid "Costa Rica" msgstr "Costa Rica" #: lang.pm:349 #, c-format msgid "Serbia & Montenegro" msgstr "Serbia ja Montenegro" #: lang.pm:350 #, c-format msgid "Cuba" msgstr "Kuuba" #: lang.pm:351 #, c-format msgid "Cape Verde" msgstr "Kap Verde" #: lang.pm:352 #, c-format msgid "Christmas Island" msgstr "Joulusaari" #: lang.pm:353 #, c-format msgid "Cyprus" msgstr "Kypros" #: lang.pm:354 mirror.pm:27 timezone.pm:244 #, c-format msgid "Czech Republic" msgstr "Tsekin tasavalta" #: lang.pm:355 mirror.pm:32 timezone.pm:249 #, c-format msgid "Germany" msgstr "Saksa" #: lang.pm:356 #, c-format msgid "Djibouti" msgstr "Djibouti" #: lang.pm:357 mirror.pm:28 timezone.pm:245 #, c-format msgid "Denmark" msgstr "Tanska" #: lang.pm:358 #, c-format msgid "Dominica" msgstr "Dominica" #: lang.pm:359 #, c-format msgid "Dominican Republic" msgstr "Dominikaaninen tasavalta" #: lang.pm:360 #, c-format msgid "Algeria" msgstr "Algeria" #: lang.pm:361 #, c-format msgid "Ecuador" msgstr "Ecuador" #: lang.pm:362 mirror.pm:29 timezone.pm:246 #, c-format msgid "Estonia" msgstr "Viro" #: lang.pm:363 #, c-format msgid "Egypt" msgstr "Egypti" #: lang.pm:364 #, c-format msgid "Western Sahara" msgstr "Länsi-Sahara" #: lang.pm:365 #, c-format msgid "Eritrea" msgstr "Eritrea" #: lang.pm:366 mirror.pm:47 timezone.pm:264 #, c-format msgid "Spain" msgstr "Espanja" #: lang.pm:367 #, c-format msgid "Ethiopia" msgstr "Etiopia" #: lang.pm:368 mirror.pm:30 timezone.pm:247 #, c-format msgid "Finland" msgstr "Suomi" #: lang.pm:369 #, c-format msgid "Fiji" msgstr "Fiji" #: lang.pm:370 #, c-format msgid "Falkland Islands (Malvinas)" msgstr "Falklandinsaaret" #: lang.pm:371 #, c-format msgid "Micronesia" msgstr "Mikronesia" #: lang.pm:372 #, c-format msgid "Faroe Islands" msgstr "Färsaaret" #: lang.pm:373 mirror.pm:31 timezone.pm:248 #, c-format msgid "France" msgstr "Ranska" #: lang.pm:374 #, c-format msgid "Gabon" msgstr "Gabon" #: lang.pm:375 timezone.pm:268 #, c-format msgid "United Kingdom" msgstr "Iso-Britannia" #: lang.pm:376 #, c-format msgid "Grenada" msgstr "Grenada" #: lang.pm:377 #, c-format msgid "Georgia" msgstr "Georgia" #: lang.pm:378 #, c-format msgid "French Guiana" msgstr "Ranskan Guayana" #: lang.pm:379 #, c-format msgid "Ghana" msgstr "Ghana" #: lang.pm:380 #, c-format msgid "Gibraltar" msgstr "Gibraltar" #: lang.pm:381 #, c-format msgid "Greenland" msgstr "Grönlanti" #: lang.pm:382 #, c-format msgid "Gambia" msgstr "Gambia" #: lang.pm:383 #, c-format msgid "Guinea" msgstr "Guinea" #: lang.pm:384 #, c-format msgid "Guadeloupe" msgstr "Guadeloupe" #: lang.pm:385 #, c-format msgid "Equatorial Guinea" msgstr "Guinea" #: lang.pm:386 mirror.pm:33 timezone.pm:250 #, c-format msgid "Greece" msgstr "Kreikka" #: lang.pm:387 #, c-format msgid "South Georgia and the South Sandwich Islands" msgstr "Etelä-Georgia ja Eteläiset Sandwichsaaret" #: lang.pm:388 timezone.pm:273 #, c-format msgid "Guatemala" msgstr "Guatemala" #: lang.pm:389 #, c-format msgid "Guam" msgstr "Guam" #: lang.pm:390 #, c-format msgid "Guinea-Bissau" msgstr "Guinea-Bissau" #: lang.pm:391 #, c-format msgid "Guyana" msgstr "Guyana" #: lang.pm:392 #, c-format msgid "Hong Kong SAR (China)" msgstr "Hong Kong SAR (China)" #: lang.pm:393 #, c-format msgid "Heard and McDonald Islands" msgstr "Heard ja McDonaldinsaaret" #: lang.pm:394 #, c-format msgid "Honduras" msgstr "Honduras" #: lang.pm:395 #, c-format msgid "Croatia" msgstr "Kroatia" #: lang.pm:396 #, c-format msgid "Haiti" msgstr "Haiti" #: lang.pm:397 mirror.pm:34 timezone.pm:251 #, c-format msgid "Hungary" msgstr "Unkari" #: lang.pm:398 timezone.pm:226 #, c-format msgid "Indonesia" msgstr "Indonesia" #: lang.pm:399 mirror.pm:35 timezone.pm:252 #, c-format msgid "Ireland" msgstr "Irlanti" #: lang.pm:400 mirror.pm:36 timezone.pm:228 #, c-format msgid "Israel" msgstr "Israel" #: lang.pm:401 timezone.pm:225 #, c-format msgid "India" msgstr "Intia" #: lang.pm:402 #, c-format msgid "British Indian Ocean Territory" msgstr "Brittiläinen Intian valtameren alue" #: lang.pm:403 #, c-format msgid "Iraq" msgstr "Irak" #: lang.pm:404 timezone.pm:227 #, c-format msgid "Iran" msgstr "Iran" #: lang.pm:405 #, c-format msgid "Iceland" msgstr "Islanti" #: lang.pm:406 mirror.pm:37 timezone.pm:253 #, c-format msgid "Italy" msgstr "Italia" #: lang.pm:407 #, c-format msgid "Jamaica" msgstr "Jamaika" #: lang.pm:408 #, c-format msgid "Jordan" msgstr "Jordania" #: lang.pm:409 mirror.pm:38 timezone.pm:229 #, c-format msgid "Japan" msgstr "Japani" #: lang.pm:410 #, c-format msgid "Kenya" msgstr "Kenia" #: lang.pm:411 #, c-format msgid "Kyrgyzstan" msgstr "Kirgistan" #: lang.pm:412 #, c-format msgid "Cambodia" msgstr "Kambodža" #: lang.pm:413 #, c-format msgid "Kiribati" msgstr "Kiribati" #: lang.pm:414 #, c-format msgid "Comoros" msgstr "Komorit" #: lang.pm:415 #, c-format msgid "Saint Kitts and Nevis" msgstr "Saint Kitts ja Nevis" #: lang.pm:416 #, c-format msgid "Korea (North)" msgstr "Korea (Pohjois-)" #: lang.pm:417 timezone.pm:230 #, c-format msgid "Korea" msgstr "Korea" #: lang.pm:418 #, c-format msgid "Kuwait" msgstr "Kuwait" #: lang.pm:419 #, c-format msgid "Cayman Islands" msgstr "Caymansaaret" #: lang.pm:420 #, c-format msgid "Kazakhstan" msgstr "Kazakstan" #: lang.pm:421 #, c-format msgid "Laos" msgstr "Laos" #: lang.pm:422 #, c-format msgid "Lebanon" msgstr "Libanon" #: lang.pm:423 #, c-format msgid "Saint Lucia" msgstr "Saint Lucia" #: lang.pm:424 #, c-format msgid "Liechtenstein" msgstr "Liechtenstein" #: lang.pm:425 #, c-format msgid "Sri Lanka" msgstr "Sri Lanka" #: lang.pm:426 #, c-format msgid "Liberia" msgstr "Liberia" #: lang.pm:427 #, c-format msgid "Lesotho" msgstr "Lesotho" #: lang.pm:428 timezone.pm:254 #, c-format msgid "Lithuania" msgstr "Liettua" #: lang.pm:429 timezone.pm:255 #, c-format msgid "Luxembourg" msgstr "Luxemburg" #: lang.pm:430 #, c-format msgid "Latvia" msgstr "Latvia" #: lang.pm:431 #, c-format msgid "Libya" msgstr "Libya" #: lang.pm:432 #, c-format msgid "Morocco" msgstr "Marokko" #: lang.pm:433 #, c-format msgid "Monaco" msgstr "Monaco" #: lang.pm:434 #, c-format msgid "Moldova" msgstr "Moldova" #: lang.pm:435 #, c-format msgid "Madagascar" msgstr "Madagaskar" #: lang.pm:436 #, c-format msgid "Marshall Islands" msgstr "Marshallinsaaret" #: lang.pm:437 #, c-format msgid "Macedonia" msgstr "Makedonia" #: lang.pm:438 #, c-format msgid "Mali" msgstr "Mali" #: lang.pm:439 #, c-format msgid "Myanmar" msgstr "Myanmar" #: lang.pm:440 #, c-format msgid "Mongolia" msgstr "Mongolia" #: lang.pm:441 #, c-format msgid "Northern Mariana Islands" msgstr "Pohjoiset Mariaanit" #: lang.pm:442 #, c-format msgid "Martinique" msgstr "Martinique" #: lang.pm:443 #, c-format msgid "Mauritania" msgstr "Mauritania" #: lang.pm:444 #, c-format msgid "Montserrat" msgstr "Montserrat" #: lang.pm:445 #, c-format msgid "Malta" msgstr "Malta" #: lang.pm:446 #, c-format msgid "Mauritius" msgstr "Mauritius" #: lang.pm:447 #, c-format msgid "Maldives" msgstr "Malediivit" #: lang.pm:448 #, c-format msgid "Malawi" msgstr "Malawi" #: lang.pm:449 timezone.pm:274 #, c-format msgid "Mexico" msgstr "Meksiko" #: lang.pm:450 timezone.pm:231 #, c-format msgid "Malaysia" msgstr "Malesia" #: lang.pm:451 #, c-format msgid "Mozambique" msgstr "Mosambik" #: lang.pm:452 #, c-format msgid "Namibia" msgstr "Namibia" #: lang.pm:453 #, c-format msgid "New Caledonia" msgstr "Uusi-Kaledonia" #: lang.pm:454 #, c-format msgid "Niger" msgstr "Niger" #: lang.pm:455 #, c-format msgid "Norfolk Island" msgstr "Norfolkinsaari" #: lang.pm:456 #, c-format msgid "Nigeria" msgstr "Nigeria" #: lang.pm:457 #, c-format msgid "Nicaragua" msgstr "Nicaragua" #: lang.pm:458 mirror.pm:39 timezone.pm:256 #, c-format msgid "Netherlands" msgstr "Alankomaat" #: lang.pm:459 mirror.pm:41 timezone.pm:257 #, c-format msgid "Norway" msgstr "Norja" #: lang.pm:460 #, c-format msgid "Nepal" msgstr "Nepal" #: lang.pm:461 #, c-format msgid "Nauru" msgstr "Nauru" #: lang.pm:462 #, c-format msgid "Niue" msgstr "Niue" #: lang.pm:463 mirror.pm:40 timezone.pm:279 #, c-format msgid "New Zealand" msgstr "Uusi-Seelanti" #: lang.pm:464 #, c-format msgid "Oman" msgstr "Oman" #: lang.pm:465 #, c-format msgid "Panama" msgstr "Panama" #: lang.pm:466 #, c-format msgid "Peru" msgstr "Peru" #: lang.pm:467 #, c-format msgid "French Polynesia" msgstr "Ranskan Polynesia" #: lang.pm:468 #, c-format msgid "Papua New Guinea" msgstr "Papua Uusi-Guinea" #: lang.pm:469 timezone.pm:232 #, c-format msgid "Philippines" msgstr "Filippiinit" #: lang.pm:470 #, c-format msgid "Pakistan" msgstr "Pakistan" #: lang.pm:471 mirror.pm:42 timezone.pm:258 #, c-format msgid "Poland" msgstr "Puola" #: lang.pm:472 #, c-format msgid "Saint Pierre and Miquelon" msgstr "Saint Pierre ja Miquelon" #: lang.pm:473 #, c-format msgid "Pitcairn" msgstr "Pitcairn" #: lang.pm:474 #, c-format msgid "Puerto Rico" msgstr "Puerto Rico" #: lang.pm:475 #, c-format msgid "Palestine" msgstr "Palestiina" #: lang.pm:476 mirror.pm:43 timezone.pm:259 #, c-format msgid "Portugal" msgstr "Portugali" #: lang.pm:477 #, c-format msgid "Paraguay" msgstr "Paraguay" #: lang.pm:478 #, c-format msgid "Palau" msgstr "Palau" #: lang.pm:479 #, c-format msgid "Qatar" msgstr "Qatar" #: lang.pm:480 #, c-format msgid "Reunion" msgstr "Reunion" #: lang.pm:481 timezone.pm:260 #, c-format msgid "Romania" msgstr "Romania" #: lang.pm:482 mirror.pm:44 #, c-format msgid "Russia" msgstr "Venäjä" #: lang.pm:483 #, c-format msgid "Rwanda" msgstr "Ruanda" #: lang.pm:484 #, c-format msgid "Saudi Arabia" msgstr "Saudi Arabia" #: lang.pm:485 #, c-format msgid "Solomon Islands" msgstr "Salomonsaaret" #: lang.pm:486 #, c-format msgid "Seychelles" msgstr "Seychellit" #: lang.pm:487 #, c-format msgid "Sudan" msgstr "Sudan" #: lang.pm:488 mirror.pm:48 timezone.pm:265 #, c-format msgid "Sweden" msgstr "Ruotsi" #: lang.pm:489 timezone.pm:233 #, c-format msgid "Singapore" msgstr "Singapore" #: lang.pm:490 #, c-format msgid "Saint Helena" msgstr "Saint Helena" #: lang.pm:491 timezone.pm:263 #, c-format msgid "Slovenia" msgstr "Slovenia" #: lang.pm:492 #, c-format msgid "Svalbard and Jan Mayen Islands" msgstr "Svalbard ja Jan Mayen" #: lang.pm:493 mirror.pm:45 timezone.pm:262 #, c-format msgid "Slovakia" msgstr "Slovakia" #: lang.pm:494 #, c-format msgid "Sierra Leone" msgstr "Sierra Leone" #: lang.pm:495 #, c-format msgid "San Marino" msgstr "San Marino" #: lang.pm:496 #, c-format msgid "Senegal" msgstr "Senegal" #: lang.pm:497 #, c-format msgid "Somalia" msgstr "Somalia" #: lang.pm:498 #, c-format msgid "Suriname" msgstr "Surinam" #: lang.pm:499 #, c-format msgid "Sao Tome and Principe" msgstr "Sao Tome ja Principe" #: lang.pm:500 #, c-format msgid "El Salvador" msgstr "El Salvador" #: lang.pm:501 #, c-format msgid "Syria" msgstr "Syyria" #: lang.pm:502 #, c-format msgid "Swaziland" msgstr "Swazimaa" #: lang.pm:503 #, c-format msgid "Turks and Caicos Islands" msgstr "Turks ja Caicossaaret" #: lang.pm:504 #, c-format msgid "Chad" msgstr "Tšad" #: lang.pm:505 #, c-format msgid "French Southern Territories" msgstr "Ranskan eteläiset alueet" #: lang.pm:506 #, c-format msgid "Togo" msgstr "Togo" #: lang.pm:507 mirror.pm:51 timezone.pm:235 #, c-format msgid "Thailand" msgstr "Thaimaa" #: lang.pm:508 #, c-format msgid "Tajikistan" msgstr "Tadzikistan" #: lang.pm:509 #, c-format msgid "Tokelau" msgstr "Tokelau" #: lang.pm:510 #, c-format msgid "East Timor" msgstr "Itä-Timor" #: lang.pm:511 #, c-format msgid "Turkmenistan" msgstr "Turkmenistan" #: lang.pm:512 #, c-format msgid "Tunisia" msgstr "Tunisia" #: lang.pm:513 #, c-format msgid "Tonga" msgstr "Tonga" #: lang.pm:514 timezone.pm:236 #, c-format msgid "Turkey" msgstr "Turkki" #: lang.pm:515 #, c-format msgid "Trinidad and Tobago" msgstr "Trinidad ja Tobago" #: lang.pm:516 #, c-format msgid "Tuvalu" msgstr "Tuvalu" #: lang.pm:517 mirror.pm:50 timezone.pm:234 #, c-format msgid "Taiwan" msgstr "Taiwan" #: lang.pm:518 timezone.pm:219 #, c-format msgid "Tanzania" msgstr "Tansania" #: lang.pm:519 timezone.pm:267 #, c-format msgid "Ukraine" msgstr "Ukraina" #: lang.pm:520 #, c-format msgid "Uganda" msgstr "Uganda" #: lang.pm:521 #, c-format msgid "United States Minor Outlying Islands" msgstr "Yhdysvaltain pienet erillissaaret" #: lang.pm:522 mirror.pm:52 timezone.pm:275 #, c-format msgid "United States" msgstr "Yhdysvallat" #: lang.pm:523 #, c-format msgid "Uruguay" msgstr "Uruguay" #: lang.pm:524 #, c-format msgid "Uzbekistan" msgstr "Uzbekistan" #: lang.pm:525 #, c-format msgid "Vatican" msgstr "Vatikaani" #: lang.pm:526 #, c-format msgid "Saint Vincent and the Grenadines" msgstr "Saint Vincent ja Grenadiinit" #: lang.pm:527 #, c-format msgid "Venezuela" msgstr "Venezuela" #: lang.pm:528 #, c-format msgid "Virgin Islands (British)" msgstr "Brittiläiset Neitsytsaaret" #: lang.pm:529 #, c-format msgid "Virgin Islands (U.S.)" msgstr "Yhdysvaltain Neitsytsaaret" #: lang.pm:530 #, c-format msgid "Vietnam" msgstr "Vietnam" #: lang.pm:531 #, c-format msgid "Vanuatu" msgstr "Vanuatu" #: lang.pm:532 #, c-format msgid "Wallis and Futuna" msgstr "Wallis ja Futuna" #: lang.pm:533 #, c-format msgid "Samoa" msgstr "Samoa" #: lang.pm:534 #, c-format msgid "Yemen" msgstr "Jemen" #: lang.pm:535 #, c-format msgid "Mayotte" msgstr "Mayotte" #: lang.pm:536 mirror.pm:46 timezone.pm:218 #, c-format msgid "South Africa" msgstr "Etelä-Afrikka" #: lang.pm:537 #, c-format msgid "Zambia" msgstr "Zambia" #: lang.pm:538 #, c-format msgid "Zimbabwe" msgstr "Zimbabwe" # mat #: lang.pm:1509 #, c-format msgid "Welcome to %s" msgstr "Tervetuloa %s:n" #: lvm.pm:128 #, c-format msgid "Moving used physical extents to other physical volumes failed" msgstr "Käytettyjen fyysisten jatkeiden siirto toiselle levylle epäonnistui" #: lvm.pm:194 #, c-format msgid "Physical volume %s is still in use" msgstr "Fyysinen osio %s on edelleen käytössä" #: lvm.pm:204 #, c-format msgid "Remove the logical volumes first\n" msgstr "Poista ensin loogiset osiot\n" #: lvm.pm:247 #, c-format msgid "The bootloader can't handle /boot on multiple physical volumes" msgstr "" "Käynnistyslatain ei osaa käsitellä usealla fyysisellä osiolla sijaitsevaa /" "boot-osiota tai hakemistoa" #. -PO: Only write something if needed: #: messages.pm:11 #, c-format msgid "_: You can warn about unofficial translation here" msgstr "" #: messages.pm:18 #, c-format msgid "Introduction" msgstr "Johdanto" #: messages.pm:20 #, c-format msgid "" "The operating system and the different components available in the Mageia " "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 Mageia distribution, and any " "applications \n" "distributed with these products provided by Mageia's licensors or suppliers." msgstr "" "HUOM!! Tämä on vapaasti suomennettu teksti Mageia -jakelun\n" "lisenssiehdoista. Alkuperäinen teksti löytyy tämän sivun lopusta.\n" "\n" "Käyttöjärjestelmään ja muihin Mageia -jakelun eri osiin viitataan\n" "tästä eteenpäin nimellä \"Ohjelmisto\". Ohjelmisto sisältää, mutta ei " "rajoitu\n" "ainoastaan niihin, pakettien yhdistelmät, menetelmät, säännöt ja\n" "dokumentaation, jotka kuuluvat käyttöjärjestelmään sekä Mageia\n" "-jakeluun kuuluvat komponentit." #: messages.pm:27 #, c-format msgid "1. License Agreement" msgstr "1. Käyttöoikeussopimus (\"Lisenssi\")" #: messages.pm:29 #, c-format msgid "" "Please read this document carefully. This document is a license agreement " "between you and \n" "Mageia which applies to the Software Products.\n" "By installing, duplicating or using any of 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." msgstr "" "Ole hyvä ja lue tämä dokumentti huolellisesti. Tämä dokumentti on Lisenssi-\n" "sopimus sinun ja Mageia:n välillä ja koskee Ohjelmistoa.\n" "Asentamalla, kopioimalla tai käyttämällä Ohjelmistoa millä tavalla tahansa,\n" "annat nimenomaisen hyväksynnän ja suostut noudattamaan tämän Lisenssin\n" "sääntöjä ja ehtoja. Jos et suostu johonkin osaan tästä Lisenssistä,\n" "sinulla ei ole lupaa asentaa, kopioida tai käyttää tätä Ohjelmistoa. Mitään\n" "yritystä asentaa, kopioida tai käyttää Ohjelmistoa tavalla, joka ei ole " "tämän\n" "Lisenssin sääntöjen ja ehtojen mukainen, ei hyväksytä ja sen kaltaiset\n" "yritykset päättävät oikeutesi tämän Lisenssin alla välittömästi. Lisenssin\n" "päättyessä sinun pitää välittömästi tuhota kaikki Ohjelmiston kopiot." #: messages.pm:41 #, c-format msgid "2. Limited Warranty" msgstr "2. Rajoitettu takuu" #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX #: messages.pm:44 #, c-format msgid "" "The Software Products and attached documentation are provided \"as is\", " "with no warranty, to the \n" "extent permitted by law.\n" "Neither Mageia nor its licensors or suppliers will, in any circumstances and " "to the extent \n" "permitted by law, be liable for any special, incidental, direct or indirect " "damages whatsoever \n" "(including without limitation damages for loss of business, interruption of " "business, financial \n" "loss, legal fees and penalties resulting from a court judgment, or any other " "consequential loss) \n" "arising out of the use or inability to use the Software Products, even if " "Mageia or its \n" "licensors or suppliers have been advised of the possibility or occurrence of " "such damages.\n" "\n" "LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME " "COUNTRIES\n" "\n" "To the extent permitted by law, neither Mageia nor its licensors, suppliers " "or\n" "distributors will, in any circumstances, be liable for any special, " "incidental, direct or indirect \n" "damages whatsoever (including without limitation damages for loss of " "business, interruption of \n" "business, financial loss, legal fees and penalties resulting from a court " "judgment, or any \n" "other consequential loss) arising out of the possession and use of software " "components or \n" "arising out of downloading software components from one of Mageia sites " "which are \n" "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" "However, because some jurisdictions do not allow the exclusion or limitation " "of liability for \n" "consequential or incidental damages, the above limitation may not apply to " "you." msgstr "" "Ohjelmisto ja sen mukana seuraavat dokumentaatiot tarjotaan sellaisenaan,\n" "ilman mitään takuita, voimassa olevan lain rajojen sisällä. Sikäli kuin\n" "takuuta ei voimassa olevan lain mukaan voi kiistää tai rajoittaa, Mageia S." "A. ei\n" "missään nimessä ole vastuussa erikoisista, odottamattomista, välittömistä\n" "tai välillisistä vahingoista (sisältäen ilman rajoituksia vahingot " "menetetystä\n" "työstä, työn keskeytyksestä, taloudellisesta tappiosta, laillisista\n" "kustannuksista ja sakoista johtuen tuomioistuimen päätöksestä, tai minkä\n" "tahansa muun merkittävän tappion takia) jotka syntyvät käytöstä tai\n" "kyvyttömyydestä käyttää Ohjelmistoa, vaikka Mageia:lle olisi\n" "tiedotettu tällaisen vahingon mahdollisuuden tai tapahtuman olemassaolosta.\n" "\n" "RAJOITETTU VASTUU JOKA LIITTYY KIELLETTYJEN OHJELMIEN\n" "KÄYTTÖÖN TAI HALLUSSAPITOON JOISSAKIN MAISSA\n" "\n" "Sikäli kuin takuuta ei voimassa olevan lain mukaan voi kiistää tai\n" "rajoittaa, Mageia tai sen jakelijat eivät missään nimessä ole\n" "vastuussa erikoisista, odottamattomista, välittömistä tai välillisistä\n" "vahingoista (sisältäen ilman rajoituksia vahingot menetetystä työstä,\n" "työn keskeytyksestä, taloudellisesta tappiosta, laillisista kustannuksista\n" "ja sakoista johtuen tuomioistuimen päätöksestä, tai minkä tahansa muun\n" "merkittävän tappion takia), jotka johtuvat ohjelmistokomponenttien\n" "hallussapidosta tai käytöstä tai jotka johtuvat ohjelmistokomponenttien\n" "lataamisesta joltakin Mageiain sivustolta, jotka ovat kiellettyjä tai\n" "rajoitettuja joissakin maissa paikallisen lain voimalla.\n" "\n" "Tämä rajoitettu vastuu koskee, muttei rajoitu niihin, vahvaa salausta\n" "käyttäviä komponentteja jotka kuuluvat Ohjelmistoon.\n" "Kuitenkin, koska joitakin oikeusalueet eivät salli vastuun poissulkeminen\n" "tai rajoittaminen tahallisista tai tahottomista vahingoista, yllä oleva\n" "rajoitus voi olla soveltamaton sinulle. " #: messages.pm:68 #, c-format msgid "3. The GPL License and Related Licenses" msgstr "3. GPL ja samankaltaiset lisenssit" #: messages.pm:70 #, fuzzy, c-format msgid "" "The Software Products consist of components created by different persons or " "entities.\n" "Most of these licenses allow you to use, duplicate, adapt or redistribute " "the components which \n" "they cover. Please read carefully the terms and conditions of the license " "agreement for each component \n" "before using any component. Any question on a component license should be " "addressed to the component \n" "licensor or supplier and not to Mageia.\n" "The programs developed by Mageia are governed by the GPL License. " "Documentation written \n" "by Mageia is governed by \"%s\" License." msgstr "" "Ohjelmisto koostuu komponenteista, jotka ovat eri henkilöiden tai tahojen\n" "luomia. \n" "Suurimpaan osaan näistä komponenteista sovelletaan GNU General\n" "Public License:ä (Yleinen Julkinen Lisenssi), tästä eteenpäin \"GPL\" tai " "muiden\n" "sen kaltaisten lisenssien ehtoja ja sääntöjä. Suurin osa näistä " "lisensseistä\n" "sallii sinun kopioida, sovittaa ja levittää eteenpäin komponentteja joita " "ne\n" "koskevat. Ole hyvä ja lue jokaisen komponentin lisenssin ehdot ja säännöt\n" "ennen kuin käytät sitä. Jokainen kysymys koskien komponentin lisenssiä\n" "tulisi ohjata komponentin tekijälle Mageiain sijasta. Mageia:n\n" "tekemiin ohjelmiin sovelletaan GPL-lisenssiä. Mageia:n tekemiin\n" "dokumentaatioihin sovelletaan erillistä lisenssiä. Lue dokumentaatiota\n" "saadaksesi lisää tietoa." #: messages.pm:79 #, c-format msgid "4. Intellectual Property Rights" msgstr "4. Henkisten omaisuuksien oikeudet" #: messages.pm:81 #, c-format msgid "" "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" "Mageia and its suppliers and licensors reserves their rights to modify or " "adapt the Software \n" "Products, as a whole or in parts, by all means and for all purposes.\n" "\"Mageia\" and associated logos are trademarks of %s" msgstr "" "Kaikki oikeudet Ohjelmiston komponentteihin kuuluvat niiden tekijöille,\n" "ja ne ovat suojattuja älyllisten omaisuuksien- ja kopiointisuojalailla,\n" "jotka koskevat ohjelmistoja. Mageia pidättää oikeuden muokata\n" "tai sovittaa Ohjelmistoa, joko kokonaan tai osittain, kaikilla tavoilla\n" "jokaiseen tarpeeseen. \"Mageia\" ja kaikki niihin\n" "liittyvät logot ovat %s:n rekisteröityjä tavaramerkkejä." #: messages.pm:88 #, c-format msgid "5. Governing Laws" msgstr "5. Sovellettava laki." #: messages.pm:90 #, c-format msgid "" "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 Mageia." msgstr "" "Jos ilmenee, että jokin osa tästä sopimuksesta on mitätön, laiton tai\n" "täytäntöönpanokelvoton, kyseinen osa poistetaan sopimuksesta.\n" "Sopimus säilyy muilta osin pätevänä ja täytäntöönpanokelpoisena\n" "ehtojensa mukaisesti. Tämän sopimuksen ehtoja ja sääntöjä sovelletaan\n" "Ranskan lain mukaan. Kaikki kiistat tämän Lisenssin ehdoista pyritään\n" "selvittämään tuomioistuimen ulkopuolella. Viimeisenä vaihtoehtona\n" "kiista luovutetaan soveltuvaan tuomioistuimeen ratkaistavaksi Pariisissa,\n" "Ranskassa.\n" "\n" "Jos teillä on kysymyksiä tästä sopimuksesta, olkaa hyvä ja ottakaa yhteyttä\n" "Mageia:iin.\n" "\n" "ALKUPERÄINEN ENGLANNINKIELINEN TEKSTI:\n" "\n" "\n" "Introduction\n" "\n" "The operating system and the different components available in the\n" "Mageia distribution shall be called the \"Software Products\"\n" "hereafter. The Software Products include, but are not restricted to,\n" "the set of programs, methods, rules and documentation related to\n" "the operating system and the different components of the Mageia\n" "Linux distribution, and any applications distributed with these products\n" "provided by Mageia's licensors or suppliers.\n" "\n" "\n" "1. License Agreement\n" "\n" "Please read this document carefully. This document is a license agreement\n" "between you and Mageia which applies to the Software Products.\n" "By installing, duplicating or using any of the Software Products in any " "manner,\n" "you explicitly accept and fully agree to conform to the terms and " "conditions\n" "of this License. \n" "If you disagree with any portion of the License, you are not allowed to " "install,\n" "duplicate or use the Software Products. Any attempt to install, duplicate " "or\n" "use the Software Products in a manner which does not comply with the terms\n" "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\n" "copies of the Software Products.\n" "\n" "\n" "2. Limited Warranty\n" "\n" "The Software Products and attached documentation are provided \"as is\",\n" "with no warranty, to the extent permitted by law. Neither Mageia\n" "nor its licensors or suppliers will, in any circumstances and to the extent\n" "permitted by law, be liable for any special, incidental, direct or indirect\n" "damages whatsoever (including without limitation damages for loss of\n" "business, interruption of business, financial loss, legal fees and " "penalties\n" "resulting from a court judgment, or any other consequential loss) arising\n" "out of the use or inability to use the Software Products, even if Mageia\n" "S.A. or its licensors or suppliers have been advised of the possibility or\n" "occurrence of such damages.\n" "\n" "LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE\n" "IN SOME COUNTRIES\n" "\n" "To the extent permitted by law, neither Mageia nor its licensors, suppliers\n" "or distributors will, in any circumstances, be liable for any special, " "incidental,\n" "direct or indirect damages whatsoever (including without limitation damages\n" "for loss of business, interruption of business, financial loss, legal fees " "and\n" "penalties resulting from a court judgment, or any other consequential loss)\n" "arising out of the possession and use of software components or arising out\n" "of downloading software components from one of Mageia sites which\n" "are prohibited or restricted in some countries by local laws.This limited " "liability\n" "applies to, but is not restricted to, the strong cryptography components " "included\n" "in the Software Products.\n" "However, because some jurisdictions do not allow the exclusion or " "limitation\n" "of liability for consequential or incidental damages, the above limitation " "may not\n" "apply to you.\n" "\n" "\n" "3. The GPL License and Related Licenses\n" "\n" "The Software Products consist of components created by different persons or\n" "entities. Most of these licenses allow you to use, duplicate, adapt or \n" "redistribute the components which they cover. Please read carefully the " "terms\n" "and conditions of the license agreement for each component before using any\n" "component. Any question on a component license should be addressed to the\n" "component licensor or supplier and not to Mageia.\n" "The programs developed by Mageia are governed by the GPL License.\n" "Documentation written by Mageia is governed by a specific license.\n" "Please refer to the documentation for further details.\n" "\n" "\n" "4. Intellectual Property Rights\n" "\n" "All rights to the components of the Software Products belong to their " "respective\n" "authors and are protected by intellectual property and copyright laws " "applicable\n" "to software programs.Mageia and its suppliers and licensors reserves their\n" "rights to modify or adapt the Software Products, as a whole or in parts, by " "all\n" "means and for all purposes. \"Mageia\" and associated logos\n" "are trademarks of Mageia.Org\n" "\n" "\n" "5. Governing Laws \n" "\n" "If any portion of this agreement is held void, illegal or inapplicable by a " "court\n" "judgment, this portion is excluded from this contract. You remain bound by " "the\n" "other applicable sections of the agreement. The terms and conditions of " "this\n" "License are governed by the Laws of France. All disputes on the terms of " "this\n" "license will preferably be settled out of court. As a last resort, the " "dispute will\n" "be referred to the appropriate Courts of Law of Paris - France.\n" "For any question on this document, please contact Mageia" #: messages.pm:102 #, c-format msgid "" "Warning: Free Software may not necessarily be patent free, and some Free\n" "Software included may be covered by patents in your country. For example, " "the\n" "MP3 decoders included may require a license for further usage (see\n" "http://www.mp3licensing.com for more details). If you are unsure if a " "patent\n" "may be applicable to you, check your local laws." msgstr "" "Varoitus: Vapaa Ohjelmisto ei välttämättä ole patenttivapaa ja jotkin\n" "jakelussa olevat paketit saattavat olla patenttien alaisuudessa maassasi.\n" "Esimerkiksi mukana olevat MP3-purkajat voivat vaatia lisenssin, jotta saat\n" "käyttää sitä jatkuvasti (katso http://www.mp3licensing.com saadaksesi\n" "lisätietoa). Jos olet epävarma siitä, koskeeko jokin patentti sinua,\n" "selvitä asiaa paikallisten viranomaisten kanssa.\n" "\n" "\n" "Warning: Free Software may not necessarily be patent free, and some Free\n" "Software included may be covered by patents in your country. For example,\n" "the MP3 decoders included may require a license for further usage (see\n" "http://www.mp3licensing.com for more details). If you are unsure if a " "patent\n" "may be applicable to you, check your local laws." #: messages.pm:111 #, c-format msgid "" "Congratulations, installation is complete.\n" "Remove the boot media and press Enter to reboot." msgstr "" "Onnittelut, asennus on valmis.\n" "Poista asennusmedia ja käynnistä kone uudelleen painamalla Enter." #: messages.pm:113 #, c-format msgid "" "For information on fixes which are available for this release of Mageia,\n" "consult the Errata available from:\n" "%s" msgstr "" "Asennettuun Mageiain versioon saatavilla olevat korjaukset ja\n" "korjattujen virheiden lista löytyy osoitteesta:\n" "%s" #: messages.pm:115 #, c-format msgid "" "After rebooting and logging into Mageia, you will see the MageiaWelcome " "screen.\n" "It is full of very useful information and links." msgstr "" #: modules/interactive.pm:19 #, c-format msgid "This driver has no configuration parameter!" msgstr "Ajurilla ei ole muutettavia asetusparametreja" #: modules/interactive.pm:22 #, c-format msgid "Module configuration" msgstr "Moduulien asetukset" #: modules/interactive.pm:22 #, c-format msgid "You can configure each parameter of the module here." msgstr "Muokkaa moduulin parametreja." #: modules/interactive.pm:64 #, c-format msgid "Found %s interfaces" msgstr "Löydetty %s liitäntää" #: modules/interactive.pm:65 #, c-format msgid "Do you have another one?" msgstr "Onko tietokoneessa muita?" #: modules/interactive.pm:66 #, c-format msgid "Do you have any %s interfaces?" msgstr "Onko koneessa liitäntää %s?" #: modules/interactive.pm:72 #, c-format msgid "See hardware info" msgstr "Katso laitteistotietoja" #: modules/interactive.pm:83 #, c-format msgid "Installing driver for USB controller" msgstr "Asennetaan ajuria USB-ohjaimelle" #: modules/interactive.pm:84 #, c-format msgid "Installing driver for firewire controller \"%s\"" msgstr "Asennetaan ajuria FireWire-ohjaimelle \"%s\"" #: modules/interactive.pm:85 #, c-format msgid "Installing driver for hard disk drive controller \"%s\"" msgstr "Asennetaan ajuria kiintolevyohjaimelle \"%s\"" #: modules/interactive.pm:86 #, c-format msgid "Installing driver for ethernet controller \"%s\"" msgstr "Asennetaan ajuria verkkokortille \"%s\"" #. -PO: the first %s is the card type (scsi, network, sound,...) #. -PO: the second is the vendor+model name #: modules/interactive.pm:97 #, c-format msgid "Installing driver for %s card %s" msgstr "Asennetaan ajuria %s-ohjaimelle \"%s\"" #: modules/interactive.pm:100 #, c-format msgid "Configuring Hardware" msgstr "Määritellään laitteistoa" #: modules/interactive.pm:111 #, c-format msgid "" "You may now provide options to module %s.\n" "Note that any address should be entered with the prefix 0x like '0x123'" msgstr "" "Moduulin %s asetukset voidaan nyt määritellä.\n" "Huomaa, että osoite täytyy määrittää etuliitteellä '0x' varustettuna, esim. " "0x123." #: modules/interactive.pm:117 #, 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 "" "Moduulille %s voidaan nyt antaa lisäasetuksia.\n" "Asetukset ovat muotoa \"nimi=arvo nimi2=arvo2 ...\".\n" "Esim. \"io=0x300 irq=7\"" #: modules/interactive.pm:119 #, c-format msgid "Module options:" msgstr "Moduulin asetukset:" #. -PO: the %s is the driver type (scsi, network, sound,...) #: modules/interactive.pm:132 #, c-format msgid "Which %s driver should I try?" msgstr "Mitä %s-ajuria kokeillaan?" #: modules/interactive.pm:141 #, c-format msgid "" "In some cases, the %s driver needs to have extra information to work\n" "properly, although it normally works fine without them. Would you like to " "specify\n" "extra options for it or allow the driver to probe your machine for the\n" "information it needs? Occasionally, probing will hang a computer, but it " "should\n" "not cause any damage." msgstr "" "Joissakin tapauksissa %s-ajuri tarvitsee lisätietoja toimiakseen kunnolla,\n" "joskin tavallisesti se toimii hyvin ilmankin. Annetaanko ajurille " "lisämääreitä\n" "vai annetaanko sen itse etsiä tarvitsemansa tiedot? Joskus haku voi\n" "jumiuttaa tietokoneen, mutta sen ei pitäisi aiheuttaa vahinkoa." #: modules/interactive.pm:145 #, c-format msgid "Autoprobe" msgstr "Automaattitunnistus" #: modules/interactive.pm:145 #, c-format msgid "Specify options" msgstr "Lisäasetukset" #: modules/interactive.pm:157 #, c-format msgid "" "Loading module %s failed.\n" "Do you want to try again with other parameters?" msgstr "" "Moduulin %s lataaminen epäonnistui.\n" "Yritetäänkö muilla asetuksilla?" #: mygtk2.pm:1229 mygtk3.pm:1283 #, fuzzy, c-format msgid "Are you sure you want to quit?" msgstr "Haluatko varmasti poistaa liitospisteen?" #: mygtk2.pm:1570 mygtk2.pm:1571 mygtk3.pm:1650 mygtk3.pm:1651 #, c-format msgid "Password is trivial to guess" msgstr "Salasana on yksinkertainen arvata" #: mygtk2.pm:1572 mygtk3.pm:1652 #, c-format msgid "Password should be resistant to basic attacks" msgstr "Salasanan pitäisi kestää normaalit hyökkäykset" #: mygtk2.pm:1573 mygtk2.pm:1574 mygtk3.pm:1653 mygtk3.pm:1654 #, c-format msgid "Password seems secure" msgstr "Salasana vaikuttaa turvalliselta" #: partition_table.pm:403 #, c-format msgid "mount failed: " msgstr "Liittäminen epäonnistui: " #: partition_table.pm:529 #, c-format msgid "" "You have a hole in your partition table but I cannot use it.\n" "The only solution is to move your primary partitions to have the hole next " "to the extended partitions." msgstr "" "Osiotaulussa on reikä, eikä sitä voida käyttää.\n" "Ainoa ratkaisu on siirtää ensisijaisia osioita siten, että reikä on ennen " "laajennettuja osioita" #: partition_table/raw.pm:293 #, c-format msgid "" "Something bad is happening on your hard disk 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 "" "Kiintolevylle on tapahtunut jotakin kamalaa.\n" "Tiedon oikeellisuuden tarkistus epäonnistui.\n" "Tämä tarkoittaa, että kaikki asemalle kirjoitettu\n" "tieto muuttuu tunnistamattomaksi." #: pkgs.pm:260 pkgs.pm:263 pkgs.pm:276 #, c-format msgid "Unused packages removal" msgstr "Käyttämättömien pakettien poisto" #: pkgs.pm:260 #, c-format msgid "Finding unused hardware packages..." msgstr "Etsitään käyttämättömiä laitteisto-paketteja..." #: pkgs.pm:263 #, c-format msgid "Finding unused localization packages..." msgstr "Etsitään käyttämättömiä kieli-paketteja..." #: pkgs.pm:277 #, c-format msgid "" "We have detected that some packages are not needed for your system " "configuration." msgstr "" "Asennusohjelma havaitsi, että osa asennetuista paketeista on tarpeettomia." #: pkgs.pm:278 #, c-format msgid "We will remove the following packages, unless you choose otherwise:" msgstr "Seuraavat paketit poistetaan:" #: pkgs.pm:281 pkgs.pm:282 #, c-format msgid "Unused hardware support" msgstr "Käyttämättömät laitteistopaketit" #: pkgs.pm:285 pkgs.pm:286 #, c-format msgid "Unused localization" msgstr "Käyttämättömät kieli-paketit" #: raid.pm:59 #, c-format msgid "Cannot add a partition to _formatted_ RAID %s" msgstr "_Alustetulle_ RAID:lle (%s) ei voitu lisätä osiota." #: raid.pm:200 #, c-format msgid "Not enough partitions for RAID level %d\n" msgstr "RAID-tasolle %d ei löydy tarpeeksi käytettäviä osioita\n" #: scanner.pm:95 #, c-format msgid "Could not create directory /usr/share/sane/firmware!" msgstr "Hakemistoa /usr/share/sane/firmware ei voitu luoda!" #: scanner.pm:106 #, c-format msgid "Could not create link /usr/share/sane/%s!" msgstr "Linkkiä /usr/share/sane/%s ei voitu luoda!" #: scanner.pm:113 #, c-format msgid "Could not copy firmware file %s to /usr/share/sane/firmware!" msgstr "" "Firmware-tiedostoa %s ei voitu kopioida kohteeseen /usr/share/sane/firmware" #: scanner.pm:120 #, c-format msgid "Could not set permissions of firmware file %s!" msgstr "Firmware-tiedoston %s oikeuksia ei voitu asettaa!" #: scanner.pm:199 #, c-format msgid "Scannerdrake" msgstr "ScannerDrake" #: scanner.pm:200 #, c-format msgid "Could not install the packages needed to share your scanner(s)." msgstr "Kuvanlukijan jakamiseen tarvittavia paketteja ei voitu asentaa." #: scanner.pm:201 #, c-format msgid "Your scanner(s) will not be available for non-root users." msgstr "Kuvanlukija ei ole käytettävissä muille kuin pääkäyttäjälle." #: security/help.pm:11 #, c-format msgid "Accept bogus IPv4 error messages." msgstr "Hyväksy virheelliset IPv4-virheviestit." #: security/help.pm:13 #, c-format msgid "Accept broadcasted icmp echo." msgstr "Hyväksy yleislähetysosoitteeseen (broadcast) lähetetyt Ping-viestit" #: security/help.pm:15 #, c-format msgid "Accept icmp echo." msgstr "Hyväksy Ping-viestit\"." #: security/help.pm:17 #, c-format msgid "Allow autologin." msgstr "Salli automaattinen kirjautuminen." #. -PO: here "ALL" is a value in a pull-down menu; translate it the same as "ALL" is #: security/help.pm:21 #, c-format msgid "" "If set to \"ALL\", /etc/issue and /etc/issue.net are allowed to exist.\n" "\n" "If set to \"None\", no issues are allowed.\n" "\n" "Else only /etc/issue is allowed." msgstr "" "Jos valittu asetus \"KAIKKI\", tiedostojen /etc/issue ja /etc/issue.net " "olemassaolo sallitaan.\n" "\n" "Jos valittu asetus \"EI\", kummankaan tiedoston olomassaoloa ei sallita.\n" "\n" "Muutoin sallitaan ainoastaan tiedosto /etc/issue." #: security/help.pm:27 #, c-format msgid "Allow reboot by the console user." msgstr "Salli konsolikäyttäjän käynnistää kone uudelleen." #: security/help.pm:29 #, c-format msgid "Allow remote root login." msgstr "Salli pääkäyttäjän etäkirjautuminen." #: security/help.pm:31 #, c-format msgid "Allow direct root login." msgstr "Salli pääkäyttäjän kirjautuminen paikallisesti." #: security/help.pm:33 #, c-format msgid "" "Allow the list of users on the system on display managers (sddm and gdm)." msgstr "Salli käyttäjien listaus kirjautumisikkunassa (SDDM ja GDM)." #: security/help.pm:35 #, c-format msgid "" "Allow to export display when\n" "passing from the root account to the other users.\n" "\n" "See pam_xauth(8) for more details.'" msgstr "" "Salli näytön edelleenohjaus,\n" "kun siirrytään root-tililtä muille tileille.\n" "\n" "Lisätietoja komennolla \"man pam_xauth\"." #: security/help.pm:40 #, c-format msgid "" "Allow X connections:\n" "\n" "- \"All\" (all connections are allowed),\n" "\n" "- \"Local\" (only connection from local machine),\n" "\n" "- \"None\" (no connection)." msgstr "" "Salli X-yhteydet:\n" "\n" "- \"KAIKKI\" (kaikki yhteydet sallitaan),\n" "\n" "- \"PAIKALLINEN\" (ainoastaan paikalliset yhteydet),\n" "\n" "- \"EI\" (ei yhteyttä)." #: security/help.pm:48 #, c-format msgid "" "The argument specifies if clients are authorized to connect\n" "to the X server from the network on the tcp port 6000 or not." msgstr "" "Parametri määrittää, sallitaanko asiakkaiden yhdistää X-palvelimeen\n" "TCP-porttiin 6000." #. -PO: here "ALL", "Local" and "None" are values in a pull-down menu; translate them the same as they're #: security/help.pm:53 #, c-format msgid "" "Authorize:\n" "\n" "- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if " "set to \"ALL\",\n" "\n" "- only local ones if set to \"Local\"\n" "\n" "- none if set to \"None\".\n" "\n" "To authorize the services you need, use /etc/hosts.allow (see hosts." "allow(5))." msgstr "" "Salli:\n" "\n" "- kaikki palvelut joita ohjataan tcp_wrappers:ien kautta (katso hosts." "deny(5)) jos valittuna on asetus \"KAIKKI\",\n" "\n" "- vain paikalliset palvelut, jos valittuna on asetus \"PAIKALLINEN\",\n" "\n" "- ei mitään palvelua, jos valittuna on asetus \"EI\". \n" "\n" "Salliaksesi tarvitsemasi palvelut, käytä /etc/hosts.allow (katso hosts." "allow(5))." #: security/help.pm:63 #, c-format msgid "" "If SERVER_LEVEL (or SECURE_LEVEL if absent)\n"