summaryrefslogtreecommitdiffstats
path: root/perl-install/NEWS
blob: bb734e91a3f86fa490186f35df44d011a971437a (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
- finish-install: do not offer to configure 3D desktop if none is
  installed (requires drak3d >= 1.27)
- mount windows partitions under /media instead of /mnt (#53392)

Version 12.65 - 14 October 2009

- partitioning wizard:
  o allow using existing partition on all disks (#54478)
  o reduce drawings height
  o fix windows resize width
- use UTF-8 for zh_TW (#53976)
- bootloader:
  o use initrd-2.6.30.2-xen-5mdv.img instead of initrd-xen-2.6.30.2-xen-5mdv.img
  o do not link /boot/vmlinuz to xen while allowing a unversioned /boot/vmlinuz-xen

Version 12.64 - 12 October 2009

- run_program layer:
  o keep a copy of the X11 cookie
  o try harder to drop privileges
- partitioning wizard:
  o put back "previous" button on actions (#54475)
  o fix typo in message
  o fix testing interactive::gtk in standalone mode
  o fix displaying help
- drakups
  o fix crash (#54399)

Version 12.63 - 9 October 2009

- drakboot:
  o fix displaying arrows

Version 12.62 - 9 October 2009

- autologin/desktop configuration (shared code):
  o fix guessing dm name from lookupdm
  o abort configuration if dm install fails

Version 12.61 - 8 October 2009

- partitionning_wizard:
  o do not fail when a windows partition is corrupted
  o add separator between solutions
  o give more space between header and solutions
  o prevent cursor to go under needed size because of rounding
  o chose windows resizing when clicking on the resize handle (not perfect)
  o improve resizing captions layout
- autologin/desktop configuration (shared code):
  o fix /etc/X11/lookupdm usage during install (for default dm selection)
  o use gdm for xfce4 and LXDE

Version 12.59 - 7 October 2009

- add back ram devices support (used by draklive)
- do not set mountpoints for rescue partitions (#53504)
- factorize default FS definition
- switch to ext4 by default

Version 12.58 - 5 October 2009

- display_help
  o block right click contextual menu
  o do not display "Help" title for first time wizard

Version 12.57 - 5 October 2009

- drakboot:
  o fix crash on clicking Up/Down buttons (#54077)

Version 12.56 - 30 September 2009

- harddrake:
  o better check for PCI Express capability
  o nicer display of PCI Express name

Version 12.55 - 23 September 2009

- harddrake:
  o display PCI revision (#42576)
  o report if devices are PCI or PCI Express (#28479)

Version 12.54 - 23 September 2009

- drakboot:
  o don't detect disks if we are not in bootloader or splash mode
- autologin/desktop configuration (drakboot/finish-install):
  o when detecting default desktop, use first session
    (instead of using hacks with dm config files)
  o guess display manager from /etc/sysconfig/desktop,
    or default session, or /etc/X11/lookupdm
  o read autologin settings from /etc/sysconfig/autologin as fallback
  o read kdm config file only if kdm is to be used
  o always ensure dm is installed before configuring autologin/desktop
  o test display manager instead of desktop when configuring autologin
  o always write /etc/sysconfig/desktop
  o write DISPLAYMANAGER in /etc/sysconfig/desktop too
  o only write dm conf files if they exist before

Version 12.53 - 22 September 2009

- drakxtools_http:
  o use LSB-compliant init script
- drakboot:
  o use stock icons for up & down buttons in order to pack them
    horizontaly so that we fit in default sizing(#53703)
- drakhelp
  o fix check for missing help
- diskdrake
  o suggest a LVM name and refuse empty or existing one (#53769)
  o prefer UUID on VirtIO too
  o don't consider lvm named md* as raid (#53767)
  o allow resizing ext4
- fix touchscreen module list
- list asix module in network/usb group

Version 12.51 - 8 September 2009

- display_help
  o new small webkit based browser for rendering help and for FTW
- harddrake:
  o fix detecting some memory card readers as unknown
  o allow to skip XFdrake framebuffer setup (and thus splash removal)
    if SETUP_FB is set to "no" in /etc/sysconfig/harddrake2/service.conf
    (requires drakx-kbd-mouse-x11 >= 0.79)

Version 12.49 - 8 September 2009

- mygtk2:
  o created 'WeaknessCheckEntry' widget
- adduserdrake:
  o added tooltip text to weakness icon
  o now use 'WeaknessCheckEntry' widget

Version 12.48 - 7 September 2009

- mygtk2: 
  o HScale widget: added digits and ref_value options
  o HScale widget: fix for value option
- adduserdrake:
  o use icons to display password weakness
- added security-{low,medium,strong}.png pixmaps used for 
  password weakness display
- authentication:
  o reduced password weakness check level
- draksound:
  o Fix soundprofile alternatives setting by using a more appropriate subroutine

Version 12.46 - 28 August 2009

- handle new drivers: 
  o DVB: dvb-usb-ce6230
  o sound: snd-indigodjx, snd-indigoiox, snd-lx6464es
  o wireless: ar9170usb, mwl8k, r8192s_usb, rt2800usb, rt3070sta
- adduserdrake
  o added weakness check for root password
- drakboot:
  o fix crash bug #52997
- diskdrake:
  o fix for libparted 1.9 (#52991)
- detect_devices:
  o fix VirtIO devices support

Version 12.45 - 18 August 2009 

- drakbug
  o Top textbox shrinked
  o Added browse button
- drakhelp
  o fix firefox launch bug #29775
- added the ability to add up/down buttons in add_modify_remove list 
  of interactive
- drakboot :
  o user is now able to re-order bootloader entries
- diskdrake
  o never pass username/password as options with davfs2 
  o store credentials in davfs2 secret file before mounting
  o when user does not specify user/pass with davfs2, fallback to nobody/nobody
  o Fix a crash with regexp when a /etc/davfs2/secrets line is 
    finished with one or more blank characters without comments
  o added the ability to exit the davfs2 mountpoint settings panel
  o added delete mountpoint support for davfs2
- adduserdrake
  o now use password weakness display
- added password weakness display feature in interactive
- handle new drivers: 
  o sound: snd_ctxfi
- draksound
  o fix enabling and disabling with udev-detect properly (new PA)
  o introduce the concept of soundprofiles for enabling/disabling PA
  o remove alsa->pulse routing option (enabling pulse but not alsa redirection is a niche setup)

Version 12.44 - 13 August 2009 

- fix parsing dmidecode output (broken since we use dmidecode-2.10,
  aka since November 24 2008) (#50106)
- localedrake
  o add "English (South Africa)" (#51057)
- fix window creation (#52812)
- don't add useless install lines in modprobe.conf

Version 12.43 - 10 August 2009 

- draksound
  o handle udev-detect module too (new PA)
- diskdrake
  o do not display nmblookup usage when there is no samba server
  o do not crash when /etc/davfs2/secrets contains empty lines (like
    the default one) (#52305)
  o do not crash when trying to create a partition on a device with 
    no cylinder_size
  o fix two crashes on handling devices
- use gtk instead of X to focus window

Version 12.40 - 22 July 2009

- lookup unlisted devices in /sys (or /proc) when looking for 
  major/minor of a device (#49339)
- don't log the links we ignore when looking for scsi devices (#49406)

Version 12.39 - 16 Jun 2009

- properly handle hidden variables in installer and diskdrake.

Version 12.38 - 12 Jun 2009

- use Hal list of recovery partitions (#51532)
- use blkid instead of vol_id which we no longer ship

Version 12.37 - 02 Jun 2009

- fixed crash when trying to get input devices (#51308)

Version 12.36 - 29 May 2009

- added support for toggling 'hidden' parameter on widgets.
- ide-disk module is now named ide-gd_mod
- add new 'touchpad' TYPE to rpmsrate
- add support for ElanTech touchpads (found on EEEPCs)
- harddrake:
  o adding sierra module to network/cellular.
  o fix detecting scanners
- scannerdrake:
  o do not reject scanners handled by 'usbcore' driver
- detect_devices:
  o don't ignore FB-DIMM memory

Version 12.32 - 23 April 2009

- don't set umask=0 by default on windows partitions in 'secure' level. 
- handle virtio block devices

Version 12.31 - 22 April 2009

- diskdrake:
  o handle partition starting after 1To

Version 12.30 - 21 April 2009

- add a basic testsuite (ensuring it compiles) in order to prevent
  future crashes like #50009
- diskdrake:
  o display a progress bar while formating an ext4 partition
  o render ext4 partition as red like ext3 ones
- finish-install:
  o ensure ntp package is installed when configuring ntp
- harddrake:
  o fix wrongly selecting some 32bits packages on x86_64 (#50148)
- service_harddrake:
  o do not crash if loading new drivers fails
    (happened with amd64_agp wrongly listed in pcitable, #43870)

Version 12.29 - 21 April 2009

- finish-install:
  o handle both "ll_CC" and "ll" locales parameter (#49914)
- harddrake:
  o do not offer to install java plugin (#48520)

Version 12.28.2 - 19 April 2009

- harddrake:
  o always detect PCI modems (even when (slow) detecting serial modems
    is disabled) (#48017)
  o do not offer to install KDE packages on GNOME or LXDE (#49671)

Version 12.28.1 - 16 April 2009

- diskdrake:
  o fix crash (#50009)

Version 12.28 - 15 April 2009

- diskdrake:
  o handle md devices not called md\d+, like md_d127
  o display an error when mount fails during View action
- bootloader:
  o keep grub entries which refer to unknown devices verbatim instead 
    of crashing (#48728)

Version 12.27 - 14 April 2009

- diskdrake:
  o Only write raid config into $::prefix if we are in install mode,
    this fixes draklive-install which should write to /etc directly as
    $::prefix does not yet exist (#49632)
- draksound:
  o enable to enable/disable glitch-free feature of PA
- harddrake:
  o do not open branches by default
  o fix listing some ATA (eg: pata_marvell) devices as unknown

Version 12.25 - 08 April 2009

- harddrake service:
  o do not try to add media to /etc/fstab (#49621)
  o do not check anymore for disks on startup
- harddrake:
  o list card readers as system components instead of unknows devices
  o when device has no description, use vendor string
- bootloader: add large-memory option to lilo

Version 12.24 - 03 April 2009

- fixed crypto module names when arch is not i586 (#46814)
- drakauth:
  o handling winbind configuration when REALM != DNS (#49189)
- handle new drivers:
  o gigabit: be2net, slicoss
  o wireless: agnx, arusb_lnx
  o dvb: dvb-usb-dtv5100

Version 12.20 - 30 March 2009

- draksec:
  o added support for drakroam authentication (#29566).
- changed X server restart routing not to rely on ctrl-alt-del (#49059).
- fixed a typo in list_modules for virtio modules
- diskdrake:
  o updated list of filesystems not handling bad blocks checking
  o display label in the graphical view when no mountpoint is set
  o always display label in partition info
- handle new drivers:
  o wireless: iwlagn

Version 12.18 - 25 March 2009

- add new Entry infrastructure for rpmdrake
- detect_devices:
  o only look at valid scsi devices in /sys

Version 12.17.1 - 21 March 2009

- fix syntax error in nb translation file

Version 12.17 - 21 March 2009

- add infrastucture for detecting vmware
- diskdrake:
  o allow LVM in non expert mode
  o allow Encrypted partition inside LVM

Version 12.16 - 18 March 2009

- handle new drivers:
  o wireless: wl
- diskdrake:
  o don't crash when creating a partition in LVM with the partition type 
    buttons (#38078)
  o write partition table if needed before setting label
  o fix setting label on not yet formatted partition
- drakbug:
  o add error to summary when crashing in order to help sort duplicates

Version 12.5 - 5 March 2009

- handle new drivers
  o dvb: dm1105, dvb-usb-af9015, dvb-usb-cinergyT2, firedtv
  o ethernet: smsc9420
  o gigabit: atl1c
  o pata: cs5536, it8172, it821x
  o ISDN: hfcpci, hfcmulti, hfcsusb, solos-pci
  o USB controllers: hwa-hc, whci-hcd
  o wireless: ath9k, i2400m-usb, rt2860, rt2870 and rtl8187se
- drakauth:
  o only install and enable pam_ccreds when required (#44027)
- finish-install:
  o finit support
  o give console rights for current session when renaming user
- drakdvb:
  o install w_scan if needed (#48242)
- harddrake:
  o all "gpsca*" driven devices are webcam
- localdrake/finish-install:
  o fix reading default input method setting
- remove extents options on ext4 when updating fstab

Version 11.91 - 25 February 2009

- harddrake:
  o hide module configuration button if needed (#16678)
  o remove empty module parameter instead of writing them  (#40581)
- harddrake service:
  o prevent wrongly notifying we switched from proprietary to free
    driver (anssi, #41969)
    (regression introduced in 11.70 on 16 October 2008)

Version 11.90 - 25 February 2009

- drakboot
  o do not crash b/c ext4 was forbidden for /boot (#47853)
- diskdrake
  o really don't set extents option for ext4
- drakdvb:
  o sort channels list
  o prefer vlc if present
  o kill running vlc if configured with one-instance by default
    (it does not use DVB options from new command line)

Version 11.88 - 16 February 2009

- mygtk2 layer:
  o make references usable for entries
- reorganized modules in fs section of list_modules and added reiser4
- diskdrake:
  o limit partition type list to 2 colmuns instead of 4
  o don't offer to format LVM

Version 11.87 - 14 February 2009

- diskdrake:
  o allow resizing on lvm for mounted ext3/4 and not mounted xfs
  o use a list instead of combo in the partition type selection window
  o don't crash on invalid partition table

Version 11.86 - 12 February 2009

- diskdrake:
  o forget the changed label when the user cancels
  o fix preserving UUID when formatting ext* and swap, and handle more FS (#39913)
  o don't set useless extents option for ext4 mounts
- localedrake:
  o set scim-thai as default IM for Thai
- drakboot:
  o when installing to a removable device, put boot sector there, else
    put it into first non removable drive (#47106)
- do_pkgs:
  o add ensure_files_are_installed 
- load cbc for encrypted loop

Version 11.81 - 3 February 2009

- interactive::curses: 
  o use a real file selector in curses too
- diskdrake:
  o don't rewrite label when it did not change (#47186)
  o rewrite gpt support with libparted
  o allow browsing partitions content to easily select the ones to destroy
- drakdvb: introduce new DVB channels scanning tool
  (from Pascal Terjan)
- draksound:
  o disable auto spawning when diasbling PA (#47258)

Version 11.80 - 21 January 2009

- diskdrake:
  o don't use label for mounting partitions on lvm (#47024)
- draksec:
  o changed draksec functionality to prevent overlapping with msecgui.
- use "ComboBoxEntry" gtk2 widget instead of "Combo" (which is deprecated),
  this also workarounds gtk2 bug with "hidden" Entry + "Combo"

Version 11.79 - 16 January 2009

- drakbug:
  o ask to attach blkid output as well as /etc/fstab & the like when
    debugging a boot issue
  o do not ask to include kernel version & /proc/cpuinfo since this is
    done automatically
 o request to attach lspcidrake's output rather than include it
   (smaller descriptions)
- diskdrake:
  o disable resizing ext4 since resize2fs is known to be broken regarding extents
  o --smb: fix netbios name resolution (#42483, thanks to Derek Jennings)
- scannerdrake:
  o fix a crash when installing firmware (#40738)

Version 11.77 - 15 January 2008

- diskdrake:
  o --smb: cifs must be used instead of smbfs (#42483)
  o ext4dev is now stable and called ext4 in 2.6.28+
  o allow editing partition label without formatting (bootloader config is not
    yet updated)
  o allow setting label on NTFS and reiser4 partitions
  o don't suggest mountpoint outside install (#39596)
- harddrake:
  o fix displaying in proper category sound coprocessor & misc ACPI event keys
- prevent mdkapplet from crashing (#46477)

Version 11.76 - 18 December 2008

- diskdrake:
  o use sysfs in order to discover major/minor for SCSI like devices
    since they're dynamic with kernel-2.6.28+

Version 11.75 - 17 December 2008

- handle new driver:
  o network: sxg, w35und
- bootloader-config:
  o do not modify /boot/vmlinuz symlinks before doing mkinitrd in case
    mkinitrd fails (#44862)
- diskdrake:
  o --nfs: handle "host:/" (#44320)
  o --nfs: handle domainname not set
  o kernel-2.6.28+ supports more than 15 partitions on SATA & SCSI devices

Version 11.73 - 15 December 2008

- diskdrake:
  o fix crashing on writing fstab when using SMB (#46084)
  o fix racing with udev (#41832)
- drakboot:
  o enable to disable SMP support (#31339)
- scannerdrake:
  o install task-scanning (so that xsane-gimp got installed)

Version 11.72 - 9 December 2008

- handle new driver:
  o network: et131x, smsc95xx
- drakbug:
  o write distro release in bug description
- finish-install:
  o use /dev/urandom instead of /dev/random to generate salt for passwords
    (since reading on /dev/random can block boot process)
  o show only installed 3D desktops
  o adapt to new Xconfig::glx API (drak3d 1.21)
- harddrake:
  o do not list PATA controllers as SATA
    (else we could just list all ATA controllers together)
  o do not show duplicated hardware as unknown (#46242):
    * list PC Speaker as sound card
    * track duplicated input devices
    * try harder to find duplicates
- ugtk2:
  o allow showing Skip button instead of Cancel in wizards
- diskdrake:
  o lookup for Samba master browsers too

Version 11.71 - 6 November 2008

- diskdrake
  o --dav: handle davfs2 credentials in /etc/davfs2/secrets (#44190)
  o --dav: handle https 

Version 11.70 - 16 October 2008

- handle new driver:
  o ide: tx4939ide
- libDrakX:
  o share infrastructure so that rpmdrake can get rid of some gray
    windows
- harddrake service:
  o do not backup xorg.conf if we won't change the driver

Version 11.67 - 2 October 2008

- detect_devices:
  o allow detection of low resources systems (extracted
    from compssUsers.pl) and netbooks/nettops
  o do not detect pan* devices as ethernet devices for now
    (network configuration tools do not fully support them)

Version 11.63 - 1 October 2008

- bootloader-config (and other tools): handle /dev/mapper/xxx1 instead of
  /dev/mapper/xxxp1 (#44182)
- service_harddrake: enable/disable apmd if needed
- adapt ask_window_manager_to_logout() to make it work (need usermode changes)
 
Version 11.62 - 1 October 2008

- fix dithering regression (introduced on 2008-09-29)
- render banner background with dithering
  (smoother on 16bpp displays)

Version 11.61 - 30 September 2008

- bootloader-config:
  o --action migrate-to-uuids: 
    o do not migrate non sdx/hdx to UUID (bootloader config)
    o do migrate dmraid device names to UUID 
      (because of xxx1 vs xxxp1 device name issue, cf #44182) 
  o fix dropping "chainloader" and "configfile" entries (#44045)
- reduce banner font size

Version 11.60 - 30 September 2008

- libDrakX:
  o fix rpmdrake crashing when description begins by "Gtk2::.."
    (#43802)
- drakperm:
  o show banner when not embedded
  o use Gtk+2's FileChooserDialog

Version 11.59 - 29 September 2008

- libDrakX:
  o add support for Gtk+2's FileChooserDialog for draksnapashot
- drakbug:
  o handle strange DBus errors

Version 11.58 - 29 September 2008

- libDrakX:
  o add spacing between radio buttons for readability (#44332)
  o render left background of MCC with dithering (looks better on
    16bit displays)

Version 11.57 - 29 September 2008

- libDrakX:
  o better positionning of mcc selection bar
- draksplash:
  o fix crashing when altering read-only combo boxes
    (regression introduced in 11.37 on 2008-09-08)
  o improved layout
  o increase default width so that translated widgets fit in
  o make it fit in 800x600 resolution (#36105)

Version 11.56 - 26 September 2008

- dmraid devices: use isw_xxxxp1 instead of isw_xxxx1 (see #42542, #44182)
- do not display Help buttons in standalone mode since we do not have
  any contents
- factorize WebKit code with mcc

Version 11.54.2 - 26 September 2008

- bootloader-config:
  o --action migrate-to-uuids: be more precautious when modifying /etc/fstab
    (especially do not drop unrecognised entries) (#43548)

Version 11.54.1 - 25 September 2008

- make gray background gradient available to mcc

Version 11.54 - 25 September 2008

- enable mcc to not display any shadow around HTML view when using
  scrollbars
- make sure mcc always have fillers

Version 11.53 - 25 September 2008

- add support for new MCC style
- fix icon alignment in banners

Version 11.52.1 - 24 September 2008

- libDrakX:
  o add support for new mcc style

Version 11.52 - 23 September 2008

- drakbug:
  o enable to disable it trough the DISABLE_DRAKBUG environment variable
  o fix sizing some labels (workarounding infamous 6 years old gnome
    bug #101968)
- harddrake service:
  o auto-configure floppies
    (may require to load floppy module at first boot on a new system)
  o do not try to run drakbug

Version 11.51 - 23 September 2008

- finish-install:
  o set dialog hint if drakx-matchbox-window-manager is used
    (not to maximize windows)
- kill drakprinter link (#44115)

Version 11.50 - 22 September 2008

- restore support for right alignement for simple widgets
  (regression introduced in 11.46 - 17 September 2008)
- bootloader-config:
  o fix handling fd0 (regression introduced in 11.44) (#44049)

Version 11.49.2 - 22 September 2008

- fix crash (#44053)
- localedrake:
  o add support for ibus

Version 11.49.1 - 20 September 2008

- install banner images in the proper directory (#44038)

Version 11.49 - 19 September 2008

- handle new driver:
  o ethernet: enic, qlge
- remove harddrake service (now run by mandrake_everytime)

Version 11.48 - 18 September 2008

- libDrakx:
  o new banner style
- bootloader-config, drakboot:
  o handle /boot/grub/install.sh with no "root (hd...)" line
    (this is the case for grub's installed prior to 2005-06-16)
    (#43786, #43431)

Version 11.47.1 - 17 September 2008

- bug fix: add mandatory new modules for dm-crypt

Version 11.47 - 17 September 2008

- handle new driver:
  o ethernet: jme
- diskdrake:
  o handle partitions encrypted with cryptsetup
  o fix file system type drop down list showing most types as "..." in
    "Change partition type" dialog in expert mode due to ellipsizing
- harddrake2:
  o detect network and graphical driver packages too
- harddrake2 / remove-unused-packages:
  o fix network packages detection
- list btusb instead of hci_usb in bus/bluetooth (renamed in 2.6.27)

Version 11.46 - 17 September 2008

- scannerdrake:
  o change all printerdrake references to system-config-printer
- libdrakX:
  o better layout for right aligned widgets
- bootloader-config:
  o --action migrate-to-uuids: do not migrate software raid to UUID (#43928)
- license: put focus back on Refuse button by default

Version 11.44 - 16 September 2008

- bootloader-config:
  o --action migrate-to-uuids: add UUID to swap v.2 in case the swap was
    created long ago when mkswap didn't do it by default
  o fix reading existing grub conf in present of /dev/mapper/xxxx0p1
    partitions (which was causing bootloader-config to drop correct entries,
    cf #37722)

Version 11.43 - 16 September 2008

- diskdrake:
  o fix check for mdadm in live install (#43785)
  o refresh GUI
- harddrake:
  o do not use anymore printerdrake and thus do not detect printers anymore

Version 11.41 - 11 September 2008

- fix default spacing between GUI elements
- "Help" dialogs:
  o add a separator before "Close" button
  o put "Close" button of help at right end
- finish-install:
  o fix setting utf8 when using lang=xx from /proc/cmdline (#43566)
- services (thanks to spuk):
  o list ip6tables in "Internet" category
  o list nfs-common and nfs-server in "File sharing" category
  o list rpcbind in "System" category

Version 11.40 - 10 September 2008

- libdrakX:
  o make advanced popup display the same title as their parents
- drakboot
  o fix nolapic/lapic logic due to altered kernel settings
- fix input devices detection in rpmsrate (broken for 3 years, #43721)
- finish-install:
  o always ask timezone (#23303, #42368)
  o extract a "country" step out of the "language" one
  o guess country from timezone when possible (#23303)
  o call "country" and "keyboard" steps after "timezone" (#23303)
  o guess country from timezone without asking if COUNTRY is set to
    "simplified" in the configuration file (#23303)
  o behave nicely when a window manager is running (for debugging)

Version 11.38 - 8 September 2008

- libDrakX:
  o fix missing maximize & minimize buttons with gnome WM (#43540) by
    reverting change from 2008-09-01: "make all windows are "dialog",
    so that gurpmi.addmedia during install displays nicely"
  o make all windows be "dialog" during install, so that
    gurpmi.addmedia during install displays nicely
- diskdrake
  o keep current UUID when formatting ext2/ext3 (was already done for swap), 
    so that fstab on other distros continue to work (#39913)
    (requires e2fsprogs-1.41.1-2mnb2)
- drakboot --boot
  o drop the ability to set mem=xxx (#42329)
  o allow UTF8 in /boot/grub/menu.lst (#43714)

Version 11.38 - 8 September 2008

- diskdrake
  o fix file system type drop down list showing most types as "..." in expert
    mode due to ellipsizing (#43611)
  o fix too large partition bar (#43073)
  o improved GUI

Version 11.37 - 8 September 2008

- add descriptions to menu entries (#26106)
- do not size radio button that have a label (eg: drakauth) thus preventing
  uneeded horizontal scrollbar to appear
- drakauth:
  o new look
- drakboot:
  o update /etc/sysconfig/desktop since we read it in order to display
    previous setting
- draksplash:
  o make it fit better in 1024x768
  o make it working again due to focus issue with two top windows (#43696)
  o make some pull down menus not editable

Version 11.36 - 5 September 2008

- bootloader-config:
  o --action migrate-to-uuids: backup conf file prior to migration with suffix
  .before-migrate-to-uuids
- libDrakX:
  o fix handling KDE4 in running_window_manager() and ask_window_manager_to_logout()
- merge remove-unused-hardware-packages and remove-unselected-locales
  helpers into a new remove-unused-packages tool (and make it reusable)

Version 11.35 - 4 September 2008

- bootloader-config:
  o add --action migrate-to-uuids
- fix sizing some label (workarounding infamous 6 years old gnome bug #101968)

Version 11.33.1 - 2 September 2008

- libDrakX:
  o handle KDE4 in running_window_manager() and ask_window_manager_to_logout()

Version 11.30 - 1 September 2008

- service_harddrake: adapt kernel modaliases that are not valid
  anymore in modprobe.conf when booting a new kernel, this should fix
  migration from e1000 to e1000e and from iwl4965 to iwlagn (#41248)
- libDrakX:
  o make all windows are "dialog", so that gurpmi.addmedia during install
    displays nicely
  o fix alignment of check buttons
  o fix size of right aligned labels
  o fix sizing radio buttons' labels (infamous 6 years old gnome bug
    #101968)
  o prevent big combo boxes to cause an horizontall scrollbar to appear by
    using the "ellipsize" property
  o no relief on 'advanced' buttons

Version 11.29 - 29 August 2008

- finish-install:
  o use gurpmi.addmedia when available to configure urpmi media
- diskdrake: use udevadm settle instead of udevsettle

Version 11.26.1 - 28 August 2008

- fix asterisk in titles

Version 11.26 - 27 August 2008

- fix "probe floppies only once" (#43216)
- bootloader-config:
  o call mkinitrd without "-v" to make it silent (#42992)
- harddrake service:
  o fix setting locales (#43224)
- misc GUI improvements
  o misc changes
  o properly size some labels (infamous 6 years old gnome bug #101968)
  o refresh "user management" step

Version 11.22 - 21 August 2008

- probe floppies only once
- do not bother probing /dev/fd0 and loading floppy device uselessly,
  it takes time and it is already done by boot process
  (just check /proc/devices)
- do not let MCC crashes if an icon is missing (#37651)

Version 11.21 - 21 August 2008

- diskdrake
  o ensure we initialize only once but at least one, thus fixing crash
    when embedded or in installer (#43011)
- localedrake
  o install proper qtX package for gcin

Version 11.20 - 20 August 2008

- diskdrake
  o fix sizing partitions bar (#24410)
  o increase default width of buttons so that they fit in expert mode
- drakauth:
  o handle pam_tcb instead of (deprecated) pam_unix (#42471)

Version 11.16 - 19 August 2008

- share new advanced icon with standalone tools

Version 11.14 - 19 August 2008

- authentication: enable network-auth meta-service if auth is not local

Version 11.13 - 18 August 2008

- do_pkgs: do not reload urpmi media at every check for package availability
- finish-install: set locale at first step when language is selected
  in gfxmenu (#42299)
- move hardware packages detection code from installer to drakxtools
- add helpers to remove unused localization and hardware packages
  (remove-unselected-locales, remove-unused-hardware-packages)

Version 11.10.2 - 18 August 2008

- really fix another focus bug (#42750)

Version 11.10.1 - 18 August 2008

- fix another focus bug (#42750)

Version 11.10 - 14 August 2008

- diskdrake:
  o refreshed GUI
- localedrake:
  o default to UTF-8 for chinese simplified (#42137)

Version 11.6 - 8 August 2008

- add product type to URL when fetching mirror list
- enable to share code between draksnapshot, mdkonline & net_applet

Version 11.5 - 6 August 2008

- fix more strange focus bugs

Version 11.4 - 5 August 2008

- fix strange focus bugs

Version 11.3 - 4 August 2008

- drakedm:
  o adapt to dm.d files being moved to /usr/share (#41879)
  o do not try to configure an undefined dm

Version 10.47 - 10 July 2008

- fix reading and setting kdmrc (by resolving alternative in chroot)

Version 10.46 - 10 July 2008

- authentication:
  o add back fix to force the password to be utf8 (#23273)
  o fix reading md5/shadow options in /etc/pam.d/system-auth
- finish-install: log in syslog

Version 10.45 - 09 July 2008

- update autologin file path for kdm4
- default to KDE4 (instead of KDE) if kdm config exists when reading
  autologin configuration
- change default authentication to local (instead of ldap)

Version 10.43 - 04 July 2008

- detect KDE4 when configuring autologin

Version 10.39 - 25 June 2008

- bootloader-config:
  o fix handling xen kernels: it should not replace an existing 'linux'
    entry (#40865)
- service_harddrake:
  o handle nvidia173.ko (new legacy series of the proprietary driver)

Version 10.37 - 18 June 2008

- handle jpeg icons (needed for next rpmdrake)
- draksound:
  o do not set snd-ac97-codec's "power_save=1" options on MIPS

Version 10.34 - 12 June 2008

- partitioning wizard:
  o do not propose to resize "hidden" fat partitions
  o do not say "the Windows partition" when there can be more than one
- allow mounting ntfs-3g partitions
  (also fixes detection of Windows partitions during live installation)
- service_harddrake:
  o do not allow fbdev if /proc/fb is empty
  o fix kbluetooth config path
  o fix autoconfiguration of harddisks
- drakupdate_fstab: make sure removable disks are not fs-checked on boot
  (regression introduced in 10.6.3)
- handle renamed drivers:
  o ide-cd is now named ide-cd_mod
  o generic is now named ide-pci-generic
- authentication:
  o add Kerberos Support
  o add disconnected mode for Ldap, Kerberos, Windows auth
  o add more options in Ldap configuration: Fetch DN, TLS
  o remove Active Directory SFU
  o change Winbind authentification to enable domain model choice (NT4 or AD)

Version 10.33 - 29 May 2008

- drakboot:
  o only read bootloader configuration when configuring it
    (usefull in chroots)
- draksound:
  o be more robust when managing /etc/alsa/pulse-default.conf
- drakbug:
  o automatically report CPU name & kernel version
  o prefill the platform field
- list hso driver in network/cellular

Version 10.32 - 13 May 2008

- draksound:
  o advise to log out if PA is enabled/disabled
  o disable PA routing when PA is disabled (#40219)
  o grey PA routing & 5.1 sound if PA is disabled
  o make sure that switch alsa-plugins-pulseaudio is installed when
    enabling PA routing (#40533)
- localedrake:
  o advise to restart when changing system wide settings too
- handle new drivers:
  o pata: pata_sch 

Version 10.31 - 24 April 2008

- bootloader-config:
  o do not detect device.map inconsistency when "/boot" (or "/") is on Linux
    software raid (/dev/mdX), cf #28309 and #35714

Version 10.30 - 23 April 2008

- bootloader-config:
  o fix detecting device.map inconsistency when "/boot" and "/" are not on
    same "drive" (esp. when "/" is LVM and "/boot" is not, #39229)
- diskdrake:
  o ensure no "division by zero" runtime error (#34931)
- drakupdate_fstab:
  o only add formatted partitions in fstab (or else it will make
    subsequent boot fail)
- fix file descriptor leak when detecting network driver
  (mostly notable in network center and drakroam)
- list generic module in disk/ide

Version 10.29 - 3 April 2008

- service_harddrake:
  o fix detecting modules installed in new dkms locations (/dkms and
    /dkms-binary) instead of /kernel
- drakclock: write UTC setting in /etc/adjtime (#36522)

Version 10.27 - 3 April 2008

- drakboot:
  o stop workarounding glibc misconfiguration when listing users
    (#38116), it is now handled in MDK::Common (see #34279)
- draksplash:
  o do not write decimal values in theme config (#38271)
- finish-install:
  o configure urpmi media if network is up and no media are configured
    (#38202)

Version 10.25 - 1 April 2008

- DBus framework improvement

Version 10.24 - 1 April 2008

- drakups:
  o fix crash while removing an item (#34413)
- harddrake:
  o offer again to run drakxtv for TV cards (#39609)
- diskdrake:
  o allow relatime on ntfs-3g (#39666)
- diskdrake --fileshare:
  o do not ask to install nautilus-filesharing if already installed (#39544)

Version 10.22 - 27 March 2008

- partitioning wizard lirary: 
  o allow "Use free space" if there is an extended
  partition even if all primary partitions are used (#38804)
  (*old* bug!)
- draksplash:
  o fix reading grub conf (#39346)
- services backend:
  o handle services with "-" as default chkconfig level in more places
- mygtk2:
  o allow to create buttons with stock icons (for drakguard)
- finish-install:
  o really set the superuser password when using simplified user+root
    dialog (#39218)

Version 10.20 - 25 March 2008

- do not run main_quit if not in a main loop (eg: while loading GUI)
  but block window deletion instead (#39230)
- adduserdrake
  o force the password to be utf8 (#23273)
- diskdrake --nfs
  o ensure "nfs-common" is started (#34103)

Version 10.19 - 21 March 2008

- bootloader-config, drakboot:
  o fix device.map if it is not consistent with the system
    (eg: it says hd0 in sdb whereas it now is sda) (#39160)
- diskdrake:
  o fix setting mount point of a /dev/mdX (#39142)
    (regression introduced in 10.8)
- list gspca, ov51x-jpeg and qc-usb-messenger in webcam modules group
- harddrake:
  o recommend using insensitive search (#39136)
  o notify at X11 startup when we switched to free video driver (#39164)
- drakupdate_fstab:
  o do not print added/removed mountpoints with --auto (when run from
    harddrake, like in Mandriva One), but add a --verbose option instead

Version 10.18 - 21 March 2008

- drakfont:
  o fix importing fonts without chkfontpath (#37604)
  o stop restarting XFS server
- diskdrake:
  o keep existing swap UUID (#38877)
- partitioning wizard: do not show error message in wizard mode when
  cancel is clicked (clean wizard window instead)
- finish-install:
  o allow to ask both root and user accounts in the same step
  o replace home path in user config files when renaming a user (#30380)

Version 10.17 - 20 March 2008

- use UUID by default (for diskdrake and draklive-install)
- finish-install:
  o write modprobe.conf after configuring network
  o do not configure network if already up
  o allow to use a simplified time step
    (no timezone selection, ntp settings as advanced)
- move functions to get available space from installer
  (to be used in draklive-install)
- localedrake: update OpenOffice/BrOffice alternative according to
  selected lang (#37820)

Version 10.16.1 - 18 March 2008

- handle position for paned widgets (needed for rpmdrake, #38762)

Version 10.16 - 18 March 2008

- adduserdrake:
  o display kdm/gdm icon again (was disabled on year ago)
- do not write aliases for asus_acpi and thinkpad_acpi in
  modprobe.preload, the modules are now handled by coldplug
- draksec
  o do not continue if installing msec crashed or was canceled (#38911)
- localdrake:
  o do not make /etc/sysconfig/i18n readable only by root in high
    security level (#39027)
- scannerdrake:
  o use provides instead of package name now that gurpmi handle them

Version 10.15 - 14 March 2008

- fix changing UID on forking
- scannerdrake: use package name instead of Provides.
- create Gtk2::Notify::Queue out of Gtk2::NotificationBubble::Queue
  for libnotify support in net_applet (#37509)

Version 10.12 - 13 March 2008

- fix gurpmi path (#38679)
- diskdrake:
  o graphical error message when "No hard drives found" (#38699)
    (otherwise drakbug will catch it and suggest to report a bug...)
- draksound:
  o enable to set 5.1 channels (#38796)
- scannerdrake: fix undefined variable $in (#36387, #37039)

Version 10.11 - 11 March 2008

- diskdrake:
  o really fix partition device name for some dmraid (missing "p", cf #38363)
- draksound (#37826):
  o add support to enable/disable ALSA to PA routing (#37826)
  o add support to enable/disable PulseAudio
  o add support to enable/disable user switching
  o display trouble shooting when there's no driver too
  o enable to reset the sound mixer to default values
- cpufreq: fix gsx-suspmod probe
- scannerdrake: fix to open usbtable.gz instead of usbtable

Version 10.10 - 6 March 2008

- finish-install:
  o do not show broken Cancel button in license step (#38195)
- diskdrake: 
  o fix resizing/formatting ntfs (broken because of ntfs-3g switch in previous
    release)
  o fix partition device name for some dmraid (missing "p", cf #38363)
  o do not timeout after 10 minutes when resizing NTFS partition
- detect_devices:
  o provide sysfs device path on Firewire and PCMCIA bus
    (to be able to fix #33950 in drakx-net)

Version 10.9 - 5 March 2008

- adapt to new kernel-2.6.25's sysfs layout (Eric Pielbug, #38235)
- diskdrake: use ntfs-3g by default for ntfs partitions
- draksplash: do not re-install grub, only modify grub's config file
- select proper padlock module for Via CPU (#38311)

Version 10.7 - 3 March 2008

- bootloader-config:
  o have a nicer name for "mnb" kernels
- drakbug:
  o do not catch exception if $^S is undef 
    (occurs when "eval { require foo }" and foo.pm do "use not_available")
- use gurpmi when installing packages if possible (#24044)

Version 10.6.25 - 28 February 2008

- harddrake:
  o do not assign a mount point to partitions of type "Compaq diagnostics"
- API changes for drakx-net and rescue

Version 10.6.23 - 25 February 2008

- drakboot:
  o make sure users are not listed twice (#38116)
- drakfont:
  o fix crashing when encountering file names with meta characters on
    windows partitions (#36482)
- diskdrake:
  o jfsprogs is now jfsutils
- drop support for arch now that rpmdrake-4.3 dropped it

Version 10.6.22 - 18 February 2008

- diskdrake:
  o fix switching from LABEL=xxx to /dev/yyy in fstab (#37914)
- add support for snd-aw2
- drakboot --boot:
  o fix dropping grub "configfile" entries when switching to lilo
- draksound:
  o move all driver list & troubleshooting in an advanced expander

Version 10.6.20 - 18 February 2008

- diskdrake:
  o final fix for resizing's failures due to udev's race 
    (when writing the partition, do not del/add the same partition)
- harddrake GUI:
  o install linuxwacom if needed
- harddrake service:
  o use acpi-cpufreq for Mobile PIII/Celeron
    (family 6 model 11, for example Toshiba Portégé 3500)
  o use speedstep-centrino only for supported models
    and prefer acpi-cpufreq (patch from Herton, #30208)
  o use p4-clockmod for some Intel family 6 processors not supporting EST

Version 10.6.18 - 12 February 2008

- handle 'icon-pressed' signal of Gtk2::Sexy::IconEntry

Version 10.6.17 - 11 February 2008

- add support for Gtk2::Sexy::IconEntry (needed for rpmdrake)
- drakperm:
  o warning dialogs are confusing since OK/cancel both ends in cancel,
    let's offer only a cancel button

Version 10.6.15 - 7 February 2008

- harddrake:
  o do not try to install openoffice64 on x86_64 (#37318)

Version 10.6.14 - 5 February 2008

- bootloader-config:
  o never use "vmlinuz-desktop" or "initrd-desktop.img", always use "vmlinuz"
    or "initrd.img" (#35721)
- drakfont:
  o fix crashing on file names with meta characters (#36482)
- enhance the logout dialog (ok/cancel instead of yes/no)
- short-circuit exit once drakbug was run on crash

Version 10.6.11 - 31 January 2008

- drakbug:
  o autoselect distro version in bugzilla
  o explain what is the usefull part of the gdb trace
  o open help as user
  o stop translating program name in bugzilla (#35241)

Version 10.6.10 - 28 January 2008

- handle new drivers: 
  o ethernet: cpmac
  o gigabit: ipg
  o pata/sata: pata_bf54x, sata_fsl
  o sound: snd-at73c213 
  o tv cards: cx23885
  o webcams: tcm825x
- detect raid partitions based on either type 0xfd or vol_id detecting
  linux_raid_member (#35684)
- bootloader-config:
  o fix handling LVM VGs with "-" in the name (#37267)
  o do not drop "lock" in chainload entries from grub's menu.lst (#36398)
- diskdrake --fileshare:
  o adapt to nfs-utils service rename (nfs-server instead of nfs) (#37069)

Version 10.6.9 - 25 January 2008

- harddrake:
  o class more sensors as biometric
- drakbug:
  o do not display twice "Cannot be run in console mode." message
- finish-install:
  o do ask again language (got wrongly disabled in 10.6.8)
- harddrake service:
  o backup xorg.conf before falling back to safe driver (#37182)

Version 10.6.8 - 24 January 2008

- bootloader-config, diskdrake:
  o look for LVM PV on non partitioned disk before looking for DOS
    partition_table (esp. for lilo which puts the DOS magic)
- drakbug:
  o make "Please describe what you were doing when it crashed" more
    visible and force people to write something in before opening
    bugzilla
- mygtk2: make sure users of ::no_ugtk_init (eg: drakbug) do catch
  exceptions in callbacks

Version 10.6.6 - 22 January 2008

- bootloader-config:
  o fix root=xxx parameter for "/" on lvm using UUID= in fstab (#36542)
- adapt to perl 5.10.0

Version 10.6.5 - 14 January 2008

- drakboot:
  o fix handling root=UUID=xxx when modifying a bootloader entry (#36788)

Version 10.6.4 - 14 January 2008

- localedrake, drakx-finish-install:
  o fix proposing Belgium when lang is "nl" and locales-fr is not installed
    (same for Canada with lang "fr" and locales-en not installed) (#36413)

Version 10.6.3 - 9 January 2008, by Thierry Vignaud

- handle new drivers: atl2 (ethernet), snd-virtuoso
- bootloader-config:
  o fix regression introduced in 10.5.7: do not create alt_xxx entries when
    adding a new entry in bootloader
- harddrake:
  o allow to set zero values in module options (#26515)
  o make "Run config tool" available again (#34794)
  o mark the service as interactive, so that package requests are
    displayed with parallell init
  o check that media are not USB keys before auto-configuring them (#34568)
- drakupdate_fstab:
  o never set "sync" option, use default fs options from drakx (#35204)
  o remove --no-flag option, the "kudzu" option has not been written for ages
- drakbug:
  o report crash messages in the bug report only when --incident is used
    (and not when tools explicitely run drakbug with --report)

Version 10.6 - 11 December 2007, by Thierry Vignaud

- handle new drivers:
  o ethernet: fec_mpc52xx, niu
  o gigabit: tehuti
  o pata: pata_cs5536
  o sata: sata_fsl
  o wireless: b43, b43legacy, iwlwifi, libertas_cs, p54pci, p54usb
- localedrake:
  o adjust Uzbek locale (cf locales-uz change)

Version 10.5.7 - 6 December 2007, by Thierry Vignaud

- handle new drivers: e1000e, snd-oxygen, snd-pcsp
- bootloader-config:
  o do not drop entries "failsafe" and "linux-nonfb" when removing a kernel
- localedrake:
  o adapt to cooker: scim-tables-skim is now skim-scim-tables
  o restrict the proposed input-methods for each language
- bootloader:
  o when reading existing menu.lst, keep verbatim entries for which the device
  has no mount-point
  o handle "alien" grub entries that will be kept verbatim (#23591)
  o handle "root (hd...)" for menu.lst entries (#23591)
    (nb: when writing, "root ..." will not be used)
- diskdrake:
  o drop "Undo", "Restore partition table", "Save partition table"
    (preparing to switch to libparted)
  o fix garbaged error messages when umounting fs
  o disallow "Use for loopback" when the partition used for loopback is
    not formatted (#35535)
  o always display the {info} field of the drive (not only in expert mode)

Version 10.5.3 - 9 November 2007, by Pascal "Pixel" Rigaux

- bootloader-config:
  o do not create "linux" entries for xen kernels, but "xen" entries instead
- localedrake:
  o fix handling variant together with charset (eg: uz.UTF-8@Latn) (#35090)
- drakbug:
  o prevent altering tool and the like when catching a bug (#35241)

Version 10.5.2 - 6 November 2007, by Thierry Vignaud

- diskdrake:
  o add support for ext4
- drakbug:
  o keep buggy process around so that we can run gdb on it (if perl segfaulted)
  o report gdb trace if possible
- harddrake: detect storage and various controllers before anything else
  (so that storage devices get detected at first boot on live)

Version 10.5.1 - 31 October 2007, by Thierry Vignaud

- bootloader-config:
  o bootloader-config must not need network::network from libdrakx-net
  o if drakx-kbd-mouse-x11 is not installed, simply don't add bootsplash
    instead of dying
- fix buttons order under KDE when using compiz (by detecting kde-window-decorator)
- drakclock/finish-install: disable DPMS and screensaver when setting time,
  not to blank monitor (#17031)

Version 10.5.0 - 15 October 2007, by Thierry Vignaud

- localedrake:
  o do propose "Suisse" after selecting french language (#34675)
- draksec:
  o fix switching from "no_password" to "_password" (#34490)

Version 10.4.239 - 5 October 2007, by Thierry Vignaud

- finish-install: fix release notes window size

Version 10.4.237 - 5 October 2007, by Olivier "blino" Blin

- fix installed modules detection (#34478)
- fix version reported by drakfont & harddrake
- when checking dkms module packages, check that modules are either
  available in urpmi media, or already installed (fix detection in live)
- add shadow 'in' around Gtk2::SimpleList widgets

Version 10.4.235 - 4 October 2007, by Thierry Vignaud

- diskdrake --fileshare
  o install nautilus-filesharing if nautilus is installed (#34262)
- finish-install: use translations for network step

Version 10.4.234 - 4 October 2007, by Olivier "blino" Blin

- finish-install: use translations for keyboard and 3D steps

Version 10.4.232 - 4 October 2007, by Olivier "blino" Blin

- add helper to get kernel module path (to be used in draklive)

Version 10.4.231 - 3 October 2007, by Nicolas Vigier

- wizards :
  o don't report a crash when an error prevent the wizard from
    running (#34371)

Version 10.4.230 - 3 October 2007, by Thierry Vignaud

- drakboot --boot:
  o if there is a /boot, check /boot instead of "/" to allow grub or not

Version 10.4.226 - 2 October 2007, by Thierry Vignaud

- drakauth:
  o install lib64sasl2-plug-gssapi on x86_64 (instead of libsasl2-plug-gssapi)
- draksec
  o make authentication items be aligned
- add ath5k module in wireless category

Version 10.4.225 - 1 October 2007, by Thierry Vignaud

- diskdrake:
  o bugfix 10.4.162: allow "LVM" on RAID (#34359)
  o improved wrapping of mount option descriptions (#19848)

Version 10.4.222 - 28 September 2007, by Olivier "blino" Blin

- allow interactive::gtk frontends to ask for a directory
- allow interactive::gtk frontends not to pop wait messages

Version 10.4.221 - 28 September 2007, by Olivier "blino" Blin

- add back ipw3945 module in wireless modules list
- allow to detect VirtualBox guest systems
- add acpi-cpufreq support for some Intel CPUs (family 6 model 15)
  (from Herton Ronaldo Krzesinski, #30208)

Version 10.4.217 - 27 September 2007, by Thierry Vignaud

- localedrake: 
  o allow to choose countries like "Angola" which have no locale (en_AO) in
    the "best" countries (alas it won't be remembered, will only be used in
    kde settings for now)
- finish-install:
  o display nicer HTML release notes rather than raw text version

Version 10.4.213 - 26 September 2007, by Thierry Vignaud

- drakbug
  o don't report a non existant crash when run w/o --error
  o when unable to access X11, just print the backtrace on the console
- draksec:
  o add a right delegation tab
  o display arrows for tabs

Version 10.4.210 - 24 September 2007, by Thierry Vignaud

- diskdrake
  o fix "Add to LVM"
- drakclock:
  o fix race on ugtk2->exit that causes a crash (#33894)
- drakfont:
  o handle fontpath.d
  o size font directory list dialog

Version 10.4.209 - 22 September 2007, by Olivier "blino" Blin

- make formatXiB() handle negative numbers (for rpmdrake)
- service_harddrake:
  o auto-configure CD-Rom drives in fstab again (even if it prevents
    KDE media manager from unmounting them), to be consistent with
    install which actually configures CD-Rom drives in fstab

Version 10.4.208 - 21 September 2007, by Olivier "blino" Blin

- service_harddrake:
  o do not auto-configure CD-Rom drives in fstab, it fordbids
    umounting with hal (install does not configure them in fstab either)
  o automatically configure harddisks
- finish-install:
  o write autologin settings after user creation only
    (so that home is set and exists, should partly fix GNOME autologin)
  o config first user to autologin if USER_AUTOLOGIN_FIRST is "yes"
  o read gdm autologin settings
- drakupdate_fstab: allow to configure harddisks

Version 10.4.207 - 21 September 2007, by Thierry Vignaud

- drakboot:
  o create .dmrc with mode 0644 for gdm (#33774)
- harddrake:
  o fix listing DVD/CD as them and as unknown (#33366)
  o stop offering to run drakxtv
- localedrake:
  o default input method is now scim-bridge (#32138)

Version 10.4.203 - 19 September 2007, by Thierry Vignaud

- diskdrake:
  o "Clear All" defaults to LVM on full disk if drive is >4TB
  o do not allow partitions bigger than 2TB-1 on DOS MBR, nor partitions
    starting above 2TB-1
- bootloader-config:
  o handle /boot/xxx files on linux raid1
- fix getting UUID on mdmadm (eg: md0) devices
- getInputDevices(): keep "Bus=..." for drakx-kbd-mouse-x11

Version 10.4.202 - 17 September 2007, by Thierry Vignaud

- localedrake menu entries (#32941):
  o hide system config
  o make them more understandable

Version 10.4.200 - 17 September 2007, by Thierry Vignaud

- only run "chksession -l" if needed
- bootloader-config:
  o --rebuild-initrds: don't choke on kernel files which have no version in
    file name (#28772)
- drakboot:
  o boot entrie list uses ellipsis rather than scroll bar
- harddrake2:
  o display model & vendor for SCSI devices too

Version 10.4.198 - 16 September 2007, by Thierry Vignaud

- fix a crash
- localedrake:
  o install scim-bridge-qt4 if KDE4 is installed

Version 10.4.197 - 15 September 2007, by Thierry Vignaud

- diskdrake:
  o fix typo breaking reading fstab with UUID= entries
- localedrake:
  o enable to select 'scim-bridge' as IM
  o install needed packages for skim
  o install scim-qtimm for scim default config
  o remove extra SCIM combinations (simpler)

Version 10.4.195 - 14 September 2007, by Thierry Vignaud

- distinct exceptions from segfaults, thus restoring catching SIGSEGV
  and preventing looping while segfaulting again
- fix loading of tifm_sd module (#18237)
- run_program layer: enable to drop privileges through setuid()
- drakbug:
  o run the regular user browser (#33522)

Version 10.4.193 - 13 September 2007, by Thierry Vignaud

- drakbug:
  o better behaviour when resizing
  o use a TextView instead of Label so that text is selectable (see #33023)
  o better formatting
- draksound:
  o prevent stupid & useless "driver for your sound card is unlisted"
  o no more need to:
    * list OSS/ALSA alternatives if none
    * sync with list_modules

Version 10.4.192 - 12 September 2007, by Olivier "blino" Blin

- localedrake
  o drop support for iiimf
- list jmicron driver in disk/ide
- library: have "defaults" mount option instead of empty string (for rescue)
- service_harddrake: drop snd-usb-audio blacklist, now done with a modprobe.d file

Version 10.4.190 - 5 September 2007, by Thierry Vignaud

- display a warning when capslock is enabled and entering a password (#33028)

Version 10.4.188 - 4 September 2007, by Thierry Vignaud

- hardware detection layer:
  o add support for tape device again (#31073)
  o enumerate generic SCSI devices again
- diskdrake
  o add a comment (a la ubuntu) in fstab when using UUID=
- harddrake
  o detect PS2 to USB converters as keyboards
  o display an identifier for generic SCSI devices
  o list generic SCSI devices

Version 10.4.184 - 3 September 2007, by Thierry Vignaud

- diskdrake
  o support for UUID in filesystems (and UUID=... in fstab)

Version 10.4.183 - 31 August 2007, by Pascal "Pixel" Rigaux

- bootloader-config
  o handle new naming of vmlinuz flavors: vmlinuz-<version>-<flavor>-Xmdv
    instead of vmlinuz-<version>-Xmdv<flavor>
  o always use "linux" short name instead of "linux-<flavor>"
    (since the long name is quite nice nowadays)
- assume system is a laptop if it contains some "Intel Corporation|Mobile" devices
  (fix Samsung Q1U detection, #32967)
- draksound, harddrake service:
  o enable snd-ac97-codec power_save=1 option if installed on laptop (#32213)

Version 10.4.181 - 29 August 2007, by Thierry Vignaud

- fix plural translating for C locale
- diskdrake:
  o fix displaying umount error message (#32273)
  o write mdadm.conf when it is modified (#32360)
    (a nicer fix would be to write it when needed, not so soon, but it's harder)
  o change the legend and the colors per partition
  o fix action "Type" on a software raid (eg: dm0)

Version 10.4.172 - 21 August 2007, by Olivier "blino" Blin

- ignore wmaster* devices when detecting wireless interfaces
- misc mygtk2 updates

Version 10.4.170 - 20 August 2007, by Thierry Vignaud

- use '_' in modules names

Version 10.4.169 - 14 August 2007, by Thierry Vignaud

- adduserdrake, finish-install:
  o create only one user
  o fix checking user info (#32517)
- diskdrake:
  o add support for 'relatime' mount option
  o kill support for 'nodiratime' mount option
  o in fstab, have "xxx" instead of "defaults,xxx"

Version 10.4.167 - 11 August 2007, by Thierry Vignaud

- fix plural translations (#32505)
- 'ibm_acpi' driver was replaced by 'thinkpad_acpi (#31606)

Version 10.4.166 - 11 August 2007, by Thierry Vignaud

- do a normal die if drakbug is not present
- make Gtk2::MDV::CellRendererPixWithLabel RTL aware (#32450)

Version 10.4.163 - 9 August 2007, by Pascal "Pixel" Rigaux

- for XFdrake: use update-alternatives command instead doing things by hand
  (this uses --set, new feature of update-alternatives) (#32362)
- harddrake:
  o display the PCI domain too
  o handle nvidia-current.ko (Anssi Hannula)

Version 10.4.162 - 08 August 2007, by Thierry Vignaud

- fix fetching translations from "libDrakX-standalone" domain (#32402)
- diskdrake:
  o do not show partition types which have no associated filesystem
    for LVM LV (#32326)

Version 10.4.161 - 06 August 2007, by Thierry Vignaud

- drakbug:
  o exceptions with "\n" are considered normal ways to quit and thus
    do not fire up drakbug (eg: #32292)
- diskdrake:
  o restore progress bar when formatting ext3

Version 10.4.160 - 06 August 2007, by Thierry Vignaud

- diskdrake: 
  o add support for "nodiratime" mount option
  o fix range max value >2TB when creating a partition (useful for LVs >2TB)
- drakxservices: describe a few more services (#18612)

Version 10.4.159 - 06 August 2007, by Thierry Vignaud

- diskdrake:
  o allow setting "flush" option (for vfat)
- drakbug: do not report "wizcancel" exceptions (#32308)

Version 10.4.157 - 03 August 2007, by Thierry Vignaud

- report real version on --help
- drakbug:
  o report version of drakbug
- list iwl3945/iwl4965 modules (and unlist ipw3945)
- logdrake:
  o display "save" & "quit" button when run from the control center

Version 10.4.156 - 02 August 2007, by Thierry Vignaud

- localedrake:
  o adapt configuration of consolefonts for kbd
- logdrake:
  o fix crash if /var/log/explanations doesn't exist (#32234)

Version 10.4.153 - 02 August 2007, by Thierry Vignaud

- drakbug:
  o ask people to report lspcidrake -v output rather than lspci since it's more
    usefull to us
  o display the program that actually crashed and the error message
  o do not fire on exceptions in eval { }
  o do not loop if drakbug crashes
  o put full backtrace on bugzilla, not only last call point

Version 10.4.152 - 01 August 2007, by Thierry Vignaud

- drakbug:
  o add --error option in order to provide a backtrace
  o fix crashing on unknown programs
  o fix passing several options
  o prefill description too and hint the reporter how to provide usefull data
- report ordinary crash (unhandled exceptions, not seg faults) on bugzilla too

Version 10.4.151 - 01 August 2007, by Thierry Vignaud

- bootloader-config: handle vmdefault and vmdisable lilo.conf options (#26456)
- diskdrake: drop "Rescue partition table" feature 
  (was based on rescuept which has been dropped in util-linux, but was quite
  bad compared to testdisk anyway)
- drakauth: fix bogus string (#10776)
- drakbug:
  o basic adaption to new bugzilla (#31995)
  o display Mandriva Online for mdkapplet in the "select mandriva
    tool" field
  o prefill default summary with the name of the actual program which crashed
- draksec: improve explanations (#6969)
- drakups: adapt to new nut doc path (blino)

Version 10.4.145 - 9 July 2007, by Pascal "Pixel" Rigaux

- modify usbWacom() for mousedrake
  (conflicts with drakx-kbd-mouse-x11 < 0.19)

Version 10.4.144 - 05 July 2007, by Thierry Vignaud

- service_harddrake:
  o do not bother configure old Xorg conf files anymore
  o log right driver we're switching to from fglrx
  o factorize code handling switch for both ati & nvidia

Version 10.4.143 - 04 July 2007, by Thierry Vignaud

- centralize common textdomains in a single common place, thus
  ensuring they'll be binded (#31580)
- diskdrake:
  o fix resizing's faillures due to udev's race when writing the partition
    table (deleting then recreating the nodes leaves a race window...)
- service_harddrake:
  o do not enable fglrx libraries when disabling fglrx...
  o only log "switch xorg driver" & do actual GL config if we do need it
  o really log when switching from fglrx to another driver

Version 10.4.140 -  27 June 2007, by Thierry Vignaud

- merge "ide" and "all_ide" categories since we now use fully
  modularized ide drivers
- bootloader-config: 
  o configure ide-controller in modprobe.conf for upgrading to kernels 
    with modularized ide drivers

Version 10.4.139 -  27 June 2007, by Thierry Vignaud

- add mandrake_release_info() function

Version 10.4.138 -  21 June 2007, by Thierry Vignaud

- add support for snd-cmi8788 driver
- do not package drakautoinst (#27860)
- draksound:
  o prevent "unlisted driver" error for snd-aoa, snd-cs5530,
    snd-echo3g, snd-usb-caiaq & snd-usb-usx2y drivers
- harddrake UI:
  o stop scannerdrake from fooling us about scanners and from leading
    us to display twice the same device (#31182)

Version 10.4.136 -  12 June 2007, by Thierry Vignaud

- diskdrake
  o fix 1.9TB displayed as 1TB
- drakboot -boot
  o update splash when changing framebuffer resolution (#27470)
- harddrake UI:
  o add a class for biometric sensors (fingerprint for now) (#31182)

Version 10.4.135 -  08 June 2007, by Thierry Vignaud

- interactive layer:
  o enable to override default size with Gtk+ frontend
- drakfont:
  o do not misbelieve a font is already installed if substring of
    another font name
  o simplify finding windows fonts
  o finding windows fonts is now really case insensitive

Version 10.4.134 -  06 June 2007, by Thierry Vignaud

- drakfont:
  o fix crash (#28016)
  o fix enumerating fonts on old windows (#28016)

Version 10.4.133 -  05 June 2007, by Thierry Vignaud

- bootloader-config:
  o handle kernel-xen-uptodate (#31154)
- drakfont: fix crash

Version 10.4.132 -  05 June 2007, by Thierry Vignaud

- fix some UTF8 issue (#31067) (notably drakbug)
- hw support:
  o handle snd-cs5530 driver
- progress bar wait_message: ensure it doesn't go crazy when asked to update
  with the same fraction (eg #30090)
- diskdrake:
  o when formatting ntfs don't zero partition (#30928)
- drakfont:
  o do see fuse-mounted or ntfs-3g windows partitions (ffixxx, #28016)
  o try different cases on windows partitions (based on ffixxx suggestion, #28016)
- drakhelp:
  o fix .mozilla dir as root when it doesn't exists (#29775)
- draksec:
  o make the help dialog clearer about default values (#24159)
- harddrake GUI:
  o fix USB UPS detection logic (whitelist supported hardware)
- harddrake service:
  o drop support for kernel-2.4.x

Version 10.4.131 - 18 May 2007, by Thierry Vignaud

- bug fix for rpmdrake: pkgs.pm file was missing
- diskdrake:
  o fix resizing's failures due to udev race when writing the
    partition table

Version 10.4.130 - 16 May 2007, by Thierry Vignaud

- bootloader-config: do create /boot/initrd-xxx.img when there is no
  bootloader (#30771 comment #21)
- create udev nodes configuration file in /etc/udev/devices.d/ instead
  of conf.d (used for modem and mouse)
- diskdrake:
  o use "mkfs.ext3" instead of "mkfs.ext2 -J"
    (to have dir_index & resize_inode features)
    (cf Frederik Himpe 23 Apr 2007 mail on cooker)
  o fix ext3 formatting with label and progress bar (#30032)
- localedrake: don't call grub-gfxmenu when used by simple user

Version 10.4.127 - 30 March 2007, by Olivier "blino" Blin

- don't configure /etc/kde/kdm/kdmrc if it doesn't exist
  (other kdmrc.rpmnew will be created, many important values will be missing)
- finish-install: source mandriva-release profile script to get
  correct gtk theme (Frederic Crozat)

Version 10.4.126 - 29 March 2007, by Olivier "blino" Blin

- use pci_domain when matching sysfs device and computing
  sysfs device path

Version 10.4.125 - 29 March 2007, by Olivier "blino" Blin

- fix multiple detection of PCI network cards with the same driver (#29688)

Version 10.4.123 - 26 March 2007, by Olivier "blino" Blin

- blacklist ax*, rose*, nr*, bce* and scc* Hamradio devices
  when detecting network interfaces (#28776)
- harddrake service: fallback on the right driver for ATI gfx cards
  when fglrx module is missing
- introduce shared bootloader functions so that draklive-install and
  drakboot add correct command line parameters (such as resume=)
- use grub by default (noticeable in One install)

Version 10.4.121 - 23 March 2007, by Thierry Vignaud

- interactive::curses: 
  o handle multi-line labels, and wrap too long labels (#29060)
- do not use bold&big for advanced_messages
  (fixes authentication choice being big & ugly, #28676)

Version 10.4.118 - 22 March 2007, by Thierry Vignaud

- diskdrake: 
  o minimal support for switching from ntfs to ntfs-3g
  o move ntfs in the list of "important" filesystems
- enable to set up 32bit media on x86_64
- fix lang configuration in KDE by writting it in current profile

Version 10.4.117 - 21 March 2007, by Thierry Vignaud

- detect all known TV cards (#29633)
- harddrake service:
  o load modules for DVB & TV cards (#29633)
  o switch ATI cards to free driver if binary driver isn't installed
- use http://api.mandriva.com/mirrors/$type.$version.$arch instead of simply
  $version.$arch (useful to differentiate CorpoDesktop4)

Version 10.4.116 - 19 March 2007, by Thierry Vignaud

- handle more drivers (dvb, ethernet, gigabit, ide, pcmcia, sata,
  sound, tv, usb hosts, wan, webcam, wireless)
- diskdrake: handle mkntfs
- localedrake: remove error running grub-gfxmenu when /boot/gfxmenu doesn't exit

Version 10.4.114 - 16 March 2007, by Thierry Vignaud

- do not load anymore floppy module (#23158, #25975, #28911, #29280)
- fix testing success exit of child processes (mdkapplet)
- localedrake: set grub gfxmenu language

Version 10.4.113 - 16 March 2007, by Pascal "Pixel" Rigaux

- drakboot --boot: allow choosing a non-installed bootloader
  (ease switching from lilo to grub)
- use grub-gfxmenu comand to configure /boot/gfxmenu for grub

Version 10.4.112 - 15 March 2007, by Thierry Vignaud

- die on downloading mirror list faillure
- log using mirror API into explanations

Version 10.4.110 - 15 March 2007, by Thierry Vignaud

- add sizing dialog support for rpmdrake
- do not buggily use speedstep-centrino on Core2 duo, but use it on
  P4M (as initially intended?) (blino)

Version 10.4.108 - 13 March 2007, by Thierry Vignaud

- load tifm_sd if needed (#25133)
- drakbug:
  o fix finding package for keyboarddrake
  o fix managing --incident MandrivaUpdate
  o menudrake was replaced by drakmenustyle
  o some tools were splited out of drakxtools; enable to lookup the proper package

Version 10.4.105 - 9 March 2007, by Thierry Vignaud

- configure "tifm_7xx1" driven card_reader (#25133)
- enhance wrapping in some dialogs

Version 10.4.104 - 7 March 2007, by Thierry Vignaud

- do not bother configure old modutils
- handle SD cards (#24054)
- harddrake2: list SD card readers in their own category

Version 10.4.102 - 6 March 2007, by Thierry Vignaud

- diskdrake in text mode: when choosing a partition, "Empty space on hdx"
  instead of "Empty" (#29087) 
- harddrake service: 
  o adapt to new nvidia drivers (#29052)
  o when switching from nvidia to nv, do setup gl_conf alternative
- symlinkf_update_alternatives: remove broken files for missing slave files
  (useful for not having a broken /etc/modprobe.d/nvidia.conf (XFdrake))
='#n3898'>3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192
# translation of libDrakX.po to Euskara
# EUSKARA: Mandriva Linux translation.
# Copyright (C) 2002,2003, 2004, 2005, 2007, 2008, 2009 Free Software Foundation, Inc.
#
# Iñigo Salvador Azurmendi <xalba@euskalnet.net>, 2001-2002,2003,2004, 2005, 2007, 2008, 2009.
# Hizkuntza Politikarako Sailburuordetza <hizpol@ej-gv.es>, 2004.
msgid ""
msgstr ""
"Project-Id-Version: libDrakX\n"
"POT-Creation-Date: 2009-10-07 13:57+0200\n"
"PO-Revision-Date: 2009-10-18 00:28+0200\n"
"Last-Translator: Iñigo Salvador Azurmendi <xalba@euskalnet.net>\n"
"Language-Team: Basque <kde-i18n-doc@kde.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Lokalize 0.3\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"

#: any.pm:252 any.pm:910 diskdrake/interactive.pm:594
#: diskdrake/interactive.pm:794 diskdrake/interactive.pm:838
#: diskdrake/interactive.pm:942 diskdrake/interactive.pm:1196
#: diskdrake/interactive.pm:1248 do_pkgs.pm:241 do_pkgs.pm:287
#: harddrake/sound.pm:303 interactive.pm:587 pkgs.pm:281
#, c-format
msgid "Please wait"
msgstr "Itxoin mesedez"

#: any.pm:252
#, c-format
msgid "Bootloader installation in progress"
msgstr "Abio zamatzailearen instalaketa egiten ari da"

#: any.pm:263
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s.  However, changing\n"
"the Volume ID of a Windows NT, 2000, or XP boot disk is a fatal Windows "
"error.\n"
"This caution does not apply to Windows 95 or 98, or to NT data disks.\n"
"\n"
"Assign a new Volume ID?"
msgstr ""
"LILO-k Bolumen ID berria ezarri nahi dio %s unitateari. Hala ere, Windows "
"NT,\n"
"2000, edo XP-ren abiapen diskoen Bolumen ID aldaketak Windows-en erabateko "
"akatsa eragiten du.\n"
"Oharpen honek ez die Windows 95 edo 98, edo NT datu diskoei eragiten.\n"
"\n"
"Bolumen ID berria ezarri nahi duzu?"

#: any.pm:274
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Abio zamatzailearen instalaketak huts egin du. Akats hau gertatu da:"

#: any.pm:280
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
" enable the bootloader.  If you do not see the bootloader prompt at\n"
" reboot, hold down Command-Option-O-F at reboot and enter:\n"
" setenv boot-device %s,\\\\:tbxi\n"
" Then type: shut-down\n"
"At your next boot you should see the bootloader prompt."
msgstr ""
"Baliteke Open Firmware abio gailua aldatu behar izatea\n"
" abio zamatzailea gaitzeko. Berrabiaraztean abio zamatzailearen \n"
" gonbita ez baduzu ikusten, eduki sakatuta Command-Option-O-F abiaraztean\n"
" eta sartu:\n"
" setenv boot-device %s,\\\\:tbxi\n"
" Gero, idatzi: shut-down\n"
"Hurrengo abiaraztean abio zamatzailearen gonbita ikusi beharko zenuke."

#: any.pm:320
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
"System Commander).\n"
"\n"
"On which drive are you booting?"
msgstr ""
"Abio zamatzailea partizio batean instalatzea erabaki duzu.\n"
"Horrek adierazten du dagoeneko erabiltzen duzun abio zamatzaile bat "
"daukazula disko zurrunean (adib: System Commander).\n"
"\n"
"Zein unitatetik abiatzen duzu?"

#: any.pm:346
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "%s unitatearen lehen sektorea (MBR)"

#: any.pm:348
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Unitatearen lehen sektorea (MBR)"

#: any.pm:350
#, c-format
msgid "First sector of the root partition"
msgstr "Erro partizioko lehen sektorea"

#: any.pm:352
#, c-format
msgid "On Floppy"
msgstr "Disketean"

#: any.pm:354 pkgs.pm:277 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Utzi"

#: any.pm:358
#, c-format
msgid "Bootloader Installation"
msgstr "Abio zamatzailearen instalaketa"

#: any.pm:362
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Non instalatu nahi duzu abio zamatzailea?"

#: any.pm:389
#, c-format
msgid "Boot Style Configuration"
msgstr "Abio tankera konfiguraketa"

#: any.pm:399 any.pm:429 any.pm:430
#, c-format
msgid "Bootloader main options"
msgstr "Abio zamatzailearen aukera nagusiak"

#: any.pm:403
#, c-format
msgid "Bootloader"
msgstr "Abio zamatzailea"

#: any.pm:404 any.pm:433
#, c-format
msgid "Bootloader to use"
msgstr "Erabili beharreko abio zamatzailea"

#: any.pm:406 any.pm:435
#, c-format
msgid "Boot device"
msgstr "Abio gailua"

#: any.pm:408
#, c-format
msgid "Main options"
msgstr "Aukera nagusiak"

#: any.pm:409
#, c-format
msgid "Delay before booting default image"
msgstr "Imajina lehenetsia abiarazi arteko denbora"

#: any.pm:410
#, c-format
msgid "Enable ACPI"
msgstr "Gaitu ACPI"

#: any.pm:411
#, c-format
msgid "Enable SMP"
msgstr "Gaitu SMP"

#: any.pm:412
#, c-format
msgid "Enable APIC"
msgstr "Gaitu APIC"

#: any.pm:413
#, c-format
msgid "Enable Local APIC"
msgstr "Gaitu bertako APIC"

#: any.pm:415 any.pm:855 any.pm:871 authentication.pm:250
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Pasahitza"

#: any.pm:417 authentication.pm:261
#, c-format
msgid "The passwords do not match"
msgstr "Pasahitzak ez datoz bat"

#: any.pm:417 authentication.pm:261 diskdrake/interactive.pm:1420
#, c-format
msgid "Please try again"
msgstr "Saiatu berriro"

#: any.pm:418
#, c-format
msgid "You can not use a password with %s"
msgstr "Ezin duzu %s-rekin pasahitz bat erabili"

#: any.pm:421 any.pm:857 any.pm:873 authentication.pm:251
#, c-format
msgid "Password (again)"
msgstr "Pasahitza (berriro)"

#: any.pm:422
#, c-format
msgid "Restrict command line options"
msgstr "Murriztu komando-lerroko aukerak"

#: any.pm:422
#, c-format
msgid "restrict"
msgstr "murriztu"

#: any.pm:423
#, c-format
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"``Murriztu komando-lerroko aukerak'' aukera ezin da erabili pasahitzik gabe"

#: any.pm:425
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Garbitu /tmp abiatzen den bakoitzean"

#: any.pm:434
#, c-format
msgid "Init Message"
msgstr "Hasierako mezua"

#: any.pm:436
#, c-format
msgid "Open Firmware Delay"
msgstr "Open Firmware-ren atzerapena"

#: any.pm:437
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Nukleoaren abioaren denbora-muga"

#: any.pm:438
#, c-format
msgid "Enable CD Boot?"
msgstr "Gaitu CDtik abiaraztea?"

#: any.pm:439
#, c-format
msgid "Enable OF Boot?"
msgstr "Gaitu OF abiaraztea?"

#: any.pm:440
#, c-format
msgid "Default OS?"
msgstr "SE lehenetsia?"

#: any.pm:513
#, c-format
msgid "Image"
msgstr "Imajina"

#: any.pm:514 any.pm:527
#, c-format
msgid "Root"
msgstr "Erroa"

#: any.pm:515 any.pm:540
#, c-format
msgid "Append"
msgstr "Erantsi"

#: any.pm:517
#, c-format
msgid "Xen append"
msgstr "Xen erantsi"

#: any.pm:520
#, c-format
msgid "Video mode"
msgstr "Bideo modua"

#: any.pm:522
#, c-format
msgid "Initrd"
msgstr "Initrd"

#: any.pm:523
#, c-format
msgid "Network profile"
msgstr "Sare profila"

#: any.pm:532 any.pm:537 any.pm:539 diskdrake/interactive.pm:404
#, c-format
msgid "Label"
msgstr "Etiketa"

#: any.pm:534 any.pm:542 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Lehenetsia"

#: any.pm:541
#, c-format
msgid "NoVideo"
msgstr "BideorikEz"

#: any.pm:552
#, c-format
msgid "Empty label not allowed"
msgstr "Ez da etiketa hutsik onartzen"

#: any.pm:553
#, c-format
msgid "You must specify a kernel image"
msgstr "Nukleo-imajina bat zehaztu behar duzu"

#: any.pm:553
#, c-format
msgid "You must specify a root partition"
msgstr "Erroko partizio bat zehaztu behar duzu"

#: any.pm:554
#, c-format
msgid "This label is already used"
msgstr "Etiketa hau jadanik erabili da"

#: any.pm:572
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Zer sarrera-mota gehitu nahi duzu?"

#: any.pm:573
#, c-format
msgid "Linux"
msgstr "Linux"

#: any.pm:573
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Beste SE bat (SunOS...)"

#: any.pm:574
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Beste SE bat (MacOS...)"

#: any.pm:574
#, c-format
msgid "Other OS (Windows...)"
msgstr "Beste SE bat (Windows...)"

#: any.pm:621
#, c-format
msgid "Bootloader Configuration"
msgstr "Abio zamatzailearen konfiguraketa"

#: any.pm:622
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can create additional entries or change the existing ones."
msgstr ""
"Hona hemen abioko menuko orain arteko sarrerak.\n"
"Sarrera gehgiago sor ditzakezu, edo lehendik daudenak aldatu."

#: any.pm:816
#, c-format
msgid "access to X programs"
msgstr "X programen atzipena"

#: any.pm:817
#, c-format
msgid "access to rpm tools"
msgstr "rpm tresnen atzipena"

#: any.pm:818
#, c-format
msgid "allow \"su\""
msgstr "onartu \"su\""

#: any.pm:819
#, c-format
msgid "access to administrative files"
msgstr "administrazio-fitxategien atzipena"

#: any.pm:820
#, c-format
msgid "access to network tools"
msgstr "sare-tresnen atzipena"

#: any.pm:821
#, c-format
msgid "access to compilation tools"
msgstr "konpilazio-tresnen atzipena"

#: any.pm:827
#, c-format
msgid "(already added %s)"
msgstr "(%s jadanik gehituta)"

#: any.pm:833
#, c-format
msgid "Please give a user name"
msgstr "Eman erabiltzaile-izen bat"

#: any.pm:834, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
"Erabiltzaile izena letra minuskulaz hasi behar da eta jarraian soilik letra "
"minuskulak, zenbakiak, `-' eta `_' izan ditzake"

#: any.pm:835
#, c-format
msgid "The user name is too long"
msgstr "Erabiltzaile-izena luzeegia da"

#: any.pm:836
#, c-format
msgid "This user name has already been added"
msgstr "Erabiltzaile-izen hau gehituta dago jadanik"

#: any.pm:842 any.pm:875
#, c-format
msgid "User ID"
msgstr "Erabiltzaile ID"

#: any.pm:842 any.pm:876
#, c-format
msgid "Group ID"
msgstr "Talde ID"

#: any.pm:843
#, c-format
msgid "%s must be a number"
msgstr "%s zenbakia izan behar da"

#: any.pm:844
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s 500 gainetik egon behar luke. Onartu hala ere?"

#: any.pm:848
#, c-format
msgid "User management"
msgstr "Erabiltzaile kudeaketa"

#: any.pm:854 authentication.pm:237
#, c-format
msgid "Set administrator (root) password"
msgstr "Ezarri administratzaile (root) pasahitza"

#: any.pm:859
#, c-format
msgid "Enter a user"
msgstr "Sartu erabiltzaile bat"

#: any.pm:861
#, c-format
msgid "Icon"
msgstr "Ikonoa"

#: any.pm:864
#, c-format
msgid "Real name"
msgstr "Benetako izena"

#: any.pm:869
#, c-format
msgid "Login name"
msgstr "Saioa hasteko izena"

#: any.pm:874
#, c-format
msgid "Shell"
msgstr "Shell"

#: any.pm:910
#, c-format
msgid "Please wait, adding media..."
msgstr "Itxoin mesedez, euskarria eransten..."

#: any.pm:940 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Automatikoki hasi saioa"

#: any.pm:941
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "Ordenagailua konfigura dezaket automatikoki erabiltzaile bat sartzeko."

#: any.pm:942
#, c-format
msgid "Use this feature"
msgstr "Ezaugarri hau erabili"

#: any.pm:943
#, c-format
msgid "Choose the default user:"
msgstr "Aukeratu erabiltzaile lehenetsia:"

#: any.pm:944
#, c-format
msgid "Choose the window manager to run:"
msgstr "Aukeratu exekutatu beharreko leiho-kudeatzailea:"

#: any.pm:955 any.pm:975 any.pm:1048
#, c-format
msgid "Release Notes"
msgstr "Askapen Oharrak"

#: any.pm:982 any.pm:1340 interactive/gtk.pm:819
#, c-format
msgid "Close"
msgstr "Itxi"

#: any.pm:1034
#, c-format
msgid "License agreement"
msgstr "Lizentzia-kontratua"

#: any.pm:1036 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "Irten"

#: any.pm:1043
#, c-format
msgid "Do you accept this license ?"
msgstr "Lizentzia hau onartzen duzu ?"

#: any.pm:1044
#, c-format
msgid "Accept"
msgstr "Onartu"

#: any.pm:1044
#, c-format
msgid "Refuse"
msgstr "Ezetsi"

#: any.pm:1070 any.pm:1136
#, c-format
msgid "Please choose a language to use"
msgstr "Aukeratu erabiltzeko hizkuntza bat"

#: any.pm:1099
#, c-format
msgid ""
"Mandriva Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr ""
"Mandriva Linux-ek hainbat hizkuntza onar ditzake. Hautatu\n"
"instalatu nahi dituzun hizkuntzak. Instalazioa osatzean eta\n"
"sistema berrabiaraztean, erabilgarri egongo dira."

#: any.pm:1102
#, c-format
msgid "Multi languages"
msgstr "Hizkuntza anitz"

#: any.pm:1113 any.pm:1145
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Kodeketa bateragarritasun zaharra (ez UTF-8)"

#: any.pm:1115
#, c-format
msgid "All languages"
msgstr "Hizkuntza guztiak"

#: any.pm:1137
#, c-format
msgid "Language choice"
msgstr "Hizkuntza aukera"

#: any.pm:1191
#, c-format
msgid "Country / Region"
msgstr "Estatua / Eskualdea"

#: any.pm:1192
#, c-format
msgid "Please choose your country"
msgstr "Aukeratu zure herrialdea edo estatua"

#: any.pm:1194
#, c-format
msgid "Here is the full list of available countries"
msgstr "Hona hemen herrialde erabilgarri guztien zerrenda"

#: any.pm:1195
#, c-format
msgid "Other Countries"
msgstr "Beste Herrialde batzuk"

#: any.pm:1195 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Aurreratua"

#: any.pm:1201
#, c-format
msgid "Input method:"
msgstr "Sarrera metodoa:"

#: any.pm:1204
#, c-format
msgid "None"
msgstr "Bat ere ez"

#: any.pm:1285
#, c-format
msgid "No sharing"
msgstr "Ez partekatu"

#: any.pm:1285
#, c-format
msgid "Allow all users"
msgstr "Eman baimena erabiltzaile guztiei"

#: any.pm:1285
#, c-format
msgid "Custom"
msgstr "Pertsonalizatua"

#: any.pm:1289
#, 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 ""
"Erabiltzaileei direktorio batzuk partekatzeko baimena eman nahi diezu? \n"
"Baimena ematen badiezu, erabiltzaileek besterik gabe \"Share\"n klik egin "
"ahal izango dute konqueror-en eta nautilus-en.\n"
"\n"
"\"Custom\"ek erabiltzaileen araberako banaketa egiteko aukera ematen du.\n"

#: any.pm:1301
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
"NFS: usadioz Unixen fitxategiak elkarbanatzeko sistema, Mac eta Windowsen "
"euskarri gutxiago duena."

#: any.pm:1304
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
"SMB: fitxategiak elkarbanatzeko sistema, Windows, Mac OS X eta gaur egungo "
"hainbat Linux sistemek erabiltzen dutena."

#: any.pm:1312
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "NFS edo SMB-rekin esporta dezakezu. Hautatu zein erabili nahi duzun."

#: any.pm:1340
#, c-format
msgid "Launch userdrake"
msgstr "Abiarazi userdrake"

#: any.pm:1342
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
"Erabiltzaileen araberako partekatzeak \"fileshare\" \n"
"taldea erabiltzen du. \n"
"Userdrake erabil dezakezu talde honetan erabiltzaileak gehitzeko."

#: any.pm:1448
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
"Saioa amaitu eta berriro hasi behar duzu aldaketek eragina izan dezaten. "
"Sakatu Ados saioa orain amaitzeko."

#: any.pm:1452
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"Saioa amaitu eta berriro hasi behar duzu aldaketek eragina izan dezaten"

#: any.pm:1487
#, c-format
msgid "Timezone"
msgstr "Ordu-zona"

#: any.pm:1487
#, c-format
msgid "Which is your timezone?"
msgstr "Zein da zure ordu-zona?"

#: any.pm:1510 any.pm:1512
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Data, ordulari eta ordu gune ezarpenak"

#: any.pm:1513
#, c-format
msgid "What is the best time?"
msgstr "Zein da ordu onena?"

#: any.pm:1517
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (hardware ordularia UTC-ra ezarria)"

#: any.pm:1518
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (hardware ordularia bertako ordura ezarria)"

#: any.pm:1520
#, c-format
msgid "NTP Server"
msgstr "NTP Zerbitzaria"

#: any.pm:1521
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Ordu-sinkronizazio automatikoa (NTP erabiliz)"

#: authentication.pm:24
#, c-format
msgid "Local file"
msgstr "Bertako fitxategia"

#: 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 "Smart Txartela"

#: authentication.pm:28 authentication.pm:216
#, c-format
msgid "Windows Domain"
msgstr "Windows domeinua"

#: authentication.pm:29
#, c-format
msgid "Kerberos 5"
msgstr "Kerberos 5"

#: authentication.pm:63
#, c-format
msgid "Local file:"
msgstr "Bertako fitxategia:"

#: authentication.pm:63
#, c-format
msgid ""
"Use local for all authentication and information user tell in local file"
msgstr ""
"Erabili bertako datuak egiaztapen guztietarako eta erabiltzaileen "
"informazioentzako"

#: authentication.pm:64
#, c-format
msgid "LDAP:"
msgstr "LDAP:"

#: authentication.pm:64
#, c-format
msgid ""
"Tells your computer to use LDAP for some or all authentication. LDAP "
"consolidates certain types of information within your organization."
msgstr ""
"Zure konputagailuari egiaztatze batzu edo guztietarako LDAP erabiltzeko "
"esaten dio. LDAP-ek zure erakunde barruan zenbait informazio mota bateratu "
"egiten ditu."

#: authentication.pm:65
#, c-format
msgid "NIS:"
msgstr "NIS:"

#: authentication.pm:65
#, 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 ""
"Konputagailu talde bat Sareko Informazio Zerbitzu domeinu berdinean "
"ibiltzeko aukera ematen dizu pasahitz eta talde fitxategi amankomunarekin."

#: authentication.pm:66
#, c-format
msgid "Windows Domain:"
msgstr "Windows domeinua:"

#: authentication.pm:66
#, c-format
msgid ""
"Winbind allows the system to retrieve information and authenticate users in "
"a Windows domain."
msgstr ""
"Winbind-ek sistemari Windows domeinu batetik informazioa eskuratu eta "
"erabiltzaileak egiaztatzeko gaitasuna ematen dio."

#: authentication.pm:67
#, c-format
msgid "Kerberos 5 :"
msgstr "Kerberos 5 :"

#: authentication.pm:67
#, c-format
msgid "With Kerberos and Ldap for authentication in Active Directory Server "
msgstr ""
"Kerberos eta Ldap-ekin erabiltzaileak egiaztatzeko Direktorio Aktibodun "
"Zerbitzari batean"

#: authentication.pm:107 authentication.pm:141 authentication.pm:160
#: authentication.pm:161 authentication.pm:187 authentication.pm:211
#: authentication.pm:896
#, c-format
msgid " "
msgstr " "

#: authentication.pm:108 authentication.pm:142 authentication.pm:188
#: authentication.pm:212
#, c-format
msgid "Welcome to the Authentication Wizard"
msgstr "Ongi etorri egiaztatze morroira"

#: authentication.pm:110
#, c-format
msgid ""
"You have selected LDAP authentication. Please review the configuration "
"options below "
msgstr ""
"LDAP egiaztatzea aukeratu duzu. Mesedez berrikusi azpiko konfiguraketa "
"aukerak "

#: authentication.pm:112 authentication.pm:167
#, c-format
msgid "LDAP Server"
msgstr "LDAP zerbitzaria"

#: authentication.pm:113 authentication.pm:168
#, c-format
msgid "Base dn"
msgstr "Oinarri dn"

#: authentication.pm:114
#, c-format
msgid "Fetch base Dn "
msgstr "Eskuratu oinarri Dn"

#: authentication.pm:116 authentication.pm:171
#, c-format
msgid "Use encrypt connection with TLS "
msgstr "Erabili koneksio zifratua TLS-rekin"

#: authentication.pm:117 authentication.pm:172
#, c-format
msgid "Download CA Certificate "
msgstr "Jaitsi CA ziurtagiria "

#: authentication.pm:119 authentication.pm:152
#, c-format
msgid "Use Disconnect mode "
msgstr "Erabili modu deskonektatua "

#: authentication.pm:120 authentication.pm:173
#, c-format
msgid "Use anonymous BIND "
msgstr "Erabili BIND anonimoa "

#: authentication.pm:121 authentication.pm:124 authentication.pm:126
#: authentication.pm:130
#, c-format
msgid "  "
msgstr "  "

#: authentication.pm:122 authentication.pm:174
#, c-format
msgid "Bind DN "
msgstr "Bind DN "

#: authentication.pm:123 authentication.pm:175
#, c-format
msgid "Bind Password "
msgstr "Bind pasahitza "

#: authentication.pm:125
#, c-format
msgid "Advanced path for group "
msgstr "Talde bide aurreratua "

#: authentication.pm:127
#, c-format
msgid "Password base"
msgstr "Pasahitz oinarria"

#: authentication.pm:128
#, c-format
msgid "Group base"
msgstr "Oinarri taldea"

#: authentication.pm:129
#, c-format
msgid "Shadow base"
msgstr "Shadow oinarria"

#: authentication.pm:144
#, c-format
msgid ""
"You have selected Kerberos 5 authentication. Please review the configuration "
"options below "
msgstr ""
"Kerberos 5 egiaztatzea aukeratu duzu. Mesedez berrikusi azpiko konfiguraketa "
"aukerak "

#: authentication.pm:146
#, c-format
msgid "Realm "
msgstr "Erresuma "

#: authentication.pm:148
#, c-format
msgid "KDCs Servers"
msgstr "KDC zerbitzariak"

#: authentication.pm:150
#, c-format
msgid "Use DNS to locate KDC for the realm"
msgstr "Erabili DNS erresumako KDC ebazteko"

#: authentication.pm:151
#, c-format
msgid "Use DNS to locate realms"
msgstr "Erabili DNS erresumak aurkitzeko"

#: authentication.pm:156
#, c-format
msgid "Use local file for users information"
msgstr "Erabili bertako fitxategia erabiltzaileen informazioentzako"

#: authentication.pm:157
#, c-format
msgid "Use Ldap for users information"
msgstr "Erabili Ldap erabiltzaileen informazioentzako"

#: authentication.pm:163
#, c-format
msgid ""
"You have selected Kerberos 5 for authentication, now you must choose the "
"type of users information "
msgstr ""
"Kerberos 5 aukeratu duzu erabiltzaileen egiaztapenerako, orain "
"erabiltzaileen informazio mota aukeratu behar duzu "

#: authentication.pm:169
#, c-format
msgid "Fecth base Dn "
msgstr "Eskuratu oinarri Dn "

#: authentication.pm:190
#, c-format
msgid ""
"You have selected NIS authentication. Please review the configuration "
"options below "
msgstr ""
"NIS egiaztatzea aukeratu duzu. Mesedez berrikusi azpiko konfiguraketa "
"aukerak "

#: authentication.pm:192
#, c-format
msgid "NIS Domain"
msgstr "NIS domeinua"

#: authentication.pm:193
#, c-format
msgid "NIS Server"
msgstr "NIS zerbitzaria"

#: authentication.pm:214
#, c-format
msgid ""
"You have selected Windows Domain authentication. Please review the "
"configuration options below "
msgstr ""
"Windows Domeinu egiaztatzea aukeratu duzu. Mesedez berrikusi azpiko "
"konfiguraketa aukerak "

#: authentication.pm:218
#, c-format
msgid "Domain Model "
msgstr "Domeinu eredua "

#: authentication.pm:220
#, c-format
msgid "Active Directory Realm "
msgstr "Direktorio Aktiboaren Eremua "

#: authentication.pm:221
#, c-format
msgid "DNS Domain"
msgstr "DNS domeinua"

#: authentication.pm:222
#, c-format
msgid "DC Server"
msgstr "DC zerbitzaria"

#: authentication.pm:236 authentication.pm:252
#, c-format
msgid "Authentication"
msgstr "Egiaztatzea"

#: authentication.pm:238
#, c-format
msgid "Authentication method"
msgstr "Egiaztatze-metodoa"

#. -PO: keep this short or else the buttons will not fit in the window
#: authentication.pm:243
#, c-format
msgid "No password"
msgstr "Pasahitzik ez"

#: authentication.pm:264
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Pasahitz hau laburregia da (gutxienez %d karaktere izan behar ditu)"

#: authentication.pm:375
#, c-format
msgid "Can not use broadcast with no NIS domain"
msgstr "Ezin da difusioa erabili NIS domeinurik gabe"

#: authentication.pm:891
#, c-format
msgid "Select file"
msgstr "Fitxategia aukeratu"

#: authentication.pm:897
#, c-format
msgid "Domain Windows for authentication : "
msgstr "Windows domeinua egiaztapenerako: "

#: authentication.pm:899
#, c-format
msgid "Domain Admin User Name"
msgstr "Domeinu-administratzailearen erabiltzaile-izena"

#: authentication.pm:900
#, c-format
msgid "Domain Admin Password"
msgstr "Domeinu-administratzailearen pasahitza"

#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#: bootloader.pm:960
#, 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 ""
"Ongi etorri sistema eragilearen aukeratzailera!\n"
"\n"
"Hautatu sistema eragile bat goiko zerrendan, edo\n"
"itxaron lehenespenez berrabiarazi arte.\n"
"\n"

#: bootloader.pm:1132
#, c-format
msgid "LILO with text menu"
msgstr "LILO testu-menuarekin"

#: bootloader.pm:1133
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB menu grafikoarekin"

#: bootloader.pm:1134
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB testu menuarekin"

#: bootloader.pm:1135
#, c-format
msgid "Yaboot"
msgstr "Yaboot"

#: bootloader.pm:1136
#, c-format
msgid "SILO"
msgstr "SILO"

#: bootloader.pm:1218
#, c-format
msgid "not enough room in /boot"
msgstr "ez dago nahikoa leku /boot-en"

#: bootloader.pm:1874
#, c-format
msgid "You can not install the bootloader on a %s partition\n"
msgstr "Abioko kargatzailea ezin da instalatu %s partizio batean\n"

#: bootloader.pm:1995
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
"Abioko kargatzailearen konfigurazioa eguneratu egin behar da, partizioa "
"berriro zenbakitu delako"

#: bootloader.pm:2008
#, c-format
msgid ""
"The bootloader can not be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
"Abioko kargatzailea ezin da behar bezala instalatu. Berrabiarazi "
"berreskuratzea, eta hautatu \"%s\""

#: bootloader.pm:2009
#, c-format
msgid "Re-install Boot Loader"
msgstr "Berriro instalatu abioko kargatzailea"

#: common.pm:142
#, c-format
msgid "B"
msgstr "B"

#: common.pm:142
#, c-format
msgid "KB"
msgstr "KB"

#: common.pm:142
#, c-format
msgid "MB"
msgstr "MB"

#: common.pm:142
#, c-format
msgid "GB"
msgstr "GB"

#: common.pm:142 common.pm:151
#, c-format
msgid "TB"
msgstr "TB"

#: common.pm:159
#, c-format
msgid "%d minutes"
msgstr "%d minutu"

#: common.pm:161
#, c-format
msgid "1 minute"
msgstr "minutu bat"

#: common.pm:163
#, c-format
msgid "%d seconds"
msgstr "%d segundo"

#: common.pm:383
#, c-format
msgid "command %s missing"
msgstr "%s komandoa falta da"

#: 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, web zerbitzari baten direktorio bat bertan muntatu eta bertako\n"
"fitxategi-sitemakoa balitz bezala erabiltzeko aukera ematen dizun protokolo\n"
"bat da (web zerbitzaria WebDAV zerbitzari gisa konfiguratuta badago).\n"
"WebDAV muntaia-puntuak eransteko, hautatu \"Berria\"."

#: diskdrake/dav.pm:25
#, c-format
msgid "New"
msgstr "Berria"

#: diskdrake/dav.pm:63 diskdrake/interactive.pm:411 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Desmuntatu"

#: diskdrake/dav.pm:64 diskdrake/interactive.pm:407 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Muntatu"

#: diskdrake/dav.pm:65
#, c-format
msgid "Server"
msgstr "Zerbitzaria"

#: diskdrake/dav.pm:66 diskdrake/interactive.pm:401
#: diskdrake/interactive.pm:666 diskdrake/interactive.pm:684
#: diskdrake/interactive.pm:688 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
#, c-format
msgid "Mount point"
msgstr "Muntatze-puntua"

#: diskdrake/dav.pm:67 diskdrake/interactive.pm:403
#: diskdrake/interactive.pm:1090 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Aukerak"

#: diskdrake/dav.pm:68 interactive.pm:387 interactive/gtk.pm:453
#, c-format
msgid "Remove"
msgstr "Kendu"

#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:187 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Eginda"

#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:128 diskdrake/hd_gtk.pm:294
#: diskdrake/interactive.pm:247 diskdrake/interactive.pm:260
#: diskdrake/interactive.pm:450 diskdrake/interactive.pm:520
#: diskdrake/interactive.pm:525 diskdrake/interactive.pm:656
#: diskdrake/interactive.pm:909 diskdrake/interactive.pm:960
#: diskdrake/interactive.pm:1136 diskdrake/interactive.pm:1149
#: diskdrake/interactive.pm:1152 diskdrake/interactive.pm:1420
#: diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23 do_pkgs.pm:28 do_pkgs.pm:44
#: do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82 fsedit.pm:246
#: interactive/http.pm:117 interactive/http.pm:118 modules/interactive.pm:19
#: scanner.pm:95 scanner.pm:106 scanner.pm:113 scanner.pm:120 wizards.pm:95
#: wizards.pm:99 wizards.pm:121
#, c-format
msgid "Error"
msgstr "Errorea"

#: diskdrake/dav.pm:86
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Sartu WebDAV zerbitzariaren URLa"

#: diskdrake/dav.pm:90
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "URLak honela hasi behar du: http:// edo https://"

#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:412 diskdrake/interactive.pm:303
#: diskdrake/interactive.pm:388 diskdrake/interactive.pm:550
#: diskdrake/interactive.pm:747 diskdrake/interactive.pm:805
#: diskdrake/interactive.pm:940 diskdrake/interactive.pm:982
#: diskdrake/interactive.pm:983 diskdrake/interactive.pm:1233
#: diskdrake/interactive.pm:1271 diskdrake/interactive.pm:1419 do_pkgs.pm:19
#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:442
#, c-format
msgid "Warning"
msgstr "Kontuz"

#: diskdrake/dav.pm:106
#, c-format
msgid "Are you sure you want to delete this mountpoint?"
msgstr "Ziur zaude muntaia puntu hau ezabatu nahi duzu?"

#: diskdrake/dav.pm:124
#, c-format
msgid "Server: "
msgstr "Zerbitzaria: "

#: diskdrake/dav.pm:125 diskdrake/interactive.pm:493
#: diskdrake/interactive.pm:1295 diskdrake/interactive.pm:1380
#, c-format
msgid "Mount point: "
msgstr "Muntatze-puntua: "

#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1387
#, c-format
msgid "Options: %s"
msgstr "Aukerak: %s"

#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:298
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:106
#: fs/partitioning_wizard.pm:52 fs/partitioning_wizard.pm:222
#: fs/partitioning_wizard.pm:230 fs/partitioning_wizard.pm:269
#: fs/partitioning_wizard.pm:388 fs/partitioning_wizard.pm:445
#: fs/partitioning_wizard.pm:518 fs/partitioning_wizard.pm:521
#, c-format
msgid "Partitioning"
msgstr "Partizioa egiten"

#: diskdrake/hd_gtk.pm:73
#, c-format
msgid "Click on a partition, choose a filesystem type then choose an action"
msgstr ""
"Klikatu partizio batean, aukeratu fitxategi sistema mota ondoren ekintza bat "
"aukeratu"

#: diskdrake/hd_gtk.pm:110 diskdrake/interactive.pm:1111
#: diskdrake/interactive.pm:1121 diskdrake/interactive.pm:1174
#, c-format
msgid "Read carefully"
msgstr "Irakurri arretaz"

#: diskdrake/hd_gtk.pm:110
#, c-format
msgid "Please make a backup of your data first"
msgstr "Egin zure datuen babeskopia lehendabizi"

#: diskdrake/hd_gtk.pm:111 diskdrake/interactive.pm:240
#, c-format
msgid "Exit"
msgstr "Irten"

#: diskdrake/hd_gtk.pm:111
#, c-format
msgid "Continue"
msgstr "Jarraitu"

#: diskdrake/hd_gtk.pm:182 fs/partitioning_wizard.pm:493 interactive.pm:653
#: interactive/gtk.pm:811 interactive/gtk.pm:829 interactive/gtk.pm:850
#: ugtk2.pm:936
#, c-format
msgid "Help"
msgstr "Laguntza"

#: diskdrake/hd_gtk.pm:228
#, 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 ""
"MicroSoft Windows-en partizio handi bat daukazu.\n"
"Lehendabizi partizio horren tamaina aldatzea gomendatzen dizut\n"
"(egin klik partizioaren gainean, eta sakatu \"Tamainaz aldatu\")"

#: diskdrake/hd_gtk.pm:230
#, c-format
msgid "Please click on a partition"
msgstr "Egin klik partizio batean"

#: diskdrake/hd_gtk.pm:244 diskdrake/smbnfs_gtk.pm:63
#, c-format
msgid "Details"
msgstr "Xehetasunak"

#: diskdrake/hd_gtk.pm:294
#, c-format
msgid "No hard drives found"
msgstr "Ez da disko zurrunik aurkitu"

#: diskdrake/hd_gtk.pm:321
#, c-format
msgid "Unknown"
msgstr "Ezezaguna"

#: diskdrake/hd_gtk.pm:383
#, c-format
msgid "Ext3"
msgstr "Ext3"

#: diskdrake/hd_gtk.pm:383
#, c-format
msgid "XFS"
msgstr "XFS"

#: diskdrake/hd_gtk.pm:383
#, c-format
msgid "Swap"
msgstr "Swap"

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

#: diskdrake/hd_gtk.pm:383
#, c-format
msgid "HFS"
msgstr "HFS"

#: diskdrake/hd_gtk.pm:383
#, c-format
msgid "Windows"
msgstr "Windows"

#: diskdrake/hd_gtk.pm:384 services.pm:158
#, c-format
msgid "Other"
msgstr "Bestelakoak"

#: diskdrake/hd_gtk.pm:384 diskdrake/interactive.pm:1310
#, c-format
msgid "Empty"
msgstr "Hutsik"

#: diskdrake/hd_gtk.pm:391
#, c-format
msgid "Filesystem types:"
msgstr "Fitxategi-sistemen motak:"

#: diskdrake/hd_gtk.pm:412
#, c-format
msgid "This partition is already empty"
msgstr "Partizio hau dagoeneko hutsik dago"

#: diskdrake/hd_gtk.pm:421
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Erabili ``Desmuntatu'' lehendabizi"

#: diskdrake/hd_gtk.pm:421
#, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Horren ordez erabili ``%s'' (aditu moduan)"

#: diskdrake/hd_gtk.pm:421 diskdrake/interactive.pm:402
#: diskdrake/interactive.pm:588 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
msgid "Type"
msgstr "Mota"

#: diskdrake/interactive.pm:211
#, c-format
msgid "Choose another partition"
msgstr "Aukeratu beste partizio bat"

#: diskdrake/interactive.pm:211
#, c-format
msgid "Choose a partition"
msgstr "Aukeratu partizio bat"

#: diskdrake/interactive.pm:273 diskdrake/interactive.pm:379
#: interactive/curses.pm:512
#, c-format
msgid "More"
msgstr "Gehiago"

#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:291
#: diskdrake/interactive.pm:1218
#, c-format
msgid "Confirmation"
msgstr "Baieztapena"

#: diskdrake/interactive.pm:281
#, c-format
msgid "Continue anyway?"
msgstr "Jarraitu hala ere?"

#: diskdrake/interactive.pm:286
#, c-format
msgid "Quit without saving"
msgstr "Irten gorde gabe"

#: diskdrake/interactive.pm:286
#, c-format
msgid "Quit without writing the partition table?"
msgstr "Partizio-taula idatzi gabe irten?"

#: diskdrake/interactive.pm:291
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "/etc/fstab aldaketak gorde nahi dituzu?"

#: diskdrake/interactive.pm:298 fs/partitioning_wizard.pm:269
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Berrabiarazi egin behar duzu partizio-taulako aldaketek eragina izateko"

#: diskdrake/interactive.pm:303
#, 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 ""
"%s partizioa formateatu behar zenuke.\n"
"Gainerantzean ez da %s muntaia puntuarentzat sarrerarik idatziko fstab-en.\n"
"Irten hala ere?"

#: diskdrake/interactive.pm:316
#, c-format
msgid "Clear all"
msgstr "Garbitu dena"

#: diskdrake/interactive.pm:317
#, c-format
msgid "Auto allocate"
msgstr "Auto-esleitu"

#: diskdrake/interactive.pm:323
#, c-format
msgid "Toggle to normal mode"
msgstr "Aldatu modu normalera"

#: diskdrake/interactive.pm:323
#, c-format
msgid "Toggle to expert mode"
msgstr "Aldatu aditu-modura"

#: diskdrake/interactive.pm:335
#, c-format
msgid "Hard drive information"
msgstr "Disko zurrunaren informazioa"

#: diskdrake/interactive.pm:368
#, c-format
msgid "All primary partitions are used"
msgstr "Lehen mailako partizio guztiak erabilita daude"

#: diskdrake/interactive.pm:369
#, c-format
msgid "I can not add any more partitions"
msgstr "Ezin dut partizio gehiago gehitu"

#: diskdrake/interactive.pm:370
#, c-format
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr ""
"Partizio gehiago edukitzeko, ezabatu horietako bat partizio hedatu bat sortu "
"ahal izateko"

#: diskdrake/interactive.pm:381
#, c-format
msgid "Reload partition table"
msgstr "Birkargatu partizio-taula"

#: diskdrake/interactive.pm:388
#, c-format
msgid "Detailed information"
msgstr "Informazio xehea"

#: diskdrake/interactive.pm:400
#, c-format
msgid "View"
msgstr "Ikusi"

#: diskdrake/interactive.pm:405 diskdrake/interactive.pm:760
#, c-format
msgid "Resize"
msgstr "Aldatu tamaina"

#: diskdrake/interactive.pm:406
#, c-format
msgid "Format"
msgstr "Formateatu"

#: diskdrake/interactive.pm:408 diskdrake/interactive.pm:870
#, c-format
msgid "Add to RAID"
msgstr "Gehitu RAIDi"

#: diskdrake/interactive.pm:409 diskdrake/interactive.pm:891
#, c-format
msgid "Add to LVM"
msgstr "Gehitu LVMri"

#: diskdrake/interactive.pm:410
#, c-format
msgid "Use"
msgstr "Erabili"

#: diskdrake/interactive.pm:412
#, c-format
msgid "Delete"
msgstr "Ezabatu"

#: diskdrake/interactive.pm:413
#, c-format
msgid "Remove from RAID"
msgstr "Kendu RAIDetik"

#: diskdrake/interactive.pm:414
#, c-format
msgid "Remove from LVM"
msgstr "Kendu LVMtik"

#: diskdrake/interactive.pm:415
#, c-format
msgid "Remove from dm"
msgstr "DM-tik ezabatu"

#: diskdrake/interactive.pm:416
#, c-format
msgid "Modify RAID"
msgstr "Aldatu RAID"

#: diskdrake/interactive.pm:417
#, c-format
msgid "Use for loopback"
msgstr "Erabili atzera-begiztarako"

#: diskdrake/interactive.pm:428
#, c-format
msgid "Create"
msgstr "Sortu"

#: diskdrake/interactive.pm:450
#, c-format
msgid "Failed to mount partition"
msgstr "Partizioaren muntaketak huts egin du"

#: diskdrake/interactive.pm:482 diskdrake/interactive.pm:484
#, c-format
msgid "Create a new partition"
msgstr "Sortu partizio berria"

#: diskdrake/interactive.pm:486
#, c-format
msgid "Start sector: "
msgstr "Hasierako sektorea: "

#: diskdrake/interactive.pm:489 diskdrake/interactive.pm:975
#, c-format
msgid "Size in MB: "
msgstr "Tamaina MBtan: "

#: diskdrake/interactive.pm:491 diskdrake/interactive.pm:976
#, c-format
msgid "Filesystem type: "
msgstr "Fitxategi-sistemaren mota: "

#: diskdrake/interactive.pm:497
#, c-format
msgid "Preference: "
msgstr "Hobespena: "

#: diskdrake/interactive.pm:500
#, c-format
msgid "Logical volume name "
msgstr "Bolumen logikoaren izena "

#: diskdrake/interactive.pm:520
#, c-format
msgid ""
"You can not 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 ""
"Ezin duzu partizio berririk sortu\n"
"(lehen mailako partizioen gehienezko kopurura heldu zara).\n"
"Aurrena kendu lehen mailako partizio bat, eta sortu partizio hedatu bat."

#: diskdrake/interactive.pm:550
#, c-format
msgid "Remove the loopback file?"
msgstr "Atzera-begiztako fitxategia kendu?"

#: diskdrake/interactive.pm:572
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"%s partizio-mota aldatu ondoren, partizioko datu guztiak galdu egingo dira"

#: diskdrake/interactive.pm:585
#, c-format
msgid "Change partition type"
msgstr "Aldatu partizio mota"

#: diskdrake/interactive.pm:587 diskdrake/removable.pm:47
#, c-format
msgid "Which filesystem do you want?"
msgstr "Zein fitxategi-sistema nahi duzu?"

#: diskdrake/interactive.pm:594
#, c-format
msgid "Switching from %s to %s"
msgstr "%s-tik %s-ra aldatu"

#: diskdrake/interactive.pm:624
#, c-format
msgid "Set volume label"
msgstr "Ezarri bolumenarentzako etiketa"

#: diskdrake/interactive.pm:626
#, c-format
msgid "Beware, this will be written to disk as soon as you validate!"
msgstr "Adi, hau diskora idatziko da onartzen duzun bezain laster!"

#: diskdrake/interactive.pm:627
#, c-format
msgid "Beware, this will be written to disk only after formatting!"
msgstr "Kontuz, hau diskora idatziko da soilik formateatu ondoren!"

#: diskdrake/interactive.pm:629
#, c-format
msgid "Which volume label?"
msgstr "Bolumenarentzako zein etiketa?"

#: diskdrake/interactive.pm:630
#, c-format
msgid "Label:"
msgstr "Etiketa:"

#: diskdrake/interactive.pm:651
#, c-format
msgid "Where do you want to mount the loopback file %s?"
msgstr "Non muntatu nahi duzu %s atzera-begiztako fitxategia?"

#: diskdrake/interactive.pm:652
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Non muntatu nahi duzu %s gailua?"

#: diskdrake/interactive.pm:657
#, c-format
msgid ""
"Can not unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
"Ezin da muntatze-puntuaren ezarpena kendu, partizio hau atzera-begiztarako\n"
"erabiltzen delako. Kendu atzera-begizta lehendabizi"

#: diskdrake/interactive.pm:687
#, c-format
msgid "Where do you want to mount %s?"
msgstr "Non muntatu nahi duzu %s?"

#: diskdrake/interactive.pm:711 diskdrake/interactive.pm:794
#: fs/partitioning_wizard.pm:129 fs/partitioning_wizard.pm:191
#, c-format
msgid "Resizing"
msgstr "Tamaina aldatzen"

#: diskdrake/interactive.pm:711
#, c-format
msgid "Computing FAT filesystem bounds"
msgstr "FAT fitxategi-sistemaren mugak kalkulatzen"

#: diskdrake/interactive.pm:747
#, c-format
msgid "This partition is not resizeable"
msgstr "Partizio honi ezin zaio tamaina aldatu"

#: diskdrake/interactive.pm:752
#, c-format
msgid "All data on this partition should be backed-up"
msgstr "Partizio honetako datu guztien babeskopia egitea komeni da"

#: diskdrake/interactive.pm:754
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"%s partizioa tamainaz aldatu ondoren, partizioko datu guztiak galduko dira"

#: diskdrake/interactive.pm:761
#, c-format
msgid "Choose the new size"
msgstr "Aukeratu tamaina berria"

#: diskdrake/interactive.pm:762
#, c-format
msgid "New size in MB: "
msgstr "Tamaina berria MBtan: "

#: diskdrake/interactive.pm:763
#, c-format
msgid "Minimum size: %s MB"
msgstr "Gutxieneko neurria: %s MB"

#: diskdrake/interactive.pm:764
#, c-format
msgid "Maximum size: %s MB"
msgstr "Geihenezko neurria: %s MB"

#: diskdrake/interactive.pm:805
#, 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 ""
"Partizio(ar)en neurria aldatu ondoren datuen osotasuna ziurtatzeko, \n"
"fitxategi sistemaren egiaztapenak exekutatuko dira Windows®\n"
"abiarazten duzun hurrengo aldian."

#: diskdrake/interactive.pm:853 diskdrake/interactive.pm:1415
#, c-format
msgid "Filesystem encryption key"
msgstr "Fitxategi-sistema enkriptatzeko gakoa"

#: diskdrake/interactive.pm:854
#, c-format
msgid "Enter your filesystem encryption key"
msgstr "Sartu zure fitxategi sistema zifratzeko gakoa"

#: diskdrake/interactive.pm:855 diskdrake/interactive.pm:1423
#, c-format
msgid "Encryption key"
msgstr "Enkriptatze-gakoa"

#: diskdrake/interactive.pm:862
#, c-format
msgid "Invalid key"
msgstr "Gako baliogabea"

#: diskdrake/interactive.pm:870
#, c-format
msgid "Choose an existing RAID to add to"
msgstr "Aukeratu lehendik dagoen RAID bat gehitzeko"

#: diskdrake/interactive.pm:872 diskdrake/interactive.pm:893
#, c-format
msgid "new"
msgstr "berria"

#: diskdrake/interactive.pm:891
#, c-format
msgid "Choose an existing LVM to add to"
msgstr "Aukeratu lehendik dagoen LVM bat gehitzeko"

#: diskdrake/interactive.pm:903 diskdrake/interactive.pm:912, c-format
msgid "LVM name"
msgstr "LVM izena"

#: diskdrake/interactive.pm:904
#, c-format
msgid "Enter a name for the new LVM volume group"
msgstr "Sartu izen bat LVM bolumen talde berriarentzako"

#: diskdrake/interactive.pm:909, c-format
msgid "\"%s\" already exists"
msgstr "\"%s\" badago lehendik ere"

#: diskdrake/interactive.pm:940
#, 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 ""
"%s bolumen fisikoa erabiltzen ari da.\n"
"Bolumen honetan erabilitako luzapen fisikoak beste bolumen batzuetara mugitu "
"nahi dituzu?"

#: diskdrake/interactive.pm:942
#, c-format
msgid "Moving physical extents"
msgstr "Luzapen fisikoak mugitzen"

#: diskdrake/interactive.pm:960
#, c-format
msgid "This partition can not be used for loopback"
msgstr "Partizio hau ezin da atzera-begiztarako erabili"

#: diskdrake/interactive.pm:973
#, c-format
msgid "Loopback"
msgstr "Atzera-begizta"

#: diskdrake/interactive.pm:974
#, c-format
msgid "Loopback file name: "
msgstr "Atzera-begiztako fitxategi-izena: "

#: diskdrake/interactive.pm:979
#, c-format
msgid "Give a file name"
msgstr "Eman fitxategi-izen bat"

#: diskdrake/interactive.pm:982
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr ""
"Fitxategi hau beste atzera-begizta batek erabiltzen du, aukeratu beste bat"

#: diskdrake/interactive.pm:983
#, c-format
msgid "File already exists. Use it?"
msgstr "Fitxategia badago lehendik ere. Erabili?"

#: diskdrake/interactive.pm:1015 diskdrake/interactive.pm:1018
#, c-format
msgid "Mount options"
msgstr "Muntatze-aukerak"

#: diskdrake/interactive.pm:1025
#, c-format
msgid "Various"
msgstr "Hainbat"

#: diskdrake/interactive.pm:1092
#, c-format
msgid "device"
msgstr "gailua"

#: diskdrake/interactive.pm:1093
#, c-format
msgid "level"
msgstr "maila"

#: diskdrake/interactive.pm:1094
#, c-format
msgid "chunk size in KiB"
msgstr "zatiaren neurria KiB-etan"

#: diskdrake/interactive.pm:1112
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "Kontuz ibili: eragiketa hau arriskutsua da."

#: diskdrake/interactive.pm:1127
#, c-format
msgid "Partitioning Type"
msgstr "Partizionaketa mota"

#: diskdrake/interactive.pm:1127
#, c-format
msgid "What type of partitioning?"
msgstr "Nolako partizioa?"

#: diskdrake/interactive.pm:1165
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr "Berrabiarazi egin beharko duzu aldaketek eragina izan dezaten"

#: diskdrake/interactive.pm:1174
#, c-format
msgid "Partition table of drive %s is going to be written to disk"
msgstr "%s unitateko partizio-taula diskoan idaztera doa"

#: diskdrake/interactive.pm:1196 fs/format.pm:96 fs/format.pm:103
#, c-format
msgid "Formatting partition %s"
msgstr "%s partizioa formateatzen"

#: diskdrake/interactive.pm:1209
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"%s partizioa formateatu ondoren, partizioko datu guztiak galdu egingo dira"

#: diskdrake/interactive.pm:1218 fs/partitioning.pm:48
#, c-format
msgid "Check bad blocks?"
msgstr "Bloke txarrak egiaztatu?"

#: diskdrake/interactive.pm:1232
#, c-format
msgid "Move files to the new partition"
msgstr "Eraman fitxategiak partizio berrira"

#: diskdrake/interactive.pm:1232
#, c-format
msgid "Hide files"
msgstr "Ezkutatu fitxategiak"

#: diskdrake/interactive.pm:1233
#, 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 ""
"%s direktorioak dagoeneko datuak dauzka\n"
"(%s)\n"
"\n"
"Fitxategiak bertan muntatuko den partiziora mugitu ditzakezu edo dauden "
"tokian utzi ditzakezu (ondorioz muntatutako partizioaren edukinak ezkutatuko "
"ditu)"

#: diskdrake/interactive.pm:1248
#, c-format
msgid "Moving files to the new partition"
msgstr "Fitxategiak partizio berrira eramaten"

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

#: diskdrake/interactive.pm:1256
#, c-format
msgid "Removing %s"
msgstr "%s kentzen"

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

#: diskdrake/interactive.pm:1271
#, c-format
msgid "Partitions have been renumbered: "
msgstr "Partizioak berriro zenbakitu dira: "

#: diskdrake/interactive.pm:1296 diskdrake/interactive.pm:1364
#, c-format
msgid "Device: "
msgstr "Gailua: "

#: diskdrake/interactive.pm:1297
#, c-format
msgid "Volume label: "
msgstr "Bolumenaren etiketa: "

#: diskdrake/interactive.pm:1298
#, c-format
msgid "UUID: "
msgstr "UUID: "

#: diskdrake/interactive.pm:1299
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS unitate-letra: %s (uste hutsa)\n"

#: diskdrake/interactive.pm:1303 diskdrake/interactive.pm:1312
#: diskdrake/interactive.pm:1383
#, c-format
msgid "Type: "
msgstr "Mota: "

#: diskdrake/interactive.pm:1307 diskdrake/interactive.pm:1368
#, c-format
msgid "Name: "
msgstr "Izena: "

#: diskdrake/interactive.pm:1314
#, c-format
msgid "Start: sector %s\n"
msgstr "Hasiera: %s sektorea\n"

#: diskdrake/interactive.pm:1315
#, c-format
msgid "Size: %s"
msgstr "Tamaina: %s"

#: diskdrake/interactive.pm:1317
#, c-format
msgid ", %s sectors"
msgstr ", %s sektore"

#: diskdrake/interactive.pm:1319
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "%d zilindrotik %d zilindrora\n"

#: diskdrake/interactive.pm:1320
#, c-format
msgid "Number of logical extents: %d\n"
msgstr "Luzapen logiko kopurua: %d\n"

#: diskdrake/interactive.pm:1321
#, c-format
msgid "Formatted\n"
msgstr "Formateatua\n"

#: diskdrake/interactive.pm:1322
#, c-format
msgid "Not formatted\n"
msgstr "Formateatu gabe\n"

#: diskdrake/interactive.pm:1323
#, c-format
msgid "Mounted\n"
msgstr "Muntatuta\n"

#: diskdrake/interactive.pm:1324
#, c-format
msgid "RAID %s\n"
msgstr "RAID %s\n"

#: diskdrake/interactive.pm:1326
#, c-format
msgid "Encrypted"
msgstr "Zifratuta"

#: diskdrake/interactive.pm:1326
#, c-format
msgid " (mapped on %s)"
msgstr " (%s-n mapeatuta)"

#: diskdrake/interactive.pm:1327
#, c-format
msgid " (to map on %s)"
msgstr " (%s-n mapeatu)"

#: diskdrake/interactive.pm:1328
#, c-format
msgid " (inactive)"
msgstr " (geldi)"

#: diskdrake/interactive.pm:1334
#, c-format
msgid ""
"Loopback file(s):\n"
"   %s\n"
msgstr ""
"Atzera-begiztako fitxategia(k):\n"
"   %s\n"

#: diskdrake/interactive.pm:1335
#, c-format
msgid ""
"Partition booted by default\n"
"    (for MS-DOS boot, not for lilo)\n"
msgstr ""
"Lehenespenez abiarazteko partizioa\n"
"    (MS-DOS abiorako, ez lilo-rako)\n"

#: diskdrake/interactive.pm:1337
#, c-format
msgid "Level %s\n"
msgstr "%s maila\n"

#: diskdrake/interactive.pm:1338
#, c-format
msgid "Chunk size %d KiB\n"
msgstr "Zatiaren neurria %d KiB\n"

#: diskdrake/interactive.pm:1339
#, c-format
msgid "RAID-disks %s\n"
msgstr "%s RAID-diskoak\n"

#: diskdrake/interactive.pm:1341
#, c-format
msgid "Loopback file name: %s"
msgstr "Atzera-begiztako fitxategi-izena: %s"

#: diskdrake/interactive.pm:1344
#, c-format
msgid ""
"\n"
"Chances are, this partition is\n"
"a Driver partition. You should\n"
"probably leave it alone.\n"
msgstr ""
"\n"
"Partizio hau kontrolatzaileen\n"
"partizioa izan daiteke. Hobe duzu\n"
"bere horretan uztea.\n"

#: diskdrake/interactive.pm:1347
#, c-format
msgid ""
"\n"
"This special Bootstrap\n"
"partition is for\n"
"dual-booting your system.\n"
msgstr ""
"\n"
"Bootstrap partizio berezi hau\n"
"sistemaren abio bikoitza\n"
"egiteko da.\n"

#: diskdrake/interactive.pm:1356
#, c-format
msgid "Free space on %s (%s)"
msgstr "Leku askea %s-n (%s)"

#: diskdrake/interactive.pm:1365
#, c-format
msgid "Read-only"
msgstr "Irakurtzeko soilik"

#: diskdrake/interactive.pm:1366
#, c-format
msgid "Size: %s\n"
msgstr "Tamaina: %s\n"

#: diskdrake/interactive.pm:1367
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometria: %s zilindro, %s buru, %s sektore\n"

#: diskdrake/interactive.pm:1369
#, c-format
msgid "Medium type: "
msgstr "Euskarri mota: "

#: diskdrake/interactive.pm:1370
#, c-format
msgid "LVM-disks %s\n"
msgstr "%s LVM-diskoak\n"

#: diskdrake/interactive.pm:1371
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partizio-taularen mota: %s\n"

#: diskdrake/interactive.pm:1372
#, c-format
msgid "on channel %d id %d\n"
msgstr "-  kanala: %d id %d\n"

#: diskdrake/interactive.pm:1416
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "Aukeratu fitxategi-sistema enkriptatzeko gakoa"

#: diskdrake/interactive.pm:1419
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Enkriptatze-gako hau sinpleegia da (gutxienez %d karaktere izan behar ditu)"

#: diskdrake/interactive.pm:1420
#, c-format
msgid "The encryption keys do not match"
msgstr "Enkriptatze-gakoak ez datoz bat"

#: diskdrake/interactive.pm:1424
#, c-format
msgid "Encryption key (again)"
msgstr "Enkriptatze-gakoa (berriro)"

#: diskdrake/interactive.pm:1426
#, c-format
msgid "Encryption algorithm"
msgstr "Enkriptatze-algoritmoa"

#: diskdrake/removable.pm:46
#, c-format
msgid "Change type"
msgstr "Aldatu mota"

#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:129 interactive.pm:550
#: interactive/curses.pm:260 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "Utzi"

#: diskdrake/smbnfs_gtk.pm:164
#, c-format
msgid "Can not login using username %s (bad password?)"
msgstr "Ezin da saioa hasi %s erabiltzaile-izenarekin (pasahitz okerra?)"

#: diskdrake/smbnfs_gtk.pm:168 diskdrake/smbnfs_gtk.pm:177
#, c-format
msgid "Domain Authentication Required"
msgstr "Domeinu Egiaztatzea behar da"

#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Which username"
msgstr "Zein erabiltzaile-izen"

#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Another one"
msgstr "Beste bat"

#: diskdrake/smbnfs_gtk.pm:178
#, c-format
msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
"Idatzi ostalarian sartzeko erabiltzaile-izena, pasahitza eta domeinu-izena."

#: diskdrake/smbnfs_gtk.pm:180
#, c-format
msgid "Username"
msgstr "Erabiltzaile-izena"

#: diskdrake/smbnfs_gtk.pm:182
#, c-format
msgid "Domain"
msgstr "Domeinua"

#: diskdrake/smbnfs_gtk.pm:206
#, c-format
msgid "Search servers"
msgstr "Bilatu zerbitzarietan"

#: diskdrake/smbnfs_gtk.pm:211
#, c-format
msgid "Search new servers"
msgstr "Bilatu zerbitzari berriak"

#: do_pkgs.pm:19 do_pkgs.pm:57
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "%s paketea instalatu egin behar da. Instalatu nahi duzu?"

#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82
#, c-format
msgid "Could not install the %s package!"
msgstr "Ezin izan da %s paketea instalatu!"

#: do_pkgs.pm:28 do_pkgs.pm:65
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Derrigorrezko %s paketea falta da"

#: do_pkgs.pm:39 do_pkgs.pm:77
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Ondorengo paketeak instalatu behar dituzu:\n"

#: do_pkgs.pm:241
#, c-format
msgid "Installing packages..."
msgstr "Paketeak instalatzen..."

#: do_pkgs.pm:287 pkgs.pm:281
#, c-format
msgid "Removing packages..."
msgstr "Paketeak kentzen..."

#: fs/any.pm:17
#, 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 ""
"Errorea gertatu da - ez da fitxategi-sistema berriak sortzeko gailu "
"baliozkorik aurkitu. Aztertu zure hardwarea arazo honen arrazoia bilatzeko"

#: fs/any.pm:75 fs/partitioning_wizard.pm:60
#, c-format
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "FAT partizio bat eduki behar duzu /boot/efi-n muntatuta"

#: fs/format.pm:100
#, c-format
msgid "Creating and formatting file %s"
msgstr "%s fitxategia sortzen eta formateatzen"

#: fs/format.pm:119
#, c-format
msgid "I do not know how to set label on %s with type %s"
msgstr "Ez dakit %s-n %s motako etiketa nola ezarri"

#: fs/format.pm:126
#, c-format
msgid "setting label on %s failed, is it formatted?"
msgstr "%s-n etiketa ezartzeak huts egin du, formateatuta dago?"

#: fs/format.pm:167
#, c-format
msgid "I do not know how to format %s in type %s"
msgstr "Ez dakit nola formateatu %s %s motan"

#: fs/format.pm:172 fs/format.pm:174
#, c-format
msgid "%s formatting of %s failed"
msgstr "%2$s(r)i %1$s formatua emateak huts egin du"

#: fs/loopback.pm:24
#, c-format
msgid "Circular mounts %s\n"
msgstr "%s muntaketa zirkularrak\n"

#: fs/mount.pm:85
#, c-format
msgid "Mounting partition %s"
msgstr "%s partizioa muntatzen"

#: fs/mount.pm:86
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "%s partizioa %s direktorioan muntatzeak huts egin du"

#: fs/mount.pm:91 fs/mount.pm:108
#, c-format
msgid "Checking %s"
msgstr "%s egiaztatzen"

#: fs/mount.pm:125 partition_table.pm:405
#, c-format
msgid "error unmounting %s: %s"
msgstr "errorea %s desmuntatzean: %s"

#: fs/mount.pm:140
#, c-format
msgid "Enabling swap partition %s"
msgstr "%s swap partizioa gaitzen"

#: fs/mount_options.pm:114
#, c-format
msgid "Use an encrypted file system"
msgstr "Erabili zifratutako fitxategi sistema"

#: fs/mount_options.pm:116
#, c-format
msgid "Flush write cache on file close"
msgstr "Hustu idazteko katxea fitxategia ixtean"

#: fs/mount_options.pm:118
#, c-format
msgid "Enable group disk quota accounting and optionally enforce limits"
msgstr ""
"Gaitu taldeko disko kuota kontabilitatea eta aukera bezala mugak betearazi"

#: fs/mount_options.pm:120
#, c-format
msgid ""
"Do not update inode access times on this file system\n"
"(e.g, for faster access on the news spool to speed up news servers)."
msgstr ""
"Ez eguneratu inodoen atzipen-orduak fitxategi-sistema honetan\n"
"(adib.: berri-taldeen spool-a bizkorrago atzituz berri-zerbitzaria arinago "
"ibil dadin)"

#: 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 ""
"Ez eguneratu direktorio inodoen atzipen orduak fitxategi sistema honetan\n"
"(adib.: berri spool-a bizkorrago atzitzeko berri zerbitzariak azkarrago ibil "
"daitezen)."

#: fs/mount_options.pm:126
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
"the -a option will not cause the file system to be mounted)."
msgstr ""
"Esplizituki muntatu behar da (hau da,\n"
"-a aukerak ez du muntatuko fitxategi-sistema)."

#: fs/mount_options.pm:129
#, c-format
msgid "Do not interpret character or block special devices on the file system."
msgstr ""
"Ez interpretatu karaktere- edo bloke-gailu berezirik fitxategi-sisteman."

#: fs/mount_options.pm:131
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
"file system. This option might be useful for a server that has file systems\n"
"containing binaries for architectures other than its own."
msgstr ""
"Ez eman bitarrak exekutatzeko baimenik muntatutako\n"
"fitxategi-sisteman. Aukera hau egokia da berea ez den arkiteturaren bateko\n"
"fitxategi bitarrak dituen zerbitzari baterako."

#: 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 ""
"Ez utzi set-user-identifier edo set-group-identifier bitei\n"
"eragina izaten. (Segurua ematen du, baina suidperl(1) instalatuta \n"
"badaukazu, ez da batere segurua.)"

#: fs/mount_options.pm:139
#, c-format
msgid "Mount the file system read-only."
msgstr "Irakurtzeko soilik muntatu fitxategi-sistema."

#: fs/mount_options.pm:141
#, c-format
msgid "All I/O to the file system should be done synchronously."
msgstr "Fitxategi-sistemako S/I guztiak sinkronizatuta egin behar dira."

#: fs/mount_options.pm:143
#, c-format
msgid "Allow every user to mount and umount the file system."
msgstr ""
"Erabiltzaile orori fitxategi sistema muntatu eta desmuntatzeko baimena eman."

#: fs/mount_options.pm:145
#, c-format
msgid "Allow an ordinary user to mount the file system."
msgstr "Erabiltzaile arrunt bati fitxategi-sistema muntatzeko gaitasuna eman."

#: fs/mount_options.pm:147
#, c-format
msgid "Enable user disk quota accounting, and optionally enforce limits"
msgstr ""
"Gaitu erabiltzaile disko kuota kontabilitatea, eta aukera bezala mugak "
"betearazi"

#: fs/mount_options.pm:149
#, c-format
msgid "Support \"user.\" extended attributes"
msgstr "Euskarri eman erabiltzaileen ezaugarri hedatuei"

#: fs/mount_options.pm:151
#, c-format
msgid "Give write access to ordinary users"
msgstr "Eman idazteko baimena erabiltzaile arruntei"

#: fs/mount_options.pm:153
#, c-format
msgid "Give read-only access to ordinary users"
msgstr "Eman soilik irakurtzeko baimena erabiltzaile arruntei"

#: fs/mount_point.pm:80
#, c-format
msgid "Duplicate mount point %s"
msgstr "Bikoiztu %s muntatze-puntua"

#: fs/mount_point.pm:95
#, c-format
msgid "No partition available"
msgstr "Ez dago partizio erabilgarririk"

#: fs/mount_point.pm:98
#, c-format
msgid "Scanning partitions to find mount points"
msgstr "Partizioak eskaneatzen muntatze-puntuak aurkitzeko"

#: fs/mount_point.pm:105
#, c-format
msgid "Choose the mount points"
msgstr "Aukeratu muntatze-puntuak"

#: fs/partitioning.pm:46
#, c-format
msgid "Choose the partitions you want to format"
msgstr "Aukeratu formateatu nahi dituzun partizioak"

#: 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 ""
"Huts egin du %s fitxategi-sistema egiaztatzean. Erroreak konpondu nahi "
"dituzu? (kontuz ibili, datuak gal ditzakezu)"

#: fs/partitioning.pm:78
#, c-format
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Ez dago nahikoa swap instalazioa burutzeko, gehitu egin beharko duzu"

#: fs/partitioning_wizard.pm:52
#, c-format
msgid ""
"You must have a root partition.\n"
"For this, create a partition (or click on an existing one).\n"
"Then choose action ``Mount point'' and set it to `/'"
msgstr ""
"Erroko partizioa eduki behar duzu.\n"
"Horretarako, sortu partizio bat (edo egin klik lehendik dagoen batean).\n"
"Gero aukeratu ``Muntatze-puntua'' ekintza eta ezarri `/'"

#: fs/partitioning_wizard.pm:57
#, c-format
msgid ""
"You do not have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
"Ez duzu swap partiziorik.\n"
"\n"
"Jarraitu hala ere?"

#: fs/partitioning_wizard.pm:93
#, c-format
msgid "Use free space"
msgstr "Erabili leku librea"

#: fs/partitioning_wizard.pm:95
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Ez dago partizio berriak esleitzeko adina leku"

#: fs/partitioning_wizard.pm:103
#, c-format
msgid "Use existing partitions"
msgstr "Lehendik dauden partizioak erabili"

#: fs/partitioning_wizard.pm:105
#, c-format
msgid "There is no existing partition to use"
msgstr "Ez dago erabiltzeko moduko partiziorik"

#: fs/partitioning_wizard.pm:129
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "Microsoft Windows®-en partizioaren tamaina kalkulatzen"

#: fs/partitioning_wizard.pm:148
#, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "Erabili Microsoft Windows® partizio batetako leku askea"

#: fs/partitioning_wizard.pm:152
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Zein partiziori aldatu nahi diozu tamaina?"

#: fs/partitioning_wizard.pm:162
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
"the Mandriva Linux installation."
msgstr ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
"the Mandriva Linux installation."

#: fs/partitioning_wizard.pm:166
#, 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 ""
"ABISUA!\n"
"\n"
"\n"
"DrakX-k Windows-en partizioaren tamaina aldatuko du orain.\n"
"\n"
"\n"
"Kontuz ibili: eragiketa hau arriskutsua da. Oraindik halakorik ez baduzu "
"egin, aurrena instalaziotik irten beharko zenuke, \"chkdsk c:\" exekutatu "
"Windows-eko komando-gonbitetik (kontuan izan \"scandisk\" programa  grafikoa "
"exekutatzea ez dela nahikoa, \"chkdsk\" exekutatu behar duzula komando-"
"gonbitetik!), nahi baduzu defrag ere exekuta dezakezu, eta ondoren "
"instalazioa berriro hasi. Datuen babeskopia ere egin beharko zenuke.\n"
"\n"
"\n"
"Ziur bazaude, sakatu '%s'."

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: fs/partitioning_wizard.pm:175 fs/partitioning_wizard.pm:498
#: interactive.pm:549 interactive/curses.pm:263 ugtk2.pm:519
#, c-format
msgid "Next"
msgstr "Hurrengoa"

#: fs/partitioning_wizard.pm:180
#, c-format
msgid "Partitionning"
msgstr "Zatikatzen"

#: fs/partitioning_wizard.pm:180
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr "Zein tamaina utzi nahi duzu Microsoft Windows®-entzat %s partizioan?"

#: fs/partitioning_wizard.pm:181
#, c-format
msgid "Size"
msgstr "Tamaina"

#: fs/partitioning_wizard.pm:191
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Microsoft Windows® partizioaren tamaina aldatzen"

#: fs/partitioning_wizard.pm:196
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT tamaina aldatzeak huts egin du: %s"

#: fs/partitioning_wizard.pm:199
#, 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 ""
"Partizioen tamaina aldatu ondoren datuen osotasuna ziurtatzeko, \n"
"fitxategi-sistemaren probak exekutatuko dira Windows(TM) hurrengo\n"
"aldiz abiaraztean."

#: fs/partitioning_wizard.pm:212
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr "Ez dago FAT partiziorik tamainaz aldatzeko (edo ez dago nahikoa leku)"

#: fs/partitioning_wizard.pm:217
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Kendu Microsoft Windows®"

#: fs/partitioning_wizard.pm:217
#, c-format
msgid "Erase and use entire disk"
msgstr "Ezabatu eta erabili disko osoa"

#: fs/partitioning_wizard.pm:221
#, c-format
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Disko zurrun bat baino gehiago duzu, zeinetan instalatuko duzu linux?"

#: fs/partitioning_wizard.pm:229 fsedit.pm:600
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "%s unitatean dauden partizio eta datu GUZTIAK galdu egingo dira"

#: fs/partitioning_wizard.pm:239
#, c-format
msgid "Custom disk partitioning"
msgstr "Disko-partizio pertsonalizatua"

#: fs/partitioning_wizard.pm:245
#, c-format
msgid "Use fdisk"
msgstr "Erabili fdisk"

#: fs/partitioning_wizard.pm:248
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, do not forget to save using `w'"
msgstr ""
"Orain egin dezakezu %s partizioa.\n"
"Egin ondoren, ez ahaztu `w' erabiliz gordetzea"

#: fs/partitioning_wizard.pm:388 fs/partitioning_wizard.pm:518
#, c-format
msgid "I can not find any room for installing"
msgstr "Ezin dut instalatzeko lekurik aurkitu"

#: fs/partitioning_wizard.pm:397 fs/partitioning_wizard.pm:525
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX Partizio-morroiak irtenbide hauek aurkitu ditu:"

#: fs/partitioning_wizard.pm:459
#, c-format
msgid "Here is the content of your disk drive "
msgstr "Hemen dago zure disko unitatearen edukia"

#: fs/partitioning_wizard.pm:535
#, c-format
msgid "Partitioning failed: %s"
msgstr "Partizioak huts egin du: %s"

#: fs/type.pm:390
#, c-format
msgid "You can not use JFS for partitions smaller than 16MB"
msgstr "Ezin da JFS erabili 16MB baino gutxiagoko partizioetarako"

#: fs/type.pm:391
#, c-format
msgid "You can not use ReiserFS for partitions smaller than 32MB"
msgstr "Ezin da ReiserFS erabili 32MB baino gutxiagoko partizioetarako"

#: fsedit.pm:24
#, c-format
msgid "simple"
msgstr "sinplea"

#: fsedit.pm:28
#, c-format
msgid "with /usr"
msgstr "/usr-rekin"

#: fsedit.pm:33
#, c-format
msgid "server"
msgstr "zerbitzaria"

#: fsedit.pm:137
#, c-format
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr "BIOS software RAID aurkitu da %s diskoetan. Aktibatu nahi duzu?"

#: fsedit.pm:247
#, c-format
msgid ""
"I can not 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 ""
"Ezin dut zure %s gailuko partizio-taula irakurri, hondatuegia dago:(\n"
"jarraitzen saia naiteke, partizio txarrak ezabatuz (DATU GUZTIAK galduko "
"dira!).\n"
"Beste irtenbidea DrakX-ri partizio-taula aldatzeko baimenik ez ematea da.\n"
"(errorea %s da)\n"
"\n"
"Ados zaude partizio guztiak galtzearekin?\n"

#: fsedit.pm:425
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Muntatze-puntuek / batez hasi behar dute"

#: fsedit.pm:426
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Muntatze-puntuek karaktere alfanumerikoak bakarrik izan ditzakete"

#: fsedit.pm:427
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Jadanik badago %s muntatze-puntua duen partizio bat\n"

#: fsedit.pm:431
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"Please be sure to add a /boot partition"
msgstr ""
"Softwareko RAID partizio bat hautatu duzu erro gisa (/).\n"
"Ez dago abioko kargatzailerik hori /boot partiziorik gabe erabil "
"dezakeenik.\n"
"Beraz, kontuan izan /boot partizioa gehitu behar duzula"

#: fsedit.pm:437
#, c-format
msgid ""
"You can not use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr ""
"Ezin duzu LVM Bolumen Logikoa erabili %s muntaia puntuarentzako bolumen "
"fisikoak hedatzen dituelako"

#: fsedit.pm:439
#, 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 /boot partition first"
msgstr ""
"LVM bolumen logiko bat aukeratu duzu erro (/) gisa.\n"
"Abio zamatzailea ez da hau erabiltzeko gauza bolumenak bolumen fisikoak "
"hedatzen dituenean.\n"
"/boot partizio bat sortu beharko zenuke"

#: fsedit.pm:443 fsedit.pm:445
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Direktorio honek erroko fitxategi-sisteman egon behar du"

#: fsedit.pm:447 fsedit.pm:449
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
"Egiazko fitxategi-sistema (ext2/3/4, reiserfs, xfs, edo jfs) behar duzu "
"muntatze-puntu honetarako\n"

#: fsedit.pm:451
#, c-format
msgid "You can not use an encrypted file system for mount point %s"
msgstr "Ezin da fitxategi-sistema enkriptatua erabili %s muntatze-punturako"

#: fsedit.pm:516
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Ez dago nahikoa leku libre auto-esleitzeko"

#: fsedit.pm:518
#, c-format
msgid "Nothing to do"
msgstr "Ez dago zer eginik"

#: harddrake/data.pm:62
#, c-format
msgid "SATA controllers"
msgstr "SATA kontroladoreak"

#: harddrake/data.pm:71
#, c-format
msgid "RAID controllers"
msgstr "RAID kontroladoreak"

#: harddrake/data.pm:81
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "(E)IDE/ATA kontroladoreak"

#: harddrake/data.pm:92
#, c-format
msgid "Card readers"
msgstr "Txartela irakurleak"

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

#: harddrake/data.pm:110
#, c-format
msgid "PCMCIA controllers"
msgstr "PCMCIA kontroladoreak"

#: harddrake/data.pm:119
#, c-format
msgid "SCSI controllers"
msgstr "SCSI kontroladoreak"

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

#: harddrake/data.pm:137
#, c-format
msgid "USB ports"
msgstr "USB portuak"

#: harddrake/data.pm:146
#, c-format
msgid "SMBus controllers"
msgstr "SMBus kontroladoreak"

#: harddrake/data.pm:155
#, c-format
msgid "Bridges and system controllers"
msgstr "Zubiak eta sistema-kontroladoreak"

#: harddrake/data.pm:167
#, c-format
msgid "Floppy"
msgstr "Disketea"

#: harddrake/data.pm:177
#, c-format
msgid "Zip"
msgstr "Zip"

#: harddrake/data.pm:193
#, c-format
msgid "Hard Disk"
msgstr "Diskoa"

#: harddrake/data.pm:203
#, c-format
msgid "USB Mass Storage Devices"
msgstr "USB biltegiratze gailuak"

#: harddrake/data.pm:212
#, c-format
msgid "CDROM"
msgstr "CD-ROMa"

#: harddrake/data.pm:222
#, c-format
msgid "CD/DVD burners"
msgstr "CD/DVD grabagailuak"

#: harddrake/data.pm:232
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROMa"

#: harddrake/data.pm:242
#, c-format
msgid "Tape"
msgstr "Zinta"

#: harddrake/data.pm:253
#, c-format
msgid "AGP controllers"
msgstr "AGP kontroladoreak"

#: harddrake/data.pm:262
#, c-format
msgid "Videocard"
msgstr "Bideo-txartela"

#: harddrake/data.pm:271
#, c-format
msgid "DVB card"
msgstr "DVB txartela"

#: harddrake/data.pm:279
#, c-format
msgid "Tvcard"
msgstr "Telebista-txartela"

#: harddrake/data.pm:289
#, c-format
msgid "Other MultiMedia devices"
msgstr "Multimediako beste gailu batzuk"

#: harddrake/data.pm:298
#, c-format
msgid "Soundcard"
msgstr "Soinu-txartela"

#: harddrake/data.pm:312
#, c-format
msgid "Webcam"
msgstr "Web kamera"

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

#: harddrake/data.pm:337
#, c-format
msgid "ISDN adapters"
msgstr "ISDN moldagailuak"

#: harddrake/data.pm:348
#, c-format
msgid "USB sound devices"
msgstr "USB soinu gailuak"

#: harddrake/data.pm:357
#, c-format
msgid "Radio cards"
msgstr "Irrati txartelak"

#: harddrake/data.pm:366
#, c-format
msgid "ATM network cards"
msgstr "ATM sare txartelak"

#: harddrake/data.pm:375
#, c-format
msgid "WAN network cards"
msgstr "WAN sare txartelak"

#: harddrake/data.pm:384
#, c-format
msgid "Bluetooth devices"
msgstr "Bluetooth gailuak"

#: harddrake/data.pm:393
#, c-format
msgid "Ethernetcard"
msgstr "Ethernet txartela"

#: harddrake/data.pm:410
#, c-format
msgid "Modem"
msgstr "Modema"

#: harddrake/data.pm:420
#, c-format
msgid "ADSL adapters"
msgstr "ADSL moldagailuak"

#: harddrake/data.pm:432
#, c-format
msgid "Memory"
msgstr "Memoria"

#: harddrake/data.pm:441
#, c-format
msgid "Printer"
msgstr "Inprimagailua"

#. -PO: these are joysticks controllers:
#: harddrake/data.pm:455
#, c-format
msgid "Game port controllers"
msgstr "Joku ataka kontrolatzaileak"

#: harddrake/data.pm:464
#, c-format
msgid "Joystick"
msgstr "Kontrol-palanka"

#: harddrake/data.pm:474
#, c-format
msgid "Keyboard"
msgstr "Teklatua"

#: harddrake/data.pm:488
#, c-format
msgid "Tablet and touchscreen"
msgstr "Tabletak eta ukipen-pantailak"

#: harddrake/data.pm:497
#, c-format
msgid "Mouse"
msgstr "Sagua"

#: 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 "Eskanerra"

#: harddrake/data.pm:540
#, c-format
msgid "Unknown/Others"
msgstr "Ezezaguna/Beste batzuk"

#: harddrake/data.pm:570
#, c-format
msgid "cpu # "
msgstr "puz zk. "

#: harddrake/sound.pm:303
#, c-format
msgid "Please Wait... Applying the configuration"
msgstr "Itxaron mesedez... Konfiguraketa aplikatzen"

#: harddrake/sound.pm:366
#, c-format
msgid "Enable PulseAudio"
msgstr "PulseAudio gaitu"

#: harddrake/sound.pm:370
#, c-format
msgid "Enable 5.1 sound with Pulse Audio"
msgstr "Gaitu 5.1 soinua Pulse Audiorekin"

#: harddrake/sound.pm:375
#, c-format
msgid "Enable user switching for audio applications"
msgstr "Gaitu erabiltzaileek audio aplikazioa aldatu dezaten"

#: harddrake/sound.pm:379
#, c-format
msgid "Use Glitch-Free mode"
msgstr "Erabili akatsik-gabeko modua"

#: harddrake/sound.pm:385
#, c-format
msgid "Reset sound mixer to default values"
msgstr "Berrezarri soinu nahaslea balio lehenetsietan"

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

#: harddrake/sound.pm:397
#, c-format
msgid "No alternative driver"
msgstr "Beste kontrolatzailerik ez"

#: harddrake/sound.pm:398
#, c-format
msgid ""
"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
"currently uses \"%s\""
msgstr ""
"Soinu-txartel horrentzat (%s) une honetan ez dago \"%s\" erabiltzen duen "
"beste OSS/ALSA kontrolatzailerik"

#: harddrake/sound.pm:405
#, c-format
msgid "Sound configuration"
msgstr "Soinu-konfigurazioa"

#: harddrake/sound.pm:407
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
"sound card (%s)."
msgstr ""
"Beste kontrolatzaile bat hauta dezakezu (OSS edo ALSA) (%s) soinu-"
"txartelarentzat."

#. -PO: here the first %s is either "OSS" or "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:412
#, c-format
msgid ""
"\n"
"\n"
"Your card currently use the %s\"%s\" driver (default driver for your card is "
"\"%s\")"
msgstr ""
"\n"
"\n"
"Zure txartelak %s\"%s\" kontrolatzailea darabil orain (txartelaren "
"kontrolatzaile lehenetsia \"%s\" da)"

#: harddrake/sound.pm:414
#, 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) lehenengo soinu APIa izan zen. Ez da SEari lotutako "
"soinu APIa (UNIX sistema gehienetan erabil daiteke), baina oso oinarrizkoa "
"eta mugatua da.\n"
"Gainera, OSS kontrolatzaile guztiek \"gurpila asmatu\" behar izaten dute.\n"
"\n"
"ALSA (Advanced Linux Sound Architecture) arkitektura modularizatua da, eta\n"
"ISA, USB eta PCI txartel asko onartzen ditu.\n"
"\n"
"Halaber, OSSk baino askoz maila hobeko APIa eskaintzen du.\n"
"\n"
"Alsa erabiltzeko, hauek erabil ditzakezu:\n"
"- OSS api zaharreko bateragarritasuna\n"
"- ALSA api berria, hobetutako eginbide asko dituena, baina ALSA liburutegia "
"erabiltzea eskatzen duena.\n"

#: harddrake/sound.pm:428 harddrake/sound.pm:511
#, c-format
msgid "Driver:"
msgstr "Kontrolatzailea:"

# unloading : deskargatu ???? zama????
#: harddrake/sound.pm:442
#, c-format
msgid ""
"The old \"%s\" driver is blacklisted.\n"
"\n"
"It has been reported to oops the kernel on unloading.\n"
"\n"
"The new \"%s\" driver will only be used on next bootstrap."
msgstr ""
"\"%s\" kontrolatzaile zaharra zerrenda beltzean dago.\n"
"\n"
"Deskargatzean nukleoa trabatzen duela jakinarazi dute.\n"
"\n"
"\"%s\" kontrolatzaile berria ez da erabiliko makina berriz abiarazi arte."

#: harddrake/sound.pm:450
#, c-format
msgid "No open source driver"
msgstr "Iturburu irekiko kontrolatzailerik ez"

#: harddrake/sound.pm:451
#, c-format
msgid ""
"There's no free driver for your sound card (%s), but there's a proprietary "
"driver at \"%s\"."
msgstr ""
"Ez dago kontrolatzaile librerik zure soinu txartelarentzat (%s), baina "
"badago kontrolatzaile jabedun bat \"%s\"(e)n."

#: harddrake/sound.pm:454
#, c-format
msgid "No known driver"
msgstr "Kontrolatzaile ezagunik ez"

#: harddrake/sound.pm:455
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "Ez dago soinu txartelarentzako (%s) kontrolatzaile ezagunik"

#: harddrake/sound.pm:470
#, c-format
msgid "Sound trouble shooting"
msgstr "Soinu-arazoak konpontzea"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: harddrake/sound.pm:473
#, c-format
msgid ""
"The classic bug sound tester is to run the following commands:\n"
"\n"
"\n"
"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
"uses\n"
"by default\n"
"\n"
"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
"currently uses\n"
"\n"
"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
"loaded or not\n"
"\n"
"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
"tell you if sound and alsa services are configured to be run on\n"
"initlevel 3\n"
"\n"
"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
msgstr ""
"Soinu-probatzaileak ondorengo komandoak exekutatzen ditu:\n"
"\n"
"\n"
"- \"lspcidrake -v | fgrep -i AUDIO\" : zure txartelaren kontrolatzaile \n"
"lehenetsia zein den adierazten du\n"
"\n"
"- \"grep sound-slot /etc/modprobe.conf\" : unean zein kontrolatzaile\n"
"darabilen adierazten du\n"
"\n"
"- \"/sbin/lsmod\" : bere modulua (kontrolatzailea) kargatuta dagoen ala\n"
"ez begiratzeko aukera emango dizu\n"
"\n"
"- \"/sbin/chkconfig --list sound\" eta \"/sbin/chkconfig --list alsa\" :\n"
"soinu- eta alsa-zerbitzuak 3. mailan (initlevel 3) exekutatzeko \n"
"konfiguratuta dauden adierazten du\n"
"\n"
"- \"aumix -q\" : soinuaren bolumena mutututa dagoen edo ez adierazten du\n"
"\n"
"- \"/sbin/fuser -v /dev/dsp\" : soinu-txartela erabiltzen duten programak\n"
"adierazten ditu.\n"

#: harddrake/sound.pm:500
#, c-format
msgid "Let me pick any driver"
msgstr "Edozein kontrolatzaile hartuko dut"

#: harddrake/sound.pm:503
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Kontrolatzaile arbitrario bat aukeratzen"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: harddrake/sound.pm:506
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
"card\n"
"you can pick one in the above list.\n"
"\n"
"The current driver for your \"%s\" sound card is \"%s\" "
msgstr ""
"Ziur bazaude badakizula zure txartelari zein kontrolatzaile dagokion, \n"
"goiko zerrendan hauta dezakezu.\n"
"\n"
"Zure \"%s\" soinu-txartelaren uneko kontrolatzailea \"%s\" da"

#: harddrake/v4l.pm:12
#, c-format
msgid "Auto-detect"
msgstr "Autodetektatu"

#: harddrake/v4l.pm:97 harddrake/v4l.pm:285 harddrake/v4l.pm:337
#, c-format
msgid "Unknown|Generic"
msgstr "Ezezaguna|generikoa"

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

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

#: 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 ""
"Telebista-txartel gehienetan GNU/Linux nukleoaren bttv moduluak automatikoki "
"detektatzen ditu parametroak.\n"
"Zure txartela gaizki detektatzen bada, hemen adieraz ditzakezu "
"sintonizadore- eta txartel-mota egokiak. Behar izanez gero, hautatu zure "
"telebista-txartelaren parametroak."

#: harddrake/v4l.pm:478
#, c-format
msgid "Card model:"
msgstr "Txartel-modeloa:"

#: harddrake/v4l.pm:479
#, c-format
msgid "Tuner type:"
msgstr "Sintonizadore-mota:"

#: interactive.pm:128 interactive.pm:549 interactive/curses.pm:263
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
#: ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
#, c-format
msgid "Ok"
msgstr "Ados"

#: interactive.pm:228 modules/interactive.pm:72 ugtk2.pm:811 wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Bai"

#: interactive.pm:228 modules/interactive.pm:72 ugtk2.pm:811 wizards.pm:156
#, c-format
msgid "No"
msgstr "Ez"

#: interactive.pm:262
#, c-format
msgid "Choose a file"
msgstr "Aukeratu fitxategi bat"

#: interactive.pm:387 interactive/gtk.pm:453
#, c-format
msgid "Add"
msgstr "Gehitu"

#: interactive.pm:387 interactive/gtk.pm:453
#, c-format
msgid "Modify"
msgstr "Aldatu"

#: interactive.pm:549 interactive/curses.pm:263 ugtk2.pm:519
#, c-format
msgid "Finish"
msgstr "Amaitu"

#: interactive.pm:550 interactive/curses.pm:260 ugtk2.pm:517
#, c-format
msgid "Previous"
msgstr "Aurrekoa"

#: interactive/curses.pm:556 ugtk2.pm:872
#, c-format
msgid "No file chosen"
msgstr "Ez da fitxategirik hautatu"

#: interactive/curses.pm:560 ugtk2.pm:876
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "Direktorio bat hautatu duzu, ez fitxategi bat"

#: interactive/curses.pm:562 ugtk2.pm:878
#, c-format
msgid "No such directory"
msgstr "Ez dago horrelako direktoriorik"

#: interactive/curses.pm:562 ugtk2.pm:878
#, c-format
msgid "No such file"
msgstr "Ez dago horrelako fitxategirik"

#: interactive/gtk.pm:594
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr "Kontuz, Blok Maius gaituta dago"

#: interactive/stdio.pm:29 interactive/stdio.pm:154
#, c-format
msgid "Bad choice, try again\n"
msgstr "Aukera okerra, saiatu berriro\n"

#: interactive/stdio.pm:30 interactive/stdio.pm:155
#, c-format
msgid "Your choice? (default %s) "
msgstr "Zure aukera? (%s lehenetsia) "

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

#: interactive/stdio.pm:70
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Zure aukera? (0/1, lehenetsia `%s' da) "

#: interactive/stdio.pm:97
#, c-format
msgid "Button `%s': %s"
msgstr "`%s' botoia: %s"

#: interactive/stdio.pm:98
#, c-format
msgid "Do you want to click on this button?"
msgstr "Botoi honetan klik egin nahi duzu?"

#: interactive/stdio.pm:110
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Zure aukera? (lehenetsia: `%s'%s) "

#: interactive/stdio.pm:110
#, c-format
msgid " enter `void' for void entry"
msgstr " idatzi `void' sarrera hutsik uzteko"

#: interactive/stdio.pm:128
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Gauza asko dituzu aukeran (%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 ""
"Aukeratu editatu nahi duzun 10eko multzoko lehen zenbakia,\n"
"edo sakatu Sartu, jarraitzeko.\n"
"Zure aukera? "

#: interactive/stdio.pm:144
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
"=> Kontuz, etiketa bat aldatu da:\n"
"%s"

#: interactive/stdio.pm:151
#, c-format
msgid "Re-submit"
msgstr "Berriro bidali"

#. -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:194
#, c-format
msgid "default:LTR"
msgstr "default:LTR"

#: lang.pm:211
#, c-format
msgid "Andorra"
msgstr "Andorra"

#: lang.pm:212 timezone.pm:226
#, c-format
msgid "United Arab Emirates"
msgstr "Arabiar Emirerri Batuak"

#: lang.pm:213
#, c-format
msgid "Afghanistan"
msgstr "Afganistan"

#: lang.pm:214
#, c-format
msgid "Antigua and Barbuda"
msgstr "Antigua eta Barbuda"

#: lang.pm:215
#, c-format
msgid "Anguilla"
msgstr "Anguilla"

#: lang.pm:216
#, c-format
msgid "Albania"
msgstr "Albania"

#: lang.pm:217
#, c-format
msgid "Armenia"
msgstr "Armenia"

#: lang.pm:218
#, c-format
msgid "Netherlands Antilles"
msgstr "Antilla herbeheretarrak"

#: lang.pm:219
#, c-format
msgid "Angola"
msgstr "Angola"

#: lang.pm:220
#, c-format
msgid "Antarctica"
msgstr "Antartika"

#: lang.pm:221 timezone.pm:271
#, c-format
msgid "Argentina"
msgstr "Argentina"

#: lang.pm:222
#, c-format
msgid "American Samoa"
msgstr "Samoa amerikarra"

#: lang.pm:223 mirror.pm:12 timezone.pm:229
#, c-format
msgid "Austria"
msgstr "Austria"

#: lang.pm:224 mirror.pm:11 timezone.pm:267
#, c-format
msgid "Australia"
msgstr "Australia"

#: lang.pm:225
#, c-format
msgid "Aruba"
msgstr "Aruba"

#: lang.pm:226
#, c-format
msgid "Azerbaijan"
msgstr "Azerbaijan"

#: lang.pm:227
#, c-format
msgid "Bosnia and Herzegovina"
msgstr "Bosnia Herzegovina"

#: lang.pm:228
#, c-format
msgid "Barbados"
msgstr "Barbados"

#: lang.pm:229 timezone.pm:211
#, c-format
msgid "Bangladesh"
msgstr "Bangladesh"

#: lang.pm:230 mirror.pm:13 timezone.pm:231
#, c-format
msgid "Belgium"
msgstr "Belgika"

#: lang.pm:231
#, c-format
msgid "Burkina Faso"
msgstr "Burkina Faso"

#: lang.pm:232 timezone.pm:232
#, c-format
msgid "Bulgaria"
msgstr "Bulgaria"

#: lang.pm:233
#, c-format
msgid "Bahrain"
msgstr "Bahrain"

#: lang.pm:234
#, c-format
msgid "Burundi"
msgstr "Burundi"

#: lang.pm:235
#, c-format
msgid "Benin"
msgstr "Benin"

#: lang.pm:236
#, c-format
msgid "Bermuda"
msgstr "Bermuda"

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

#: lang.pm:238
#, c-format
msgid "Bolivia"
msgstr "Bolivia"

#: lang.pm:239 mirror.pm:14 timezone.pm:272
#, c-format
msgid "Brazil"
msgstr "Brasil"

#: lang.pm:240
#, c-format
msgid "Bahamas"
msgstr "Bahamak"

#: lang.pm:241
#, c-format
msgid "Bhutan"
msgstr "Bhutan"

#: lang.pm:242
#, c-format
msgid "Bouvet Island"
msgstr "Bouvet uhartea"

#: lang.pm:243
#, c-format
msgid "Botswana"
msgstr "Botswana"

#: lang.pm:244 timezone.pm:230
#, c-format
msgid "Belarus"
msgstr "Bielorrusia"

#: lang.pm:245
#, c-format
msgid "Belize"
msgstr "Belize"

#: lang.pm:246 mirror.pm:15 timezone.pm:261
#, c-format
msgid "Canada"
msgstr "Kanada"

#: lang.pm:247
#, c-format
msgid "Cocos (Keeling) Islands"
msgstr "Cocos Keeling uharteak"

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

#: lang.pm:249
#, c-format
msgid "Central African Republic"
msgstr "Afrika Erdiko Errepublika"

#: lang.pm:250
#, c-format
msgid "Congo (Brazzaville)"
msgstr "Kongo (Brazzaville)"

#: lang.pm:251 mirror.pm:39 timezone.pm:255
#, c-format
msgid "Switzerland"
msgstr "Suitza"

#: lang.pm:252
#, c-format
msgid "Cote d'Ivoire"
msgstr "Boli Kosta"

#: lang.pm:253
#, c-format
msgid "Cook Islands"
msgstr "Cook uharteak"

#: lang.pm:254 timezone.pm:273
#, c-format
msgid "Chile"
msgstr "Txile"

#: lang.pm:255
#, c-format
msgid "Cameroon"
msgstr "Kamerun"

#: lang.pm:256 timezone.pm:212
#, c-format
msgid "China"
msgstr "Txina"

#: lang.pm:257
#, c-format
msgid "Colombia"
msgstr "Kolonbia"

#: lang.pm:258 mirror.pm:16
#, c-format
msgid "Costa Rica"
msgstr "Costa Rica"

#: lang.pm:259
#, c-format
msgid "Serbia & Montenegro"
msgstr "Serbia eta Montenegro"

#: lang.pm:260
#, c-format
msgid "Cuba"
msgstr "Kuba"

#: lang.pm:261
#, c-format
msgid "Cape Verde"
msgstr "Cabo Verde"

#: lang.pm:262
#, c-format
msgid "Christmas Island"
msgstr "Christmas uhartea"

#: lang.pm:263
#, c-format
msgid "Cyprus"
msgstr "Zipre"

#: lang.pm:264 mirror.pm:17 timezone.pm:233
#, c-format
msgid "Czech Republic"
msgstr "Txekiar Errepublika"

#: lang.pm:265 mirror.pm:22 timezone.pm:238
#, c-format
msgid "Germany"
msgstr "Alemania"

#: lang.pm:266
#, c-format
msgid "Djibouti"
msgstr "Djibuti"

#: lang.pm:267 mirror.pm:18 timezone.pm:234
#, c-format
msgid "Denmark"
msgstr "Danimarka"

#: lang.pm:268
#, c-format
msgid "Dominica"
msgstr "Dominika"

#: lang.pm:269
#, c-format
msgid "Dominican Republic"
msgstr "Dominikar Errepublika"

#: lang.pm:270
#, c-format
msgid "Algeria"
msgstr "Aljeria"

#: lang.pm:271
#, c-format
msgid "Ecuador"
msgstr "Ekuador"

#: lang.pm:272 mirror.pm:19 timezone.pm:235
#, c-format
msgid "Estonia"
msgstr "Estonia"

#: lang.pm:273
#, c-format
msgid "Egypt"
msgstr "Egipto"

#: lang.pm:274
#, c-format
msgid "Western Sahara"
msgstr "Mendebaldeko Sahara"

#: lang.pm:275
#, c-format
msgid "Eritrea"
msgstr "Eritrea"

#: lang.pm:276 mirror.pm:37 timezone.pm:253
#, c-format
msgid "Spain"
msgstr "Espainia"

#: lang.pm:277
#, c-format
msgid "Ethiopia"
msgstr "Etiopia"

#: lang.pm:278 mirror.pm:20 timezone.pm:236
#, c-format
msgid "Finland"
msgstr "Finlandia"

#: lang.pm:279
#, c-format
msgid "Fiji"
msgstr "Fiji"

#: lang.pm:280
#, c-format
msgid "Falkland Islands (Malvinas)"
msgstr "Falkland uharteak (Malvinak)"

#: lang.pm:281
#, c-format
msgid "Micronesia"
msgstr "Mikronesia"

#: lang.pm:282
#, c-format
msgid "Faroe Islands"
msgstr "Faroe uharteak"

#: lang.pm:283 mirror.pm:21 timezone.pm:237
#, c-format
msgid "France"
msgstr "Frantzia"

#: lang.pm:284
#, c-format
msgid "Gabon"
msgstr "Gabon"

#: lang.pm:285 timezone.pm:257
#, c-format
msgid "United Kingdom"
msgstr "Erresuma Batua"

#: lang.pm:286
#, c-format
msgid "Grenada"
msgstr "Grenada"

#: lang.pm:287
#, c-format
msgid "Georgia"
msgstr "Georgia"

#: lang.pm:288
#, c-format
msgid "French Guiana"
msgstr "Guyana frantsesa"

#: lang.pm:289
#, c-format
msgid "Ghana"
msgstr "Ghana"

#: lang.pm:290
#, c-format
msgid "Gibraltar"
msgstr "Gibraltar"

#: lang.pm:291
#, c-format
msgid "Greenland"
msgstr "Groenlandia"

#: lang.pm:292
#, c-format
msgid "Gambia"
msgstr "Gambia"

#: lang.pm:293
#, c-format
msgid "Guinea"
msgstr "Ginea"

#: lang.pm:294
#, c-format
msgid "Guadeloupe"
msgstr "Guadalupe"

#: lang.pm:295
#, c-format
msgid "Equatorial Guinea"
msgstr "Ekuatore Ginea"

#: lang.pm:296 mirror.pm:23 timezone.pm:239
#, c-format
msgid "Greece"
msgstr "Grezia"

#: lang.pm:297
#, c-format
msgid "South Georgia and the South Sandwich Islands"
msgstr "Hegoaldeko Georgia eta Hegoaldeko Sandwich uharteak"

#: lang.pm:298 timezone.pm:262
#, c-format
msgid "Guatemala"
msgstr "Guatemala"

#: lang.pm:299
#, c-format
msgid "Guam"
msgstr "Guam"

#: lang.pm:300
#, c-format
msgid "Guinea-Bissau"
msgstr "Ginea Bissau"

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

#: lang.pm:302
#, c-format
msgid "Hong Kong SAR (China)"
msgstr "Txina (Hong Kong)"

#: lang.pm:303
#, c-format
msgid "Heard and McDonald Islands"
msgstr "Heard eta McDonald uharteak"

#: lang.pm:304
#, c-format
msgid "Honduras"
msgstr "Honduras"

#: lang.pm:305
#, c-format
msgid "Croatia"
msgstr "Kroazia"

#: lang.pm:306
#, c-format
msgid "Haiti"
msgstr "Haiti"

#: lang.pm:307 mirror.pm:24 timezone.pm:240
#, c-format
msgid "Hungary"
msgstr "Hungaria"

#: lang.pm:308 timezone.pm:215
#, c-format
msgid "Indonesia"
msgstr "Indonesia"

#: lang.pm:309 mirror.pm:25 timezone.pm:241
#, c-format
msgid "Ireland"
msgstr "Irlanda"

#: lang.pm:310 mirror.pm:26 timezone.pm:217
#, c-format
msgid "Israel"
msgstr "Israel"

#: lang.pm:311 timezone.pm:214
#, c-format
msgid "India"
msgstr "India"

#: lang.pm:312
#, c-format
msgid "British Indian Ocean Territory"
msgstr "Indiako Ozeanoko Britainiar Lurraldea"

#: lang.pm:313
#, c-format
msgid "Iraq"
msgstr "Irak"

#: lang.pm:314 timezone.pm:216
#, c-format
msgid "Iran"
msgstr "Iran"

#: lang.pm:315
#, c-format
msgid "Iceland"
msgstr "Islandia"

#: lang.pm:316 mirror.pm:27 timezone.pm:242
#, c-format
msgid "Italy"
msgstr "Italia"

#: lang.pm:317
#, c-format
msgid "Jamaica"
msgstr "Jamaika"

#: lang.pm:318
#, c-format
msgid "Jordan"
msgstr "Jordania"

#: lang.pm:319 mirror.pm:28 timezone.pm:218
#, c-format
msgid "Japan"
msgstr "Japonia"

#: lang.pm:320
#, c-format
msgid "Kenya"
msgstr "Kenya"

#: lang.pm:321
#, c-format
msgid "Kyrgyzstan"
msgstr "Kirgizistan"

#: lang.pm:322
#, c-format
msgid "Cambodia"
msgstr "Kanbodia"

#: lang.pm:323
#, c-format
msgid "Kiribati"
msgstr "Kiribati"

#: lang.pm:324
#, c-format
msgid "Comoros"
msgstr "Komoroak"

#: lang.pm:325
#, c-format
msgid "Saint Kitts and Nevis"
msgstr "Saint Kitts eta Nevis"

#: lang.pm:326
#, c-format
msgid "Korea (North)"
msgstr "Korea (Iparraldekoa)"

#: lang.pm:327 timezone.pm:219
#, c-format
msgid "Korea"
msgstr "Korea"

#: lang.pm:328
#, c-format
msgid "Kuwait"
msgstr "Kuwait"

#: lang.pm:329
#, c-format
msgid "Cayman Islands"
msgstr "Kaiman uharteak"

#: lang.pm:330
#, c-format
msgid "Kazakhstan"
msgstr "Kazakhstan"

#: lang.pm:331
#, c-format
msgid "Laos"
msgstr "Laos"

#: lang.pm:332
#, c-format
msgid "Lebanon"
msgstr "Libano"

#: lang.pm:333
#, c-format
msgid "Saint Lucia"
msgstr "Santa Luzia"

#: lang.pm:334
#, c-format
msgid "Liechtenstein"
msgstr "Liechtenstein"

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

#: lang.pm:336
#, c-format
msgid "Liberia"
msgstr "Liberia"

#: lang.pm:337
#, c-format
msgid "Lesotho"
msgstr "Lesotho"

#: lang.pm:338 timezone.pm:243
#, c-format
msgid "Lithuania"
msgstr "Lituania"

#: lang.pm:339 timezone.pm:244
#, c-format
msgid "Luxembourg"
msgstr "Luxenburgo"

#: lang.pm:340
#, c-format
msgid "Latvia"
msgstr "Letonia"

#: lang.pm:341
#, c-format
msgid "Libya"
msgstr "Libia"

#: lang.pm:342
#, c-format
msgid "Morocco"
msgstr "Maroko"

#: lang.pm:343
#, c-format
msgid "Monaco"
msgstr "Monako"

#: lang.pm:344
#, c-format
msgid "Moldova"
msgstr "Moldavia"

#: lang.pm:345
#, c-format
msgid "Madagascar"
msgstr "Madagaskar"

#: lang.pm:346
#, c-format
msgid "Marshall Islands"
msgstr "Marshall uharteak"

#: lang.pm:347
#, c-format
msgid "Macedonia"
msgstr "Mazedonia"

#: lang.pm:348
#, c-format
msgid "Mali"
msgstr "Mali"

#: lang.pm:349
#, c-format
msgid "Myanmar"
msgstr "Birmania"

#: lang.pm:350
#, c-format
msgid "Mongolia"
msgstr "Mongolia"

#: lang.pm:351
#, c-format
msgid "Northern Mariana Islands"
msgstr "Iparraldeko Mariana uharteak"

#: lang.pm:352
#, c-format
msgid "Martinique"
msgstr "Martinika"

#: lang.pm:353
#, c-format
msgid "Mauritania"
msgstr "Mauritania"

#: lang.pm:354
#, c-format
msgid "Montserrat"
msgstr "Montserrat"

#: lang.pm:355
#, c-format
msgid "Malta"
msgstr "Malta"

#: lang.pm:356
#, c-format
msgid "Mauritius"
msgstr "Maurizio"

#: lang.pm:357
#, c-format
msgid "Maldives"
msgstr "Maldivak"

#: lang.pm:358
#, c-format
msgid "Malawi"
msgstr "Malawi"

#: lang.pm:359 timezone.pm:263
#, c-format
msgid "Mexico"
msgstr "Mexiko"

#: lang.pm:360 timezone.pm:220
#, c-format
msgid "Malaysia"
msgstr "Malaysia"

#: lang.pm:361
#, c-format
msgid "Mozambique"
msgstr "Mozanbike"

#: lang.pm:362
#, c-format
msgid "Namibia"
msgstr "Namibia"

#: lang.pm:363
#, c-format
msgid "New Caledonia"
msgstr "Kaledonia Berria"

#: lang.pm:364
#, c-format
msgid "Niger"
msgstr "Niger"

#: lang.pm:365
#, c-format
msgid "Norfolk Island"
msgstr "Norfolk uhartea"

#: lang.pm:366
#, c-format
msgid "Nigeria"
msgstr "Nigeria"

#: lang.pm:367
#, c-format
msgid "Nicaragua"
msgstr "Nikaragua"

#: lang.pm:368 mirror.pm:29 timezone.pm:245
#, c-format
msgid "Netherlands"
msgstr "Herbehereak"

#: lang.pm:369 mirror.pm:31 timezone.pm:246
#, c-format
msgid "Norway"
msgstr "Norvegia"

#: lang.pm:370
#, c-format
msgid "Nepal"
msgstr "Nepal"

#: lang.pm:371
#, c-format
msgid "Nauru"
msgstr "Nauru"

#: lang.pm:372
#, c-format
msgid "Niue"
msgstr "Niue"

#: lang.pm:373 mirror.pm:30 timezone.pm:268
#, c-format
msgid "New Zealand"
msgstr "Zeelanda Berria"

#: lang.pm:374
#, c-format
msgid "Oman"
msgstr "Oman"

#: lang.pm:375
#, c-format
msgid "Panama"
msgstr "Panama"

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

#: lang.pm:377
#, c-format
msgid "French Polynesia"
msgstr "Polinesia frantsesa"

#: lang.pm:378
#, c-format
msgid "Papua New Guinea"
msgstr "Papua Ginea Berria"

#: lang.pm:379 timezone.pm:221
#, c-format
msgid "Philippines"
msgstr "Filipinak"

#: lang.pm:380
#, c-format
msgid "Pakistan"
msgstr "Pakistan"

#: lang.pm:381 mirror.pm:32 timezone.pm:247
#, c-format
msgid "Poland"
msgstr "Polonia"

#: lang.pm:382
#, c-format
msgid "Saint Pierre and Miquelon"
msgstr "Saint-Pierre eta Mikelune"

#: lang.pm:383
#, c-format
msgid "Pitcairn"
msgstr "Pitcairn"

#: lang.pm:384
#, c-format
msgid "Puerto Rico"
msgstr "Puerto Rico"

#: lang.pm:385
#, c-format
msgid "Palestine"
msgstr "Palestina"

#: lang.pm:386 mirror.pm:33 timezone.pm:248
#, c-format
msgid "Portugal"
msgstr "Portugal"

#: lang.pm:387
#, c-format
msgid "Paraguay"
msgstr "Paraguai"

#: lang.pm:388
#, c-format
msgid "Palau"
msgstr "Palau"

#: lang.pm:389
#, c-format
msgid "Qatar"
msgstr "Qatar"

#: lang.pm:390
#, c-format
msgid "Reunion"
msgstr "Reunion"

#: lang.pm:391 timezone.pm:249
#, c-format
msgid "Romania"