summaryrefslogtreecommitdiffstats
path: root/perl-install/install/NEWS
blob: 54023dd78af9c89933832e623e2698af356ba52c (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
Version 12.47 -  1 September 2009

- use https to grab mirrorlist from api.mandriva.com
- fix stage2 image files for perl 5.10.1

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
- detect_devices:
  o fix VirtIO devices support

Version 12.45 - 18 August 2009 

- 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
- 2010.1 logo
- adduserdrake
  o now use password weakness display
- added password weakness display feature in interactive
- handle new drivers: 
  o sound: snd_ctxfi
- set virtio/xen block modules in a section actually offered

Version 12.44 - 13 August 2009 

- fix parsing dmidecode output (broken since we use dmidecode-2.10,
  aka since November 24 2008)
- prevent urpmi messages from garbaging text installer (#50776)
- locales
  o add "English (South Africa)" (#51057)
  o fix sorting South Africa languages (#51055)
  o fix displayed names of some South Africa languages (#51055)

Version 12.43 - 10 August 2009

- do not write /etc/fstab in local_install mode
- fix two crashes on handling devices

Version 12.42 -  7 Aug 2009

- use gtk instead of X to focus window and revert workaround 

Version 12.41 -  7 Aug 2009

- do not crash when trying to create a partition on a device with 
  no cylinder_size
- workaround gtk crashes by running in sync mode

Version 12.39 - 12 Jun 2009

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

Version 12.36 - 29 May 2009

- ide-disk module is now named ide-gd_mod
- add new 'touchpad' TYPE to rpmsrate
- add support for ElanTech touchpads (found on EEEPCs)
- don't ignore FB-DIMM memory

Version 12.35 - 24 April 2009

- remove unused parameter in installPackages
  (fix passing interactive setting)

Version 12.34 - 24 April 2009

- do not set urpmi in automatic mode for gtk installs
  (was set correctly for plain interactive installs only)

Version 12.33 - 23 April 2009

- fix not offering to upgrade 32 bit installations
  (regression introduced in 12.22 on 2009-03-31)
- handle virtio block devices

Version 12.32 - 23 April 2009

- fix cdrom path in urpmi.cfg for dual arch ISOs
- advanced partitionning step:
  o fix displaying help at install time

Version 12.31 - 22 April 2009

- fix final banner
- handle partition starting after 1To
- package installation:
  o use --force like older installer
- set mouse driver as 'vmmouse' for vmware (#49654)
- update XFCE preview

Version 12.30 - 21 April 2009

- final banner
- add a basic testsuite (ensuring it compiles) in order to prevent
  future crashes like #50009
- do not offer to stop the install when kde3 is installed since kde3
  to kde4 upgrade is now done
- fix checking for kde3 (which is now in /opt)
- diskdrake:
  o display a progress bar while formating an ext4 partition
  o do not run udevadm in install mode
  o render ext4 partition as red like ext3 ones

Version 12.29 - 21 April 2009

- do not log perl warnings about missing/not-yet-installed locales
  while installing and while probing EDID
- updated translations

Version 12.28.1 - 16 April 2009

- diskdrake:
  o fix crash
- windows boot partition is the active one (#49483)

Version 12.28 - 15 April 2009

- include mount.ntfs-3g in install 
- display an error when mount fails during View action
- do not crash when encountering bad signatures in automatic install

Version 12.27 - 14 April 2009

- handle firmware loading in stage2 too

Version 12.26.2 - 08 April 2009

- media management:
  o be more compatible with older http code for error management
  o fix crashing when using urpmi early to download stuff for network installs

Version 12.26.1 - 08 April 2009

- media management:
  o handle supplementary NFS & CDROM media with arched directory (aka 'i586/')

Version 12.26 - 08 April 2009

- include vmmouse driver (#49654)
- media management:
  o just use curl instead of using our own http stack to retrieve
    files from network (thus fixing #48887)
  o fix mount point for NFS & disk media for both main & suppl media
  o tell urpmi to read synthesis before adding supplementary network
    media in order to be able to install the 'basesystem' package
- log where we segfaulted

Version 12.25.1 - 07 April 2009

- fix mount point for CD-ROM media (#49613)

Version 12.25 - 06 April 2009

- media management:
  o fix path of NFS media after installation
  o use urpmi in order to add supplementary media
- put distro version after release because release contains "Mandriva Linux"

Version 12.24.1 - 05 April 2009

- ensure login is lowercase when transliterating from real name
  (#49573)

Version 12.24 - 03 April 2009

- handle new drivers:
  o gigabit: be2net, slicoss
  o wireless: agnx, arusb_lnx
  o dvb: dvb-usb-dtv5100
- include draksnapshot translations (for restore option)
- theming:
  o include all Ia Ora themes
  o drop metacity images

Version 12.23 - 02 April 2009

- RC2 banner
- fix crypto module names when arch is not i586 (#46814)

Version 12.22 - 31 March 2009

- don't list installed distros with other archs as upgrading between
  archs is not supported
- display the version of the distro in the install/upgrade screen (#44602)
- log (g|)urpmi.addmedia and (g|)urpmi output into
  /root/drakx/updates.log (#47107)
- make button name match text when inserting a CD ("cancel" rather
  than "previous")
- rotate /root/drakx/install1.log too
- tell urpmi to stop transactions when clicking on "cancel" (needs
  urpmi >= 6.25)

Version 12.21 - 30 March 2009

- fix writing urpmi.cfg as cdrom:// for NFS (#49316)
- in order to guess the login name, just transliterate the real name into
  ascii rather than truncate it on first non ascii character (#47322)

Version 12.20 - 30 March 2009

- media management:
  o always trust stage1 (fix ISO on NFS installation as well as NFS
    installation from cooker/ instead of eg cooker/i586 (#48874)
  o fix not ejecting DVD at end of installation (#48779)
- diskdrake:
  o always display label in partition info
  o display label of partitions in the graphical view when no mountpoint
    is set
  o update list of filesystems not handling bad blocks checking

Version 12.19 - 26 March 2009

- adjust partition size suggestion
  o increase / size to 12GB (instead of 8)
  o create separate /home starting at 13GB drives (instead of 7)
- fix support for disk installation
- include & use urpmi translations
- when setting update media, make gurpmi.addmedia auto close instead
  of waiting for user pressing "close" button on "media added with
  success" dialogs

Version 12.18 - 24 March 2009

- log packages' scripts output (perl-URPM/urpmi aren't fixed regarding
  script fd leak but older installer was leaking one fd per
  transaction too)

Version 12.17.3 - 23 March 2009

- fix empty tree at "Individual package selection" step (#48672)

Version 12.17.2 - 23 March 2009

- fix buid due to to broken Estonian translation
- unbreak installer due to new X.org server using alternatives
- diskdrake: 
  o allow LVM in non expert mode
  o allow Encrypted partition inside LVM

Version 12.16 - 18 March 2009

- fix doble clicking on 'accept' on license screen

Version 12.15 - 17 March 2009

- fix support for iso-on-disk installation (#48661)
  (regression introduced when installer switched to urpmi)
- drakx-in-chroot:
  o enable to emulate iso-on-disk installation

Version 12.14 - 11 March 2009

- fix displaying help (same webkit regression that affected mcc (#47840))
- include virtio modules (#45518)

Version 12.13 - 10 March 2009

- fix selecting packages on cdroms
- don't crash when creating a partition in LVM with the partition type
  buttons (#38078)

Version 12.12 - 9 March 2009

- use new urpmi API in order to fix detecting whether installing
  packages succedded or not

Version 12.11 - 9 March 2009

- fix accessing CD-ROM based media on x86_64

Version 12.10 - 9 March 2009

- fix CD-ROM based media path for post-installation usage (for 32bit)

Version 12.9 - 9 March 2009

- adjust media path for 32 bit DVD/CD installations
- package installation:
  o ask for retry
  o log bogus signatures
  o log failed transactions summary

Version 12.8 - 6 March 2009

- RC1 banner

Version 12.7 - 6 March 2009

- fix setting urpmi media for CDROM installation whose tree differ
  from other types of installation

Version 12.6 - 6 March 2009

- make sure to popup errors

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

Version 12.4 - 5 March 2009

- check package signatures like urpmi does (new feature)
- log extra debugging messages if passing the 'debug_urpmi' option

Version 12.3 - 4 March 2009

- honor 'selected_names' for auto_install
- make sure we don't try to reslect already selected packages

Version 12.2 - 4 March 2009

- only warn if a transaction failed (no more a fata error for auto
  installs)
- prevent urpmi from leaking a log file descriptor per transaction
- really set urpmi in automatic mode for non-interactive installs
  (and not vice-versa)
- use package summary translations once 'mdv-rpm-summary' is installed

Version 12.1 - 3 March 2009

- set urpmi in automatic mode for non-interactive installs
- media management & package installation:
  o do not try to install again already installed packages
  o fix progress bar

Version 12.0 - 3 March 2009

- media management & package installation:
  o drop support for parsing the "media_info/hdlists" file
  o do not download and use hdlists anymore ; only use smaller synthesis files
  o make install uses urpmi code to set up media & install packages
    * FTP/HTTP/cdroms tested OK
    * temporary issues:
      + /etc/urpmi.cfg may look strange (eg: after CD-ROM installation)
      + isos-on-disk installations are broken
      + media deselection is not offered
      + package browsing doesn't work
      + progress bar has issues
      + signature checking are not performed

Version 11.89 - 17 February 2009

- enable having /boot as ext4
- don't set extents option for ext4

Version 11.88.1 - 16 February 2009

- correctly handle new msec-based settings during installation (#47822)
- fix crash

Version 11.88 - 16 February 2009

- don't crash on invalid partition table
- fix paths for installer (#47871)
- limit partition type list to 2 colmuns instead of 4
- don't offer to format LVM

Version 11.86 - 12 February 2009

- upload a fully updated version

Version 11.85 - 12 February 2009

- fix a crash when boot device is not removable

Version 11.84 - 12 February 2009

- handle newer module-init-tools which can put relative path in modules.dep
- when installing to a removable device, put boot sector there, else
  put it into first non removable drive (#47106)
- fix preserving UUID when formatting ext* and swap, and handle more FS (#39913)
- load cbc module for encrypted loop

Version 11.83 - 6 February 2009

- update banner for Beta 1
- set scim-thai as default IM for Thai

Version 11.82 - 5 February 2009

- include /usr/share/mime/mime.cache in stage2
  (gdk-pixbuf does not guess anymore image format from file extension,
   which makes it check MIME cache now)

Version 11.81 - 3 February 2009

- allow browsing partitions content to easily select the ones to destroy
- do not warn about "servers which open ports on outside by default"
  (the list of servers is not maintained, and the policy for those servers has changed)
- use a file selector in text mode too
- include mke2fs.conf from e2fsprogs-1.41.3-3mdb
- media management:
  o better layout for DVD/CD copy & media selection

Version 11.80.1 - 21 January 2008

- include perl-Pango

Version 11.80 - 21 January 2008

- use "ComboBoxEntry" gtk2 widget instead of "Combo" (which is deprecated),
  this also workarounds gtk2 bug with "hidden" Entry + "Combo"

Version 11.79 - 16 January 2008

- disable resizing ext4 since resize2fs is known to be broken regarding extents

Version 11.78 - 15 January 2008

- alpha2 logo

Version 11.77 - 15 January 2008

- do not install kernel-server on x86_64 when there's more than 4Gb of
  RAM (#44709) ; use better heuristics
- propose ext4 filesystem during install now that it is stable
- include tools to edit partition labels

Version 11.76 - 18 December 2008

- partitionning:
  o use sysfs in order to discover major/minor for SCSI like devices
    since they're dynamic with kernel-2.6.28+
- adapt to cooker: librpm4.6 uses libnss3 which needs its modules

Version 11.75 - 17 December 2008

- force to use static input devices again
  (since the default in xorg has changed)
- handle new driver:
  o network: sxg, w35und
- partitionning:
  o kernel-2.6.28+ supports more than 15 partitions on SATA & SCSI devices

Version 11.74 - 16 December 2008

- fix build with latest X.org

Version 11.72 - 9 December 2008

- do allow to upgrade Mandrakelinux (regression introduced in 10.14)
- handle new driver:
  o network: et131x, smsc95xx
- fix detecting SMP (was broken we relied on install kernel being non-smp) (#44825)
- fix reading compssUsers.pl if rpmsrate is forced (for example with drakx-in-chroot)

Version 11.69 - 11 October 2008

- really fix setting lilo when needed (#39878)
- handle new driver:
  o ide: tx4939ide
- drakx-in-chroot:
  o do not start an X server if using --text
- text mode installer:
  o display a separator before step name
  o properly handle big text in list such as security level
    descriptions (#43561)
- continue installing if an advertising image is corrupted (#37674)
- warn that "preparing bootloader" can take some time (eg: under vbox) (#43036)

Version 11.68 - 3 October 2008

- final logo

Version 11.67 - 2 October 2008

- when upgrading a kde3 box, force installation of task-kde4
- adjust some help IDs
- log activation of light desktop mode
- gtk and interactive install:
  o find default desktop choice according to compssUsers.pl
    (useful for netbook/nettop systems)
  o preselect proper default desktop choice

Version 11.66.1 - 2 October 2008

- fix typo in rpmsrate level setting

Version 11.66 - 2 October 2008

- detect_devices: allow detection of low resources systems (extracted
  from compssUsers.pl) and netbooks/nettops
- use a minimum rpmsrate level of 5 when netbook/nettop/low_resources
  systems are detected
- set LIGHT rpmsrate flag for netbook/nettop/low_resources systems

Version 11.65 - 2 October 2008

- add help button to desktop selection & minimal installation steps
- keep soft links in HTML help directory
- handle anchors in HTML help IDs

Version 11.64 - 1 October 2008

- when upgrading a kde3 box and task-kde3 is not on the CDs, propose to reboot
  and upgrade through Mandriva update applet
- add help button for media selection step
- ensure proper centering of popped windows
- fix/adjust some help pages (#42986)
- fix dithering regression (introduced on 2008-09-29)
- install apmd if /proc/apm exists
  (rpmsrate does not list apmd anymore, and apm is a kernel builtin)
- use HTML help for RPM group selection
- when mounting cdrom fails, retry a few times since mount will now fail
  instead of waiting for the drive to recognise the CD (cf #43230)

Version 11.58 - 29 September 2008

- ask_deselect_media__copy_on_disk: 
  o do not select all media by default (eg: debug media)
    (nb: this dialog occurs when user chooses "Go back to media and packages
    selection" on pkg install error)
  o replace scrolled window around everything
    with a scrolled window around the list of checkboxes
- adapt to fonts-ttf-gurmukhi => fonts-ttf-lohit switch
- add spacing between radio buttons for readability (#44332)
- better positionning of sidepanel's selection bar
- render background of sidepanel with dithering (looks better on 16bit
  displays)

Version 11.56 - 26 September 2008

- dmraid devices: use isw_xxxxp1 instead of isw_xxxx1 (see #42542, #44182)
- disable contextual menu on release notes

Version 11.55 - 26 September 2008

- never add usb-storage to scsi_hostadapter 
  (never needed, and when wrongly added, it slows the boot)
- ensure DPMS screensaver is not triggered during install
  (it interacts badly with matchbox/compositing) (#44021)
- generate /root/drakx/package_list.pl at end of install 
  (since we don't propose "Save packages selection" at end of install)
- generate /var/lib/rpm/installed-through-deps.list
  (to initialize urpmi orphans)
- drakx-in-chroot: do not require running kernel to be installed,
  generate empty modules.dep and modules.alias files instead
  (useful when running drakx-in-chroot from a chroot)

Version 11.53.2 - 25 September 2008

- actually use better rendering for background gradient

Version 11.53 - 25 September 2008

- better rendering for background gradient

Version 11.52.2 - 24 September 2008

- clean_rpmdb_shared_regions before and after calling gurpmi.addmedia/gurpmi2
  in chroot

Version 11.52 - 23 September 2008

- auto-configure floppies (in /etc/modprobe.preload.d/floppy)
- allow setting compssListLevel from command line
- install cpufreq (defaulting to ondemand governor) instead of
  powernowd (#43769)

Version 11.50.3 - 22 September 2008

- fix/workaround crash when setting banner background
  (Can't call method "get_width" on an undefined value)

Version 11.50.2 - 22 September 2008

- RC2 logo

Version 11.50.1 - 22 September 2008

- fix 1024x768 background

Version 11.50 - 22 September 2008

- handle new driver:
  o ethernet: enic, qlge
- i18n:
  o add support for ibus
- new sidepanel style
- restore support for right alignement for simple widgets
  (regression introduced in 11.46 - 17 September 2008)

Version 11.48 - 18 September 2008

- add a special license for google programs (only for "Powerpack" product)
- install "cryptsetup" when needed

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
- partitionning step
  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
- list btusb instead of hci_usb in bus/bluetooth (renamed in 2.6.27)

Version 11.46 - 17 September 2008

- libdrakX:
  o better layout for right aligned widgets
- license: put focus back on Refuse button by default

Version 11.45 - 16 September 2008

- allow to prefer kernel-server on x86_64 too
- enable relative links in HTML help
- enhanced 'desktop' & 'package selection' steps
- switch from perl-Gtk2-Html2 to perl-Gtk2-WebKit in order to display release
  notes & help
- use HTML help for package selection, services & summary step

Version 11.43 - 16 September 2008

- enhanced 'desktop' & 'package selection' steps
- fix berber language image's transparency
- fix displaying current security level in GUI
  (regression introduced on 2008-08-29)
- increase default window height b/c of package selection step
- refresh partitionning step
- size most labels (workaround infamous 6 years old gnome bug #101968)
  (eg: in advanced language selection)
- update icons for packages/services selection

Version 11.42 - 12 September 2008

- increase default window height
- stop claim selecting LSB group will install 2.4.x kernel (#39220)
- desktop step
  o move progress bar on its own line
  o add a separator between buttons & progress bar
  o pack together time label & value

Version 11.41 - 11 September 2008

- bump titles' size by 1 (eg: from 12 to 13 for default font settings)
- do not render "Advanced" & "Help" buttons as blue
- fix default spacing between GUI elements
- fix parsing error messages ar markups
- "Help" dialogs:
  o add a separator before "Close" button
  o fix displaying "Help" Button for HTML help (#42986)
  o put "Close" button of help at right end
- small improvements in many steps (desktop, ...)
- 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 fix position of cancel button in popups
  o make advanced popup display the same title as their parents
  o make all popup titles be upcase
- drakboot
  o fix nolapic/lapic logic due to altered kernel settings
- fix input devices detection in rpmsrate (broken for 3 years, #43721)

Version 11.39 - 9 September 2008

- do not use UUID for software raid, only for hdx and sdx
- 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)
- drop the ability to set mem=xxx in bootloader configuration

Version 11.38 - 8 September 2008

- do not size radio button that have a label thus preventing uneeded horizontal
  scrollbars to appear
- partitionning step
  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.34 - 2 September 2008

- fix buggy blocking wait_message occuring in diskdrake
  (using a more powerful strategy to ensure such blocking wait_message won't
  bother us anymore) (#43527)
- fix sizing some label (workarounding infamous 6 years old gnome bug #101968)
- increase help popup size when browsing services or packages

Version 11.33.1 - 2 September 2008

- make "ask_warn" dialogs be centered

Version 11.33 - 2 September 2008

- further improve layout of media selection step
- "media selection" step: fix position of button (#29367)
- refresh "Summary" step

Version 11.32 - 2 September 2008

- fix buggy blocking wait_message occuring in summary (#42062)
- fix layout of media selection step (#29367)

Version 11.31.2 - 2 September 2008

- adjust sizing in order to prevent horizontal scrollbar to appear
- do not size right aligned radio buttons

Version 11.31 - 2 September 2008

- fix "INTERNAL ERROR: ask_from_normalize" at end of installation

Version 11.30 - 1 September 2008

- keep in $o->{previous_release} the info about upgraded /etc/release,
  and pass "reason" and version to urpmi.addmedia
- 2009.0 RC 1 logo
- hack /tmp/.X11-unix to allow accessing X in chroot
- if network access, configure urpmi with --mirrorlist --distrib,
  and install updates. This replaces the previous "Install Updates" step.
- fix alignment of check buttons
- fix size of right aligned labels
- fix sizing radio buttons' labels (infamous 6 years old gnome bug #101968)
- further improvements to the "bootloader", "desktop" & "partitionning" steps
- prevent big combo boxes to cause an horizontall scrollbar to appear by
  using the "ellipsize" property
- remove "Generate auto install floppy" & "Save packages selection"
  options at end of installation
- update package managment icons
- use pcmcia-socket-startup from /lib/udev for latest pcmciautils

Version 11.29 - 29 August 2008

- do not try starting graphical installer on early i810 (which is is
  not supported), thus prevent waiting several minutes needlessly 
- refresh "Individual package selection" step
- refresh "Security" step

Version 11.28 - 28 August 2008

- fix buggy blocking wait_message occuring in summary (#42062)
- diskdrake: use udevadm settle instead of udevsettle
- refresh "Package Group Selection" step

Version 11.27 - 28 August 2008

- configure vga=785 (640x480) when vga=788 (800x600) fails during install
  (useful on 800x480 netbooks)
- text mode:
  o fix displaying release notes (#43263)

Version 11.26.1 - 28 August 2008

- fix asterisk in titles

Version 11.26 - 27 August 2008

- better layout in 640x480 (#43231)
- fix "probe floppies only once" (#43216)
- misc GUI improvements
  o misc changes
  o properly size some labels (infamous 6 years old gnome bug #101968)
  o refresh "user management" step
  o render some titles as blue
  o set some wait messages' titles

Version 11.25 - 25 August 2008

- left sidepanel:
  o align category titles like step ones

Version 11.24 - 25 August 2008

- handle blowfish password encryption and use it by default (#42426)
- allow to install bootloader on md0 (#42999)
  (regression introduced on 2004-08-05)
- minor GUI tweaks

Version 11.23 - 22 August 2008

- pop wait_messages and ensure same window is used for next wait_messages
  (to ensure the background is not greyed,ungreyed,greyed,...)
- improved license step
- install lilo when needed (#39878)
- render some message titles as blue

Version 11.21 - 21 August 2008

- ensure we don't default on the first keyboard layout when upgrading french
  box in english lang (#41103)
- do not set $HOME while installing packages (#18088)
- install proper qtX package for gcin
- partitionning step
  o ensure we initialize only once but at least one, thus fixing crash
    when embedded or in installer (#43011)

Version 11.20 - 20 August 2008

- do not uselessly install kernel-server on x86_64 if more than 3.8Gb
  are availlable
- diskdrake
  o fix sizing partitions bar (#24410)

Version 11.19 - 20 August 2008

- usbkbd is dead, using usbhid instead
- allow passing suppl=0 to disable "additional installation media" question
- drakx-in-chroot:
  o fix using remote repositories
- set title for advanced dialogs
- small GUI improvements

Version 11.18 - 19 August 2008

- center sub dialogs
- prevent flickering of big windows by:
  o ignoring bogus size-allocate events
  o properly computing window position
- stop reducing help & release notes dialogs' size

Version 11.17 - 19 August 2008

- drakx-in-chroot:
  o enable to choose resolution of Xvfb
  o enable to use a package repository different from installer one
- use new style popup button for 'help' & 'release notes' buttons

Version 11.15 - 19 August 2008

- fix crash with advanced widgets
- fix crashing on some buttons
- fix bogus popup of 'desktop choice' dialog
- authentication: enable network-auth meta-service if auth is not local

Version 11.13 - 18 August 2008

- move hardware packages detection code from installer to drakxtools

Version 11.12 - 18 August 2008

- align titles to the left
- display a separator below titles
- justify big texts
- popup advanced settings in dialogs
- refresh:
  o language step
  o license step

Version 11.11 - 18 August 2008

- 2009.0 beta 2 logo
- l10n:
  o fix selecting locales-XX for locales that specify scripting (#42663)
  o update list of locales
  o update list of KDE languages for KDE4

Version 11.9.1 - 13 August 2008

- fix left panel in 1024x768

Version 11.9 - 13 August 2008

- new title style
- partition wizard:
  o refreshed GUI

Version 11.8.1 - 13 August 2008

- really add deskop images

Version 11.8 - 12 August 2008

- default to UTF-8 for chinese simplified (#42137)
- new desktop choice screen

Version 11.7 - 11 August 2008

- handle new drivers:
  o ethernet: r6040
  o gigabit: atl1e, bnx2x, sfc
  o PATA: pata_ninja32, pata_ns87415
  o SCSI: mvsas
  o USB host controller: isp1760
  o WAN: lapbether
  o wireless: rndis_wlan, rtl8180
- add product type to URL when fetching mirror list

Version 11.3 - 4 August 2008

- fix spacing around buttons

Version 11.2 - 31 July 2008

- include extmod Xorg module (for SHAPE extension)

Version 11.1 - 31 July 2008

- do not require matchbox gconf schema (not provided by drakx-installer-matchbox)

Version 11.0 - 30 July 2008

- first steps toward new installer style

Version 10.48 - 28 July 2008

- 2009.0 beta 1 logo
- drakx-in-chroot: prefer Xephyr over Xnest since Xnest lacks many
  extensions needed by matchbox-window-manager

Version 10.47 - 10 July 2008

- load disk/scsi before disk/ide since libata is now the default
  (to prevent modules::load_category from loading ide-generic too early)
- 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

Version 10.45 - 9 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.44 - 8 July 2008

- 2009.0 alpha 2 logo

Version 10.43 - 4 July 2008

- detect KDE4 when configuring autologin

Version 10.42 - 26 June 2008

- fix reading rpm macros from /etc/macros.d/ (esp. %_filetriggers_dir)

Version 10.41 - 26 June 2008

- 2009.0 alpha 1 logo

Version 10.40 - 25 June 2008

- add support for dm-raid4-5 (tmb)
- add back desktop choice window (by checking task-kde4 instead of task-kde)

Version 10.38 - 20 June 2008

- force back 75dpi to get back previous font sizes
- adapt to cooker file changes
- do not let authentication module (used for ask_user_and_root) mess window size

Version 10.36 - 12 June 2008

- fix authentication configuration

Version 10.35 - 12 June 2008

- adapt to xserver/SecurityPolicy being in /usr

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
- use UUID for resume= kernel parameter
- handle new drivers:
  o pata: pata_sch 
- handle renamed drivers:
  o ide-cd is now named ide-cd_mod
  o generic is now named ide-pci-generic
- kernel-laptop is no more
- 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.30 - 23 April 2008

- /sbin/usb_id is needed by mouse.pm to generate /dev/input/by-id/xxx (#39868)
  (and not /LIB/udev/usb_id since drakx-kbd-mouse-x11 0.42)
- list generic module in disk/ide

Version 10.29 - 3 April 2008

- time: write UTC setting in /etc/adjtime (#36522)

Version 10.28 - 3 April 2008

- fix computed install size in group selection (#39303)
  (it didn't take suggests into account)

Version 10.27 - 3 April 2008

- 2008.1 logo (the good one)
- enable to restore the system through rsnapshot if giving "restore"
  on cmdline
- fix broken help because of s/pt_BR/pt_br/ change in file names (#36774)

Version 10.26 - 2 April 2008

- 2008.1 logo
- fix crash when detecting network connection with supplementary media

Version 10.23 - 31 March 2008

- ensure umount on loopback-mounted-file doesn't leak /dev/loop
  (otherwise it breaks install from isos on disk) (#36992)
- warn the user and propose to install/quit-install before upgrading from a
  partition where "/" is ext3 with block-size 1KB to avoid kernel bug (#37583)
- detect as laptop systems with ACPI lid button
  (i.e. if /sys/bus/acpi/devices/PNP0C0D:* exists)
- fix computing time according to timezone in local/UTC dialog
  (by using zoneinfo files from the installed prefix)

Version 10.21 - 25 March 2008

- partitioning wizard: allow "Use free space" if there is an extended
  partition even if all primary partitions are used (#38804)
  (*old* bug!)
- fix errors while setting PA preferences (#39270)
- use umask=0 by default on vfat (#39315)
- root/user password:
  o force the password to be utf8 (#23273)

Version 10.19 - 21 March 2008

- diskdrake:
  o fix setting mount point of a /dev/mdX (#39142)
    (regression introduced in 10.8)
- when skipping bootloader installation, correctly say "None" in summary 
  (#39101)
- correctly set country when given lang=xxx on /proc/cmdline
  (regression introduced in 10.16) (#39104)

Version 10.18 - 21 March 2008

- when reformatting swap, keep existing UUID (#38877)
- ask which drive to install bootloader if we don't really know which is first
  bios drive (cf #38829)
- fix reading alternatives in install
- add Xorg.0.log to report.bug.gz (to help diagnose why X failed)

Version 10.17 - 20 March 2008

- do not unconfigure timezone if timezone screen is canceled (#33565)
- update OpenOffice/BrOffice alternative according to selected lang (#37820)

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
- fix setting default lang (which is given by gfxboot)

Version 10.15 - 14 March 2008

- 2008.1 RC2 logo

Version 10.14 - 14 March 2008

- adapt to cooker:
  o brltty libraries are now correctly in /lib64 on x86_64
- mount ntfs-3g as ntfs during install
  (fixes adding "windows" entry in bootloader)
- really fix partition device name for some dmraid (missing "p", cf #38363)
- cpufreq: fix gsx-suspmod probe
- do not propose to upgrade non-mandriva and non-conectiva distros (#38408)

Version 10.10 - 6 March 2008

- fix resizing/formatting ntfs, and create "Windows" entry in bootloader
  (broken because of ntfs-3g switch in previous release)
- install kernel586 on Transmeta Crusoe TM5800 (#37866)
- do not load i810fb, rely on vesa xorg drive instead (it may help #37772)
- restore correct configuration of nfs/hd media in urpmi.cfg
  (regression introduced in 10.8)
- fix partition device name for some dmraid (missing "p", cf #38363)
- do not timeout after 10 minutes when resizing NTFS partition

Version 10.8 - 4 March 2008

- adapt code to upgrade from redhat for mdv extensions (& for Manbo
  Core by the way)
- auto allocate: do not create /home if drive is smaller than 7GB
- do not propose to deselect media if none can be deselected
- no more /media/cdrom in fstab by default (#35055)
  (not needed anymore by urpmi)
- use cdrom:// instead of removable:// in urpmi.cfg (urpmi 5.7)
- use and install ntfs-3g by default for ntfs partitions (#37823)

Version 10.6.25 - 28 February 2008

- API changes for draklive-install

Version 10.6.24 - 28 February 2008

- do not assign a mount point to partitions of type "Compaq diagnostics"
- 2008.1 RC1 logo

Version 10.6.23 - 25 February 2008

- adapt to cooker:
  o jfsprogs is now jfsutils
- change background color

Version 10.6.21 - 19 February 2008

- adapt to cooker rpm macros new locations

Version 10.6.20 - 18 February 2008

- do not create alt_windows unless needed 
  (regression introduced on 2007-11-26) (#37722)
- install linuxwacom if needed
- load disk/ide before disk/scsi, or else sata_sis may be loaded for a
  SATA controller and trigger pata_sis loading before sis5513 is loaded,
  which would defeat an eventual alias to sis5513 for a PATA controller
- cpufreq:
  o use acpi-cpufreq for Mobile PIII/Celeron
    (family 6 model 11, for example Toshiba Portg 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.19 - 12 February 2008

- do not propose "KDE, GNOME or Custom" profiles if the partition is small 
  (< 2.5GB) otherwise the installer will not be able to install the full profile
- auto partitioning: ensure the "/" is bigger on small drives

Version 10.6.18 - 12 February 2008

- adapt to modules being in /lib/modules/`uname -r`

Version 10.6.16 - 11 February 2008

- Xorg needs xkb/rules/base, otherwise it can go crazy (#35912)
- add mkntfs (#37462)
- detect systems with C7-M processor as laptop (like Belinea s.book)

Version 10.6.13 - 5 February 2008

- add "vesa" X driver to use when framebuffer fails
  (useful for boxes which work with vga=785 which is not the default, in that
  case "vesa" should work)

Version 10.6.12 - 28 January 2008

- 2008.1 beta2 logo
- set $::isInstall soon enough for fs::type data-structure creation:
  fixes reiser4 appearing in diskdrake during install (#36999)
- add grub entries to allow booting other installed distros
  (using grub "configfile") (see #16604)

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
- fix detecting existing LVMs (#31228)
  (regression introduced in 10.4.204 (?))
- fix ensuring X is launched on tty7 (cf #37087)
- fix handling LVM VGs with "-" in the name (#37267)
- call X with -nolisten tcp to avoid "security" issues (#18320)
  (nb: this implies "xhost+" helper prog is not useful anymore)
- do not propose ext4dev filesystem during install (#37157)

Version 10.6.8 - 24 January 2008

- 2008.1 beta1 logo
- look for LVM PV on non partitioned disk before looking for DOS
  partition_table (esp. for lilo which puts the DOS magic)

Version 10.6.7 - 22 January 2008

- add xkb/symbols/inet (which is now needed by default for pc105)
- adapt to perl 5.10.0
- create /dev/cdrom symlink for installer (#36703)
- do not put "windows" entry in bootloader for partitions where Windows is not
  present (#8086)

Version 10.6.5 - 14 January 2008

- do not sort languages in "choose language" step in graphical mode, since the
  sort is done on the non-translated strings (eg: we display "Espanol" but we
  sort on Spanish )

Version 10.6.3 - 9 January 2008, by Pascal "Pixel" Rigaux

- 2008.1 alpha2 logo
- adapt to cooker:
  o DejaVuSans-Bold*.ttf instead of DejaVuSansBold*.ttf (again!)
  o /usr/lib/gconv/KOI8-K.so is no more, take KOI8-*.so
  o no more /etc/rpm/platform (for rpm 4.4.2.2)
- install SMP packages when "match_all_hardware" option is set

Version 10.6.1 - 12 December 2007, by Pascal "Pixel" Rigaux

- ensure failing to build mdkinst.sqfs is a fatal error
- drakx-in-chroot:
  o just like stage1, handle <root of distrib> ending with current arch() so
  that we can access main32 on x86_64
- do not rebuild rpmdb if it is ok 
  (will workaround #32547) (need perl-URPM 3.01)
- adapt to perl-URPM 3.00 API to parse pubkey files
- adjust Uzbek locale (cf locales-uz change)
- sort languages in "choose language" step in text mode
- diskdrake:
  o drop "Undo", "Restore partition table", "Save partition table"
    (preparing to switch to libparted)
- don't check /proc/partitions for a partition_table::lvm 
  (ie PV on non partitioned drive)

Version 10.5.6 - 30 November 2007, by Pascal "Pixel" Rigaux

- restrict the proposed input-methods for each language
- /dev/<vg> may not exist if LVs have not been created, it must not be an error (#31478)
- use xkb instead of xmodmap 
- save bootloader on MBR when calling grub/install.sh, and restore it before
  calling it again (#35255) (ie implement "lilo -u" for grub)
- ensure /etc/sysconfig/console/default.kmap is generated with installed
  keymaps, not installer simplified (?) .bkmap (#35376)
- fix wrongly detecting some devices as laptop specific (#35759)
- add /etc/mke2fs.conf symlink so that mke2fs can use it (cf #27377)

Version 10.5.5 - 14 November 2007, by Pascal "Pixel" Rigaux

- adapt to cooker: 
  o kbd_drv.so instead of keyboard_drv.so
  o DejaVuSansBold*.ttf instead of DejaVuSans-Bold*.ttf

Version 10.5.4 - 13 November 2007, by Pascal "Pixel" Rigaux

- use UUID by default (in fstab, bootloader)
- localedrake:
  o fix handling variant together with charset (eg: uz.UTF-8@Latn) (#35090)
- partitioning wizard: ensure existing_part and resize_fat are proposed before
  wipe_drive
- in case of ftp/http media, we select basesystem before doing
  bestKernelPackage so we must ensure the choice callback selects the good
  kernel (reported by Thomas Spuhler on cooker mailing list)
- do propose "Suisse" after selecting french language (#34675)
- use time() to know when to timeout (when launching installer X server)
  since the loop may be slower than 1 second (xf86misc::main::Xtest takes time
  on a failing X server on i810). Also print a message telling user to wait
  after 8 seconds.

Version 10.4.238 - 5 October 2007, by Pascal "Pixel" Rigaux

- do not use pseudo Protocol "vboxmouse" during install, use "IMPS/2" instead

Version 10.4.236 - 4 October 2007, by Pascal "Pixel" Rigaux

- fix copying of ../../i586/media/main medium 
  (for dual_arch CDs sharing the i586 medium)
- fix configuring kdeglobals (was broken because of /etc/kderc using
  udpate-alternatives which use absolute symlinks)

Version 10.4.233 - 4 October 2007, by Pascal "Pixel" Rigaux

- use /dev/cdrom in fstab, but do not write corresponding udev rule
  (the rules will be generated at boot time otherwise it won't catch the
  hdX/srX switch)

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.228 - 3 October 2007, by Pascal "Pixel" Rigaux

- use /dev/cdrom in fstab, and write corresponding udev rule
  (the rules were generated at boot time but here we ensure consistent naming)
- 2008 logo
- bootloader:
  o if there is a /boot, check /boot instead of "/" to allow grub or not

Version 10.4.227 - 2 October 2007, by Thierry Vignaud

- diskdrake:
  o improved wrapping of mount option descriptions (#19848)
- add ath5k module in wireless category

Version 10.4.224 - 1 October 2007, by Pascal "Pixel" Rigaux

- don't keep noarch pkgs symlinked (to ../../../i586/media/main/xxx.rpm)
  when copying packages on disk

Version 10.4.223 - 1 October 2007, by Pascal "Pixel" Rigaux

- diskdrake:
  o bugfix 10.4.162: allow "LVM" on RAID (#34359)
- add acpi-cpufreq support for some Intel CPUs (family 6 model 15)
  (from Herton Ronaldo Krzesinski, #30208)

Version 10.4.220 - 28 September 2007, by Pascal "Pixel" Rigaux

- log_sizes: cleanup __db* files
- ensure the rpmdb is closed

Version 10.4.218 - 28 September 2007, by Pascal "Pixel" Rigaux

- add /etc/rpm/macros.cdb

Version 10.4.217 - 27 September 2007, by Thierry Vignaud

- help:
  o do not segfault on #foobar like anchors
  o try translated links first (#33679)

Version 10.4.216 - 27 September 2007, by Pascal "Pixel" Rigaux

- 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)

Version 10.4.215 - 26 September 2007, by Thierry Vignaud

- display nicer HTML release notes rather than raw text version
- fix using iso CD2 on disk (#33022):
  o remove " from medium name when reading media.cfg
  o handle "Volume id" ending with -CD[123] instead of -Disc[123]
- handle @::auto_steps in patch-oem.pl

Version 10.4.214 - 26 September 2007, by Thierry Vignaud

- do not ask desktop choice in upgrade (#34025)
- fix displaying help in custom partition (#33994)

Version 10.4.212 - 24 September 2007, by Thierry Vignaud

- don't crash install when mounting CD fails (#33421)
- don't ask for desktop and go directly to choose groups if kde and gnome are
  not available on media (useful for mini iso)
- add mount.nfs binary (since mount doesn't handle nfs fs anymore)

Version 10.4.211 - 24 September 2007, by Pascal "Pixel" Rigaux

- on upgrade, don't add resume=xxx if noresume is there (#33953)
- diskdrake
  o fix "Add to LVM"
- do not display any message when user screenshot when chrooted during install
  of pkgs (#33752)
- don't add resume=xxx to bootloader configuration if there is noresume (#33953)
- ignore /proc/partitions when "solaris" extended partition is present (#33866)
- translate the pkg summary when mdv-rpm-summary info is available
  (for the "Details" mode when installing packages)
- ensure mdv-rpm-summary is installed first (if selected)

Version 10.4.207 - 21 September 2007, by Thierry Vignaud

- localization:
  o default input method is now scim-bridge (#32138)

Version 10.4.206 - 20 September 2007, by Thierry Vignaud

- fix some banner icons (#33802)

Version 10.4.205 - 20 September 2007, by Olivier "blino" Blin

- stop configuring TV cards in summary since kernel do a better job now
- fix passing module options when module name contains a '-' character
- add dkms-modules.alias and ldetect-lst-modules.alias files in stage2

Version 10.4.204 - 19 September 2007, by Pascal "Pixel" Rigaux

- individual package selection: make the package "Info" non editable
- 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
- restore banner on pop up messages (#33753)
- handle /boot/xxx files on linux raid1
- when basesystem can't be selected, display the reason
- also load dm-zero for dmraid
- add RC2 banner

Version 10.4.201 - 17 September 2007, by Pascal "Pixel" Rigaux

- fix loading dependencies of kernel module "xxx-yyy" (instead of "xxx_yyy")
  (eg: dm-mirror)
- report_bug: hide grub password (#33634)
- fix blocking wait_message (when they pop) (#33676, #33670)
- advertising: restore support for $title in .pl files (wrongly dropped in 10.4.195)
- localization:
  o fix installing packages according to desktop
- boot loader config:
  o boot entrie list uses ellipsis rather than scroll bar

Version 10.4.199 - 17 September 2007, by Olivier "blino" Blin

- fix loading of tifm_sd module

Version 10.4.198 - 16 September 2007, by Thierry Vignaud

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

Version 10.4.197 - 15 September 2007, by Thierry Vignaud

- localization:
  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.196 - 14 September 2007, by Olivier "blino" Blin

- fix typo breaking reading fstab with UUID= entries
- don't set $o->{security} until accepted (#33567)
- packageCallbackChoices: use prefered packages given by perl-URPM 2.00 

Version 10.4.195 - 14 September 2007, by Olivier "blino" Blin

- fix loading of tifm_sd module (#18237)

Version 10.4.194 - 13 September 2007, by Thierry Vignaud

- do not allow to upgrade i586->x86_64 or x86_64->i586 (#33370)
- do not configure "windows" bootloader entries for "hidden" partitions
- fix unwrapped label (#33243)
- fix grub hanging if /boot on xfs (#33267)
- use user_xattr by default on reiserfs (#15068)
- for wait_message, display a banner and move "Please Wait" in the banner

Version 10.4.191 - 5 September 2007, by Thierry Vignaud

- "choose desktop" step:
  o put images along labels in RadioButtons (HIG)
- summary screen:
  o add spacing around separators
  o fix not displaying the security group
- drop support for iiimf
- update bootloader & updates banner icons

Version 10.4.190 - 5 September 2007, by Thierry Vignaud

- display a warning when capslock is enabled and entering a password (#33028)
- fix insmoding raid0 (#33172)

Version 10.4.189 - 4 September 2007, by Thierry Vignaud

- summary screen:
  o add spacing between elements
  o add an horizontal bar between elements

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
- enumerate generic SCSI devices again

Version 10.4.187 - 4 September 2007, by Pascal "Pixel" Rigaux

- bugfix: add desktop-Custom.png to tarball
- add global variable settable via "use_uuid" on kernel cmdline

Version 10.4.185 - 4 September 2007, by Pascal "Pixel" Rigaux

- fix gnome choice in "choose desktop" step (#33101)

Version 10.4.184 - 3 September 2007, by Thierry Vignaud

- support for UUID (including UUID=xxx in fstab)
- do not set relatime option for mounting nfs
- nicely adjust mtime of fontconfig cache files
- steps window: do not underline categories (Installation, Configuration)
- nicer "choose desktop" step with icons

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

- add new step "choose desktop", before or hiding "choose groups"
- 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)

Version 10.4.182 - 30 August 2007, by Thierry Vignaud

- enable snd-ac97-codec power_save=1 option if installed on laptop (#32213)
- set specific icons for summary steps (#32923)
- assume system is a laptop if it contains some "Intel Corporation|Mobile" devices
  (fix Samsung Q1U detection, #32967)

Version 10.4.181 - 29 August 2007, by Thierry Vignaud

- fix translating steps titles
- ugtk2: use given title if available instead of default step title (#32923)

Version 10.4.180 - 27 August 2007, by Thierry Vignaud

- bug command: fix choosing the usb-key/floppy drive
  (ie adapting interactive::stdio to new interactive callbacks)
- add /usr/share/ldetect-lst/fallback-modules.alias for 
  drakx-in-chroot on old kernels
- fallback to kernel-desktop
- fix summary in text mode (#32858)
- fix loading linux software raid (mdadm) kernel modules
  (after rename raid5&raid6 -> raid456)
- diskdrake
  o fix action "Type" on a software raid (eg: dm0)
  o fix coloring "Other" partitions (#32845)
- update banner for RC1

Version 10.4.179 - 24 August 2007, by Thierry Vignaud

- install kernel-desktop-devel-latest instead of
  kernel-source-stripped-latest on upgrade

Version 10.4.178 - 24 August 2007, by Thierry Vignaud

- adapt to new kernel flavors

Version 10.4.177 - 24 August 2007, by Pascal "Pixel" Rigaux

- fix typo in banner name (otherwise internal_error)

Version 10.4.176 - 24 August 2007, by Olivier "blino" Blin

- fix resolving category from module (mainly fix usbhid loading)

Version 10.4.175 - 23 August 2007, by Pascal "Pixel" Rigaux

- fix typo making selectKeyboard step not called
- diskdrake:
  o change the legend and the colors per partition
- drop /etc/sysconfig/usb configuration (not used anymore in initscripts)
- update banner for beta2

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

- set default per step banner title & icon for all steps
- fallback on module name if the filename can't be found
  (in the rare case the caller uses '-' in the module name)
- use '_' in module names when explicitely loading them (cosmetics only)
- kill old usb-storage code, mkinitrd now loads it when necessary

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

- convert module names to module filenames

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

- ignore wmaster* devices when detecting wireless interfaces

Version 10.4.171 - 20 August 2007, by Olivier "blino" Blin

- really use '_' in modules names

Version 10.4.170 - 20 August 2007, by Olivier "blino" Blin

- use '_' in modules names

Version 10.4.169 - 14 August 2007, by Thierry Vignaud

- use better default title & icon for banners
- diskdrake:
  o add support for 'relatime' mount option
  o default all machines to 'relatime' mount option
    (except laptops which use the stronger noatime)
  o kill support for 'nodiratime' mount option

Version 10.4.168 - 13 August 2007, by Pascal "Pixel" Rigaux

- merge root password step and create user step
- fix checking user creation info (#32517)
- allow to create only one user per default, but add an entry in summary to
  create more users
- authentication method is not configurable anymore for now. 
  should we add it to summary?
- 'ibm_acpi' driver was replaced by 'thinkpad_acpi (#31606)
- internal
  o use urpm::select::get_preferred to choose preferred packages
    (need urpmi library >= 4.10.1)
  o computeGroupSize: do direct requires before choices
    (eg for epiphany: require libmozilla-firefox2.0.0.6 before choosing
    package providing libmozjs.so)

Version 10.4.165 - 10 August 2007, by Thierry Vignaud

- fix detecting sound cards

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

- cache PCI probe results
- use Xconfig::proprietary::pkgs_for_Driver2 from drakx-kbd-mouse-X11 0.21

Version 10.4.162 - 8 August 2007, by Thierry Vignaud

- drakboot:
  o allow choosing another bootloader method when a package cannot be
  installed (occurs on 2008.0 beta1 where mandriva-gfxboot-theme is missing)
- diskdrake:
  o do not show partition types which have no associated filesystem
    for LVM LV (#32326)
- allow using diskdrake even if there is only a lvm PV on full disk available
- fix range max value >2TB when creating a partition (useful for LVs >2TB)
- kill security level step (only reachable from summary now)
- restore progress bar when formatting ext3
- summary screen:
  o warn if the security level will prevent accessing windows partitions
  o reorder steps according to specs
  o render titles in bold

Version 10.4.158 - 3 August 2007, by Pascal "Pixel" Rigaux

- configure removable writable media to use "flush" option instead of "sync" (#23042)

Version 10.4.155 - 2 August 2007, by Pascal "Pixel" Rigaux

- use kbd (setfont) instead of console-tools (consolechars)
- drop supermount support
- 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)

Version 10.4.150 - 24 July 2007, by Olivier "blino" Blin
- update banner for 2008 beta 1 (from Anne)

Version 10.4.149 - 17 July 2007, by Olivier "blino" Blin
- fix build of wireless binding with latest kernel headers

Version 10.4.148 - 17 July 2007, by Olivier "blino" Blin

- add ide-disk module in disk/raw
- load ide-disk module when loading disk/ide category

Version 10.4.147 - 12 July 2007, by Pascal "Pixel" Rigaux

- allow using sqlite for rpmdb when using option rpm_dbapi=4
- add /LIB/udev/usb_id which is needed by mouse.pm to generate /dev/input/by-id/xxx

Version 10.4.142 - 2 July 2007, by Pascal "Pixel" Rigaux

- brown paper bag fix (stage1 can't create symlink /etc/rpm/platform)

Version 10.4.141 - 29 June 2007, by Pascal "Pixel" Rigaux

- bundle /etc/rpm/platform for rpm 4.4.8
- use modularized ide drivers and configure ide-controller in modprobe.conf
- auto_install:
  o allow "automatic=met:http,ser:server,dir:/pub/dir
    kickstart=/pub/auto_inst.cfg" to get http://server/pub/auto_inst.cfg (#31474)
  o ensure /etc/resolv.conf is configured in /mnt for network installs
- add /etc/mke2fs.conf in order to format ext3fs with 4k blocks (#27377)
- diskdrake
  o fix 1.9TB displayed as 1TB
- do not ask for updates at end of installation when updates are already
  available (network installs) (#30344)
- do not try to configure dvd devices since /dev is wiped out at
  reboot
- fix detecting usb drives (#13395)
  (need a perl-MDK-Common 1.2.5)
- hw support:
  o handle snd-cs5530 driver
- install fonts-ttf-dejavu & fonts-ttf-liberation by default
- allow umounting cdrom during a transaction
- really allow having name with "/" in media.cfg
- use "mkfs.ext3" instead of "mkfs.ext2 -J"
  (to have dir_index & resize_inode features)
  (cf Frederik Himpe 23 Apr 2007 mail on cooker)

Version 10.4.129 - 4 April 2007, by Pascal "Pixel" Rigaux

- move advertising out of drakx-installer-stage2 into drakx-installer-advertising

Version 10.4.128 - 3 April 2007, by Pascal "Pixel" Rigaux

- don't configure /etc/kde/kdm/kdmrc if it doesn't exist
  (other kdmrc.rpmnew will be created, many important values will be missing)
- fix ext3 formatting with label and progress bar (#30032)
- fix taking screenshot
- prefering libkdebase4-kmenuedit over libkdebase46-kmenuedit to ensure
  kdebase-kmenuedit is chosen instead of kdebase4-kmenuedit

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.124 - 29 March 2007, by Olivier "blino" Blin

- correctly mark "update" media in urpmi.cfg
- fix multiple detection of PCI network cards with the same driver (#29688)
- rename o->{build_live_system} as more generic o->{match_all_hardware} name
- automatically install network drivers when matching all hardware

Version 10.4.122 - 29 March 2007, by Thierry Vignaud

- final banner image
- fix installing kernel-source-stripped
- include mmc_block for card readers

Version 10.4.120 - 23 March 2007, by Pascal "Pixel" Rigaux

- allow having name with "/" in media.cfg
- 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.119 - 22 March 2007, by Pascal "Pixel" Rigaux

- use concat_symlink to get rid of ../../ in urpmi.cfg on x86_64 for main32 medium
- don't complain about missing pata drivers
- do not install nspluginwrapper on ia32 (#29808)
- use http://api.mandriva.com/mirrors/$type.$version.$arch instead of simply
  $version.$arch (useful to differentiate CorpoDesktop4)
- fix ati/nvidia drivers installation on One

Version 10.4.116 - 19 March 2007, by Thierry Vignaud

- do not fallback on english HTML help but on on old translated help
- handle more drivers (dvb, ethernet, gigabit, ide, pcmcia, sata,
  sound, tv, usb hosts, wan, webcam, wireless)
- 2007 RC logo
- diskdrake: handle mkntfs

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

- use kernel-*latest to select the kernel, 
  and also kernel-source-stripped-latest when dkms is installed on upgrade
- add some nice code selecting the various kernel-source-stripped (or
  kernel-.*-devel) corresponding to the chosen kernels
- allow having rpmsrate on CD0 overriding rpmsrate on CD1 
  (bugged introduced in rev 37253)
- when using 2 media_cfg in auto_inst, 
  allow specifying which rpmsrate will be used
- for locales with fallback (eg: br:fr), try main language before
  english

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

- use grub-gfxmenu command to configure /boot/gfxmenu for grub

Version 10.4.111 - 15 March 2007, by Olivier "blino" Blin

- correctly translate Driver2 to package name (fix ati packages installation on One)

Version 10.4.109 - 15 March 2007, by Thierry Vignaud

- display HTML help if availlable
- load tifm_sd if needed (#25133)

Version 10.4.107 - 13 March 2007, by Pascal "Pixel" Rigaux

- prefer kde3 packages over kde4 packages

Version 10.4.106 - 12 March 2007, by Pascal "Pixel" Rigaux

- move the lib64 symlink in share/symlinks (to fix drakx-in-chroot),
  this will leave a harmless dangling symlink in most cases though
- configure "tifm_7xx1" driven card_reader (#25133)
- do not bother configure old modutils
- fix PCI descriptions returned from pci_probe()
- enhance wrapping in wizards

Version 10.4.103 - 6 March 2007, by Pascal "Pixel" Rigaux

- add icons needed by xorg configuration (#29069)

Version 10.4.98 - 22 February 2007, by Thierry Vignaud

- do not install athcool on ia32, it freeze at least some nforce2 machines
- fix regexp for kernel-2.6.17.10mdv for autoinstall install & liveCD building
- include fsck.jfs on x86_64 too (#28821)
- update kernel/list_modules.pm

Version 10.4.96 - 16 February 2007, by Pascal "Pixel" Rigaux

- handle vga=0x3.. instead of vga=7..
- prefer free-kde-config (otherwise one-kde-config is chosen)
- use system-wide raghu.ttf (pablo)
- fix rights on files
- fix automatic selection of proprietary video kernel packages (blino)
- modify custom.conf instead of gdm.conf (blino)

10.4.93
- really fix command bug
9'>3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 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
# Icelandic translation of libDrakX.po
# translation of libDrakX.po to
# Translation file for Mandriva Linux graphic install, DrakX
# Copyright (C) 1999,2003, 2005, 2006, 2007 Free Software Foundation, Inc.
# Copyright (C) 1999 Mandriva
#
#
# Jóhann Þorvarðarson <johann.torvardarson@lais.is>, 1999-2000.
# Þórarinn (Tony) R. Einarsson <thori@mindspring.com>, 1999-2000.
# Pjetur G. Hjaltason <pjetur@pjetur.net>, 2003, 2005, 2006, 2007.
msgid ""
msgstr ""
"Project-Id-Version: libDrakX\n"
"POT-Creation-Date: 2007-08-27 20:13+0200\n"
"PO-Revision-Date: 2007-03-10 22:41+0000\n"
"Last-Translator: Pjetur G. Hjaltason <pjetur@pjetur.net>\n"
"Language-Team: Icelandic <kde-isl@molar.is>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11.4\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"

#: any.pm:240 diskdrake/interactive.pm:603 diskdrake/interactive.pm:790
#: diskdrake/interactive.pm:834 diskdrake/interactive.pm:896
#: diskdrake/interactive.pm:1183 do_pkgs.pm:209 do_pkgs.pm:255
#: harddrake/sound.pm:201 interactive.pm:576
#, c-format
msgid "Please wait"
msgstr "Augnablik"

#: any.pm:240
#, c-format
msgid "Bootloader installation in progress"
msgstr "Er að setja upp ræsistjóra"

#: any.pm:251
#, 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 vill setja nýtt diskauðkenni á disk %s. ATHUGIÐ að ef þú breytir\n"
"diskauðkenni á Windows NT, 2000, eða XP \"ræsidisk\" þá veldur það\n"
"alvarlegri Windows villu.\n"
"Þetta á ekki við Windows 95 eða 98, eða NT gagnadiska.\n"
"\n"
"Breyta diskauðkenni?"

#: any.pm:262
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Innsetning ræsiforrits brást sökum eftirfarandi villu:"

#: any.pm:268
#, 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 ""
"Það getur verið að þú þurfir að breyta Open Firmware ræsi-tæki til\n"
" að virkja ræsiforritið.  Ef þú sérð ekki hvata-spurningu frá\n"
" ræsi-forritinu, haltu niðri Command-Option-O-F þegar þú ræsir\n"
" og sláðu inn: setenv boot-device %s,\\\\:tbxi\n"
" sláðu síðan inn: shut-down\n"
"Við næstu ræsingu þá ættir þú að sjá hvata-spurningu fra ræsi-forritinu."

#: any.pm:306
#, 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 ""
"Þú ákvaðst að setja ræsiforritið á disksneið.\n"
"Þetta gefur til kynna að þú hafir nú þegar ræsiforrit á disknum sem þú ræsir "
"af (t.d. System Commander).\n"
"\n"
"Af hvaða disk ræsir þú?"

#: any.pm:329
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Í ræsifærsluna (MBR)"

#: any.pm:330
#, c-format
msgid "First sector of the root partition"
msgstr "Á fyrsta geira rótardisksneiðar"

#: any.pm:332
#, c-format
msgid "On Floppy"
msgstr "Á diskling"

#: any.pm:334
#, c-format
msgid "Skip"
msgstr "Sleppa"

#: any.pm:338
#, c-format
msgid "LILO/grub Installation"
msgstr "LILO/grub uppsetning"

#: any.pm:340
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Hvert viltu setja ræsistjórann?"

#: any.pm:367
#, c-format
msgid "Boot Style Configuration"
msgstr "Uppsetning ræsistíls"

#: any.pm:377 any.pm:409 any.pm:410
#, c-format
msgid "Bootloader main options"
msgstr "Aðalvalmöguleikar ræsiforrits"

#: any.pm:382
#, c-format
msgid "Bootloader"
msgstr "Ræsistjóri"

#: any.pm:383 any.pm:414
#, c-format
msgid "Bootloader to use"
msgstr "Ræsiforrit sem á að nota"

#: any.pm:385 any.pm:416
#, c-format
msgid "Boot device"
msgstr "Ræsitæki"

#: any.pm:387
#, c-format
msgid "Main options"
msgstr "Aðalvalkostir"

#: any.pm:388
#, c-format
msgid "Delay before booting default image"
msgstr "Töf áður en sjálfgefin ræsing byrjar"

#: any.pm:389
#, c-format
msgid "Enable ACPI"
msgstr "Virkja ACPI"

#: any.pm:390
#, c-format
msgid "Enable APIC"
msgstr "Virkja APIC"

#: any.pm:391
#, c-format
msgid "Enable Local APIC"
msgstr "Virkja staðbundið APIC"

#: any.pm:393 any.pm:773 authentication.pm:196 diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Lykilorð"

#: any.pm:395 authentication.pm:207
#, c-format
msgid "The passwords do not match"
msgstr "Mismunandi lykilorð"

#: any.pm:395 authentication.pm:207 diskdrake/interactive.pm:1343
#, c-format
msgid "Please try again"
msgstr "Reyndu aftur"

#: any.pm:396
#, c-format
msgid "You can not use a password with %s"
msgstr "Þú getur ekki notað lykilorð með %s"

#: any.pm:399 any.pm:774 authentication.pm:197
#, c-format
msgid "Password (again)"
msgstr "Lykilorð (aftur)"

#: any.pm:400
#, c-format
msgid "Restrict command line options"
msgstr "Takmarka alla rofa á skipanalínu"

#: any.pm:400
#, c-format
msgid "restrict"
msgstr "takmarka"

#: any.pm:401
#, c-format
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Valkosturinn ``Takmarka alla rofa á skipanalínu'' gerir ekkert án lykilorðs"

#: any.pm:403
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Hreinsa /tmp við hverja ræsingu"

#: any.pm:404
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Nákvæm stærð vinnsluminnis (fann %d MB)"

#: any.pm:405
#, c-format
msgid "Give the ram size in MB"
msgstr "Sláðu inn vinnsluminni í MB"

#: any.pm:415
#, c-format
msgid "Init Message"
msgstr "Init skilaboð"

#: any.pm:417
#, c-format
msgid "Open Firmware Delay"
msgstr "Biðtími Open Firmware"

#: any.pm:418
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Kjarna ræsibið"

#: any.pm:419
#, c-format
msgid "Enable CD Boot?"
msgstr "Virkja CD ræsingu?"

#: any.pm:420
#, c-format
msgid "Enable OF Boot?"
msgstr "Virkja OF ræsingu?"

#: any.pm:421
#, c-format
msgid "Default OS?"
msgstr "Sjálfgefið stýrikerfi?"

#: any.pm:487
#, c-format
msgid "Image"
msgstr "Ræsikjarni"

#: any.pm:488 any.pm:501
#, c-format
msgid "Root"
msgstr "Rót"

#: any.pm:489 any.pm:514
#, c-format
msgid "Append"
msgstr "Bæta við"

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

#: any.pm:494
#, c-format
msgid "Video mode"
msgstr "Skjáhamur"

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

#: any.pm:497
#, c-format
msgid "Network profile"
msgstr "Net snið"

#: any.pm:506 any.pm:511 any.pm:513 diskdrake/interactive.pm:425
#, c-format
msgid "Label"
msgstr "Auðkenni"

#: any.pm:508 any.pm:516 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Sjálfgefið"

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

#: any.pm:526
#, c-format
msgid "Empty label not allowed"
msgstr "Auðkenni má eki vera autt"

#: any.pm:527
#, c-format
msgid "You must specify a kernel image"
msgstr "Þú verður að skilgreina ræsikjarna"

#: any.pm:527
#, c-format
msgid "You must specify a root partition"
msgstr "Þú verður að tilgreina rótardisksneiðina"

#: any.pm:528
#, c-format
msgid "This label is already used"
msgstr "Þetta auðkenni er nú þegar í notkun"

#: any.pm:546
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Hvers konar færslu viltu bæta við?"

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

#: any.pm:547
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Öðru stýrikerfi (SunOS...)"

#: any.pm:548
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Öðru stýrikerfi (MacOS...)"

#: any.pm:548
#, c-format
msgid "Other OS (Windows...)"
msgstr "Öðru stýrikerfi (Windows...)"

#: any.pm:576
#, 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 ""
"Hérna eru núverandi færslur á ræsivalmynd.\n"
"Þú getur bætt við fleirum eða breytt þessum."

#: any.pm:727
#, c-format
msgid "access to X programs"
msgstr "aðgengi að X forritum"

#: any.pm:728
#, c-format
msgid "access to rpm tools"
msgstr "aðgengi að rpm tólum"

#: any.pm:729
#, c-format
msgid "allow \"su\""
msgstr "leyfa \"su\""

#: any.pm:730
#, c-format
msgid "access to administrative files"
msgstr "aðgengi að stýrikerfisskrám"

#: any.pm:731
#, c-format
msgid "access to network tools"
msgstr "aðgengi að nettólum"

#: any.pm:732
#, c-format
msgid "access to compilation tools"
msgstr "aðgengi að þróunartólum"

#: any.pm:737
#, c-format
msgid "(already added %s)"
msgstr "(%s er nú þegar til)"

#: any.pm:744
#, c-format
msgid "Please give a user name"
msgstr "Vinsamlega sláðu inn notandanafn"

#: any.pm:745
#, c-format
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Notandanafnið má bara innihalda litla stafi, tölustafi, `-' og `_'"

#: any.pm:746
#, c-format
msgid "The user name is too long"
msgstr "Þetta notandanafn er of langt"

#: any.pm:747
#, c-format
msgid "This user name has already been added"
msgstr "Þetta notandanafn er nú þegar til"

#: any.pm:748 any.pm:776
#, c-format
msgid "User ID"
msgstr "UID notanda"

#: any.pm:749 any.pm:777
#, c-format
msgid "Group ID"
msgstr "Hópnúmer"

#: any.pm:752
#, c-format
msgid "%s must be a number"
msgstr "Valkostur %s verður að vera tala"

#: any.pm:753
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s ætti að vera yfir 500. Samþykkja samt?"

#: any.pm:768
#, fuzzy, c-format
msgid "User management"
msgstr "Notandanafn"

#: any.pm:775 authentication.pm:182
#, c-format
msgid "Set administrator (root) password"
msgstr "Ákveða kerfislykilorð (root)"

#: any.pm:780
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"Skrá notanda\n"
"%s"

#: any.pm:781
#, c-format
msgid "Real name"
msgstr "Fullt nafn"

#: any.pm:772
#, c-format
msgid "Login name"
msgstr "Notandanafn"

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

#: any.pm:822 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Skrá notanda sjálfkrafa inn"

#: any.pm:823
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Ég get stillt tölvuna þína til að stimpla sjálfkrafa inn ákveðinn notanda."

#: any.pm:824
#, c-format
msgid "Use this feature"
msgstr "Nota þennan eiginleika"

#: any.pm:825
#, c-format
msgid "Choose the default user:"
msgstr "Veldu sjálfgefinn notanda:"

#: any.pm:826
#, c-format
msgid "Choose the window manager to run:"
msgstr "Veldu gluggastjóra sem þú vilt nota:"

#: any.pm:854
#, c-format
msgid "License agreement"
msgstr "Notkunarskilmálar"

#: any.pm:857 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "Hætta"

#: any.pm:860
#, c-format
msgid "Release Notes"
msgstr "Athugasemdir við útgáfu"

#: any.pm:863
#, c-format
msgid "Accept"
msgstr "Samþykkja"

#: any.pm:863
#, c-format
msgid "Refuse"
msgstr "Neita"

#: any.pm:882 any.pm:950
#, c-format
msgid "Please choose a language to use."
msgstr "Vinsamlega veldu tungumál sem á að nota."

#: any.pm:883 any.pm:951
#, c-format
msgid "Language choice"
msgstr "Tungumálaval"

#: any.pm:913
#, 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 getur stutt mörg tungumál.  Veldu tungumál\n"
"sem þú vilt setja upp stuðning fyrir. Þau verða tiltæk þegar\n"
"uppsetningu er lokið. og þú endurræsir kerfið."

#: any.pm:916
#, c-format
msgid "Multi languages"
msgstr "Mörg tungumál"

#: any.pm:928 any.pm:959
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Samhæfni við eldri (ekki UTF-8) kóðun"

#: any.pm:930
#, c-format
msgid "All languages"
msgstr "Öll tungumál"

#: any.pm:1005
#, c-format
msgid "Country / Region"
msgstr "Land / Svæði"

#: any.pm:1007
#, c-format
msgid "Please choose your country."
msgstr "Veldu þér land."

#: any.pm:1009
#, c-format
msgid "Here is the full list of available countries"
msgstr "Hér er listi af tiltækum löndum"

#: any.pm:1010
#, c-format
msgid "Other Countries"
msgstr "Önnur lönd"

#: any.pm:1010 interactive.pm:477
#, c-format
msgid "Advanced"
msgstr "Ítarlegra"

#: any.pm:1016
#, c-format
msgid "Input method:"
msgstr "Innsláttaraðferð:"

#: any.pm:1019
#, c-format
msgid "None"
msgstr "Enginn"

#: any.pm:1099
#, c-format
msgid "No sharing"
msgstr "Engin miðlun"

#: any.pm:1099
#, c-format
msgid "Allow all users"
msgstr "Leyfa öllum notendum"

#: any.pm:1099
#, c-format
msgid "Custom"
msgstr "Sérsniðið"

#: any.pm:1103
#, 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 ""
"Viltu leyfa notendum að miðla sínum möppum?\n"
"Ef þú leyfir þetta þá geta notendur einfaldlega smellt á \"Sameign\" í "
"Konqueror og Nautilus.\n"
"\n"
"\"Sérsniðið\" leyfir að stilla fyrir hvern notanda.\n"

#: any.pm:1115
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
"NFS: algengt Unix net-skráamiðlunarkerfi, með minni stuðning á Mac og "
"Windows."

#: any.pm:1118
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
"SMB: skráarkerfi notað af Windows, Mac OS X og mörgum nýlegum Linux kerfum."

#: any.pm:1126
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "Þú getur miðlað með NFS eða SMB. Veldu hvort þú vilt nota."

#: any.pm:1151
#, c-format
msgid "Launch userdrake"
msgstr "Ræsa userdrake"

#: any.pm:1151 interactive/gtk.pm:747
#, c-format
msgid "Close"
msgstr "Loka"

#: any.pm:1153
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
"Netmiðlun einstakra notanda notar hópinn \"fileshare\". \n"
"Þú getur notað userdrake til að bæta notendum í þennan hóp."

#: any.pm:1245
#, c-format
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Stimplaðu þig út og sláðu á Ctrl-Alt-Backspace"

#: any.pm:1249
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "Þú þarft að skrá þig út og inn aftur til að breytingar taki gildi"

#: any.pm:1284
#, c-format
msgid "Timezone"
msgstr "Tímabelti"

#: any.pm:1284
#, c-format
msgid "Which is your timezone?"
msgstr "Hvert er þitt tímabelti?"

#: any.pm:1296 any.pm:1298
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Dagsetning, Tími og tímabelti"

#: any.pm:1299
#, c-format
msgid "What is the best time?"
msgstr "Hvað er er besti tíminn?"

#: any.pm:1303
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (tölvuklukka stillt á UTC)"

#: any.pm:1304
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (tölvuklukka stillt á staðartíma)"

#: any.pm:1306
#, c-format
msgid "NTP Server"
msgstr "NTP þjónn"

#: any.pm:1307
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Sjálfvirk tímastilling (með NTP)"

#: authentication.pm:23
#, c-format
msgid "Local file"
msgstr "Staðbundin skrá"

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

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

#: authentication.pm:26
#, c-format
msgid "Smart Card"
msgstr "Snjallkort"

#: authentication.pm:27 authentication.pm:163
#, c-format
msgid "Windows Domain"
msgstr "Windows Lén"

#: authentication.pm:28
#, c-format
msgid "Active Directory with SFU"
msgstr "Upplýsingaveita með SFU"

#: authentication.pm:29
#, c-format
msgid "Active Directory with Winbind"
msgstr "Upplýsingaveita með Winbind"

#: authentication.pm:66
#, c-format
msgid "Local file:"
msgstr "Staðbundin skrá:"

#: authentication.pm:66
#, c-format
msgid "Use information stored in local files for all authentication"
msgstr ""

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

#: authentication.pm:67
#, c-format
msgid ""
"Tells your computer to use LDAP for some or all authentication. LDAP "
"consolidates certain types of information within your organization."
msgstr ""
"Nota LDAP fyrir allar (eða hluta) auðkenningar. LDAP safnar og varðveitir "
"ýmsar tegundir upplýsinga innan þíns nethverfis."

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

#: authentication.pm:68
#, 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 ""
"Leyfir þér að keyra hóp af tölvum í sama netupplýsingakerfi, með sameiginleg "
"lykilorð og hópaskrár."

#: authentication.pm:69
#, c-format
msgid "Windows Domain:"
msgstr "Windows Lén:"

#: authentication.pm:69
#, c-format
msgid ""
"Winbind allows the system to retrieve information and authenticate users in "
"a Windows domain."
msgstr ""
"Winbind leyfir kerfinu að sækja upplýsingar og auðkenna notendur í Windows "
"léni."

#: authentication.pm:70
#, c-format
msgid "Active Directory with SFU:"
msgstr "Upplýsingaveita með SFU:"

#: authentication.pm:70
#, c-format
msgid "With Kerberos and Ldap for authentication in Active Directory Server "
msgstr "Með Kerberos og Ldap fyrir auðkenningu í upplýsingaveitu miðlara"

#: authentication.pm:71
#, c-format
msgid "Active Directory with Winbind:"
msgstr "Upplýsingaveita með Winbind:"

#: authentication.pm:71
#, c-format
msgid ""
"Winbind allows the system to authenticate users in a Windows Active "
"Directory Server."
msgstr ""
"Winbind leyfir kerfinu að auðkenna notendur í Windows virkri upplýsingaveitu "
"(Active Directory Server)."

#: authentication.pm:96
#, c-format
msgid "Authentication LDAP"
msgstr "Auðkenning LDAP"

#: authentication.pm:97
#, c-format
msgid "LDAP Base dn"
msgstr "LDAP Grunn-DN"

#: authentication.pm:98
#, c-format
msgid "LDAP Server"
msgstr "LDAP miðlari"

#: authentication.pm:111 fsedit.pm:23
#, c-format
msgid "simple"
msgstr "einfalt"

#: authentication.pm:112
#, c-format
msgid "TLS"
msgstr "TLS"

#: authentication.pm:113
#, c-format
msgid "SSL"
msgstr "SSL"

#: authentication.pm:114
#, c-format
msgid "security layout (SASL/Kerberos)"
msgstr "öryggisupsetning (SASL/Kerberos)"

#: authentication.pm:121 authentication.pm:159
#, c-format
msgid "Authentication Active Directory"
msgstr "Auðkenning á upplýsingaveitu"

#: authentication.pm:122 diskdrake/smbnfs_gtk.pm:182
#, c-format
msgid "Domain"
msgstr "Lén"

#: authentication.pm:124 diskdrake/dav.pm:63
#, c-format
msgid "Server"
msgstr "Miðlari"

#: authentication.pm:125
#, c-format
msgid "LDAP users database"
msgstr "LDAP notenda gagnagrunnur"

#: authentication.pm:126
#, c-format
msgid "Use Anonymous BIND "
msgstr "Nota nafnlausa tengingu "

#: authentication.pm:127
#, c-format
msgid "LDAP user allowed to browse the Active Directory"
msgstr "LDAP notanda leyft að flakka í upplýsingaveitu"

#: authentication.pm:128
#, c-format
msgid "Password for user"
msgstr "Lykilorð fyrir notanda"

#: authentication.pm:140
#, c-format
msgid "Authentication NIS"
msgstr "Auðkenning NIS"

#: authentication.pm:141
#, c-format
msgid "NIS Domain"
msgstr "NIS lén"

#: authentication.pm:142
#, c-format
msgid "NIS Server"
msgstr "NIS Miðlari"

#: authentication.pm:147
#, c-format
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
"add and reboot the server.\n"
"You will also need the username/password of a Domain Admin to join the "
"machine to the Windows(TM) domain.\n"
"If networking is not yet enabled, Drakx will attempt to join the domain "
"after the network setup step.\n"
"Should this setup fail for some reason and domain authentication is not "
"working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your Windows(tm) "
"Domain, and Admin Username/Password, after system boot.\n"
"The command 'wbinfo -t' will test whether your authentication secrets are "
"good."
msgstr ""
"Til að þetta gangi á W2K PDC, þá verður þú sennilega að láta kerfisstjóra "
"keyra: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
"add og endurræsa miðlarann.\n"
"Þú þarft einnig notendanafn/lykilorð kerfisstjóra (Domain Admin) til þess að "
"getatengt vélina við Windows(tm) lénið.\n"
"Ef netið er ekki sett upp, þá mun Drakx reyna að tengjast netinu eftir að "
"netið hefur verið sett upp.\n"
"Ef að þetta mistekst af einhverri ástæðu og lénsauðkenni virkar ekki, keyrðu "
"þá run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' og notaðu uppgefið Windows"
"(tm) lén og lykilorð kerfisstjóra (Domain Admin) eftir kerfisræsingu.\n"
"Skipunin 'wbinfo -t' mun prófa hvort leyniauðkenni þitt eru í lagi."

#: authentication.pm:159
#, c-format
msgid "Authentication Windows Domain"
msgstr "Auðkenning Windows Léns"

#: authentication.pm:161
#, c-format
msgid "Active Directory Realm "
msgstr "Upplýsingaveitu-umdæmi"

#: authentication.pm:164
#, c-format
msgid "Domain Admin User Name"
msgstr "Notandanafn kerfisstjóra léns"

#: authentication.pm:165
#, c-format
msgid "Domain Admin Password"
msgstr "Lykilorð kerfisstjóra léns"

#: authentication.pm:181 authentication.pm:198
#, c-format
msgid "Authentication"
msgstr "Auðkenning"

#: authentication.pm:184
#, c-format
msgid "Authentication method"
msgstr "Auðkenningarregla"

#. -PO: keep this short or else the buttons will not fit in the window
#: authentication.pm:189
#, c-format
msgid "No password"
msgstr "Ekkert lykilorð"

#: authentication.pm:210
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Þetta lykilorð er of einfalt (það verður að vera a.m.k. %d stafa langt)"

#: authentication.pm:351
#, c-format
msgid "Can not use broadcast with no NIS domain"
msgstr "Get ekki notað útvörpun án NIS léns"

# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#: bootloader.pm:882
#, 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 ""
"Velkomin(n) i styrikerfis-raesistjorann!\n"
"\n"
"Veldu kerfi af listanum her ad ofan eda\n"
"biddu eftir sjalfgefinni raesingu.\n"
"\n"

#: bootloader.pm:1030
#, c-format
msgid "LILO with text menu"
msgstr "LILO með textavalmynd"

#: bootloader.pm:1031
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB með myndrænni valmynd"

#: bootloader.pm:1032
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB með texavalmynd"

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

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

#: bootloader.pm:1114
#, c-format
msgid "not enough room in /boot"
msgstr "ekki nægilegt pláss í /boot"

#: bootloader.pm:1681
#, c-format
msgid "You can not install the bootloader on a %s partition\n"
msgstr "Þú getur ekki sett ræsistjórann á %s disksneiðina\n"

#: bootloader.pm:1734
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
"Þú verður að uppfæra stillingar ræsistjórans því disksneiðar hafa verið "
"endurnúmeraðar"

#: bootloader.pm:1747
#, c-format
msgid ""
"The bootloader can not be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
"Ekki er hægt að setja ræsistjórann rétt upp. Þú verður að ræsa með "
"björgunardisk og velja \"%s\""

#: bootloader.pm:1748
#, c-format
msgid "Re-install Boot Loader"
msgstr "Setja aftur inn ræsistjóra"

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

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

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

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

#: common.pm:132 common.pm:141
#, c-format
msgid "TB"
msgstr "TB"

#: common.pm:149
#, c-format
msgid "%d minutes"
msgstr "%d mínútur"

#: common.pm:151
#, c-format
msgid "1 minute"
msgstr "1 mínútu"

#: common.pm:153
#, c-format
msgid "%d seconds"
msgstr "%d sekúndur"

#: common.pm:306
#, c-format
msgid "command %s missing"
msgstr "skipun %s vantar"

#: 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 er samskiptaregla sem leyfir þér að tengja möppu vefmiðlara\n"
"og nota það sem staðbundið skráakerfi (vefmiðlarinn verður að vera\n"
"uppsettur sem WebDAV skráamiðlari). Ef þú vilt bæta við WebDAV\n"
"tengipunktum, veldu \"Nýtt\"."

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

#: diskdrake/dav.pm:61 diskdrake/interactive.pm:431 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Aftengja"

#: diskdrake/dav.pm:62 diskdrake/interactive.pm:428 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Tengja"

#: diskdrake/dav.pm:64 diskdrake/interactive.pm:422
#: diskdrake/interactive.pm:662 diskdrake/interactive.pm:680
#: diskdrake/interactive.pm:684 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
#, c-format
msgid "Mount point"
msgstr "Tengipunktur"

#: diskdrake/dav.pm:65 diskdrake/interactive.pm:424
#: diskdrake/interactive.pm:1039 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Valkostir"

#: diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:166 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Lokið"

#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:115 diskdrake/interactive.pm:229
#: diskdrake/interactive.pm:242 diskdrake/interactive.pm:386
#: diskdrake/interactive.pm:404 diskdrake/interactive.pm:529
#: diskdrake/interactive.pm:534 diskdrake/interactive.pm:652
#: diskdrake/interactive.pm:914 diskdrake/interactive.pm:1087
#: diskdrake/interactive.pm:1100 diskdrake/interactive.pm:1103
#: diskdrake/interactive.pm:1351 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:19
#: do_pkgs.pm:24 do_pkgs.pm:40 do_pkgs.pm:56 do_pkgs.pm:61 fsedit.pm:227
#: interactive/http.pm:117 interactive/http.pm:118 modules/interactive.pm:19
#: scanner.pm:94 scanner.pm:105 scanner.pm:112 scanner.pm:119 wizards.pm:95
#: wizards.pm:99 wizards.pm:121
#, c-format
msgid "Error"
msgstr "Villa"

#: diskdrake/dav.pm:83
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Vinsamlega gefið upp WebDAV slóð miðlara"

#: diskdrake/dav.pm:87
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "Slóðin verður að byrja á http:// eða https://"

#: diskdrake/dav.pm:109
#, c-format
msgid "Server: "
msgstr "Miðlari: "

#: diskdrake/dav.pm:110 diskdrake/interactive.pm:502
#: diskdrake/interactive.pm:1225 diskdrake/interactive.pm:1303
#, c-format
msgid "Mount point: "
msgstr "Tengipunktur: "

#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1310
#, c-format
msgid "Options: %s"
msgstr "Valkostir: %s"

#: diskdrake/hd_gtk.pm:53 diskdrake/interactive.pm:286
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:106
#: fs/partitioning_wizard.pm:47 fs/partitioning_wizard.pm:201
#: fs/partitioning_wizard.pm:207 fs/partitioning_wizard.pm:247
#: fs/partitioning_wizard.pm:266 fs/partitioning_wizard.pm:271
#, c-format
msgid "Partitioning"
msgstr "Forsníða diska"

#: diskdrake/hd_gtk.pm:93 diskdrake/interactive.pm:1059
#: diskdrake/interactive.pm:1069 diskdrake/interactive.pm:1122
#, c-format
msgid "Read carefully!"
msgstr "Lestu vandlega!"

#: diskdrake/hd_gtk.pm:93
#, c-format
msgid "Please make a backup of your data first"
msgstr "Vinsamlega taktu fyrst afrit af öllum gögnum"

#: diskdrake/hd_gtk.pm:94 diskdrake/interactive.pm:222
#, c-format
msgid "Exit"
msgstr "Hætta"

#: diskdrake/hd_gtk.pm:94
#, c-format
msgid "Continue"
msgstr "Áfram"

#: diskdrake/hd_gtk.pm:97
#, c-format
msgid ""
"If you plan to use aboot, be careful to leave a free space (2048 sectors is "
"enough)\n"
"at the beginning of the disk"
msgstr ""
"Ef þú ætlar að nota aboot, þá verður þú að skilja eftir pláss (2048 sneiðar "
"er nóg)\n"
"fremst á disknum"

#: diskdrake/hd_gtk.pm:162 interactive.pm:640 interactive/gtk.pm:719
#: interactive/gtk.pm:740 interactive/gtk.pm:760 ugtk2.pm:926 ugtk2.pm:927
#, c-format
msgid "Help"
msgstr "Hjálp"

#: diskdrake/hd_gtk.pm:197
#, c-format
msgid "Choose action"
msgstr "Veldu aðgerð"

#: diskdrake/hd_gtk.pm:201
#, 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 ""
"Þú hefur eina stóra Microsoft Windows disksneið.\n"
"Ég legg til að þú breytir henni\n"
"(smelltu á hana - síðan á \"Breyta stærð\")"

#: diskdrake/hd_gtk.pm:203
#, c-format
msgid "Please click on a partition"
msgstr "Smelltu á disksneið"

#: diskdrake/hd_gtk.pm:217 diskdrake/smbnfs_gtk.pm:63
#, c-format
msgid "Details"
msgstr "Ítarlegar"

#: diskdrake/hd_gtk.pm:265
#, c-format
msgid "No hard drives found"
msgstr "Engir diskar fundust"

#: diskdrake/hd_gtk.pm:292
#, c-format
msgid "Unknown"
msgstr "Óþekkt"

#: diskdrake/hd_gtk.pm:354
#, fuzzy, c-format
msgid "Ext3"
msgstr "Hætta"

#: diskdrake/hd_gtk.pm:354
#, fuzzy, c-format
msgid "XFS"
msgstr "HFS"

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

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

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

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

#: diskdrake/hd_gtk.pm:352 services.pm:158
#, c-format
msgid "Other"
msgstr "Annað"

#: diskdrake/hd_gtk.pm:352 diskdrake/interactive.pm:1239
#, c-format
msgid "Empty"
msgstr "Autt"

#: diskdrake/hd_gtk.pm:356
#, c-format
msgid "Filesystem types:"
msgstr "Tegundir skráakerfa:"

#: diskdrake/hd_gtk.pm:380 diskdrake/interactive.pm:291
#: diskdrake/interactive.pm:380 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:559 diskdrake/interactive.pm:743
#: diskdrake/interactive.pm:801 diskdrake/interactive.pm:894
#: diskdrake/interactive.pm:936 diskdrake/interactive.pm:937
#: diskdrake/interactive.pm:1168 diskdrake/interactive.pm:1206
#: diskdrake/interactive.pm:1342 do_pkgs.pm:16 do_pkgs.pm:35 do_pkgs.pm:53
#: harddrake/sound.pm:285
#, c-format
msgid "Warning"
msgstr "Aðvörun"

#: diskdrake/hd_gtk.pm:380
#, c-format
msgid "This partition is already empty"
msgstr "Þessi disksneið er þegar tóm"

#: diskdrake/hd_gtk.pm:389
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Nota ``Aftengja'' fyrst"

#: diskdrake/hd_gtk.pm:389
#, c-format
msgid "Use ``%s'' instead"
msgstr "Nota ``%s'' í staðin"

#: diskdrake/hd_gtk.pm:389 diskdrake/interactive.pm:423
#: diskdrake/interactive.pm:597 diskdrake/interactive.pm:1075
#: diskdrake/removable.pm:25 diskdrake/removable.pm:48
#, c-format
msgid "Type"
msgstr "Tegund"

#: diskdrake/interactive.pm:193
#, c-format
msgid "Choose another partition"
msgstr "Veldu aðra disksneið"

#: diskdrake/interactive.pm:193
#, c-format
msgid "Choose a partition"
msgstr "Veldu disksneið"

#: diskdrake/interactive.pm:255
#, c-format
msgid "Undo"
msgstr "Afturkalla"

#: diskdrake/interactive.pm:255
#, c-format
msgid "Toggle to normal mode"
msgstr "Fara í venjulegan ham"

#: diskdrake/interactive.pm:255
#, c-format
msgid "Toggle to expert mode"
msgstr "Færa í snillingsham"

#: diskdrake/interactive.pm:269 diskdrake/interactive.pm:279
#: diskdrake/interactive.pm:1153
#, c-format
msgid "Confirmation"
msgstr "Staðfesting"

#: diskdrake/interactive.pm:269
#, c-format
msgid "Continue anyway?"
msgstr "Halda samt áfram?"

#: diskdrake/interactive.pm:274
#, c-format
msgid "Quit without saving"
msgstr "Hætta án þess að vista"

#: diskdrake/interactive.pm:274
#, c-format
msgid "Quit without writing the partition table?"
msgstr "Hætta án þess að skrifa sneiðatöfluna?"

#: diskdrake/interactive.pm:279
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "Viltu vista /etc/fstab breytingar"

#: diskdrake/interactive.pm:286 fs/partitioning_wizard.pm:247
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Þú verður að ræsa tölvuna aftur svo breytingar á sneiðatöflunni taki gildi"

#: diskdrake/interactive.pm:291
#, 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 ""
"Þú ættir að forsníða disksneiðina %s.\n"
"Annars verður engin færsla fyrir tengipunkt %s skráð í fstab.\n"
"Hætta samt?"

#: diskdrake/interactive.pm:304
#, c-format
msgid "Clear all"
msgstr "Hreinsa allt"

#: diskdrake/interactive.pm:305
#, c-format
msgid "Auto allocate"
msgstr "Ráðstafa skjálfkrafa"

#: diskdrake/interactive.pm:306 diskdrake/interactive.pm:354
#: interactive/curses.pm:512
#, c-format
msgid "More"
msgstr "Meira"

#: diskdrake/interactive.pm:311
#, c-format
msgid "Hard drive information"
msgstr "Sýna upplýsingar um disk"

#: diskdrake/interactive.pm:343
#, c-format
msgid "All primary partitions are used"
msgstr "Allar aðal-disksneiðar eru í notkun"

#: diskdrake/interactive.pm:344
#, c-format
msgid "I can not add any more partitions"
msgstr "Get ekki bætt við disksneiðum"

#: diskdrake/interactive.pm:345
#, c-format
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr ""
"Til að fá fleiri disksneiðar, vinsamlega eyddu einni til að búa til "
"framlengda disksneið"

#: diskdrake/interactive.pm:356
#, c-format
msgid "Save partition table"
msgstr "Vista sneiðatöflu"

#: diskdrake/interactive.pm:357
#, c-format
msgid "Restore partition table"
msgstr "Endurheimta sneiðatöflunna"

#: diskdrake/interactive.pm:359
#, c-format
msgid "Reload partition table"
msgstr "Endurhlaða sneiðatöflunna"

#: diskdrake/interactive.pm:369 diskdrake/interactive.pm:395
#, c-format
msgid "Select file"
msgstr "Veljið skrá"

#: diskdrake/interactive.pm:381
#, c-format
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
msgstr ""
"Disksneiðin sem var tekin sem afrit er ekki af sömu stærð\n"
"Halda samt áfram?"

#: diskdrake/interactive.pm:410
#, c-format
msgid "Detailed information"
msgstr "Ítarlegri upplýsingar"

#: diskdrake/interactive.pm:426 diskdrake/interactive.pm:756
#, c-format
msgid "Resize"
msgstr "Breyta stærð"

#: diskdrake/interactive.pm:427
#, c-format
msgid "Format"
msgstr "Forsníða"

#: diskdrake/interactive.pm:429 diskdrake/interactive.pm:842
#, c-format
msgid "Add to RAID"
msgstr "Bæta við RAID"

#: diskdrake/interactive.pm:430 diskdrake/interactive.pm:859
#, c-format
msgid "Add to LVM"
msgstr "Bæta við LVM"

#: diskdrake/interactive.pm:432
#, c-format
msgid "Delete"
msgstr "Eyða"

#: diskdrake/interactive.pm:433
#, c-format
msgid "Remove from RAID"
msgstr "Taka úr RAID"

#: diskdrake/interactive.pm:434
#, c-format
msgid "Remove from LVM"
msgstr "Taka úr LVM"

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

#: diskdrake/interactive.pm:436
#, c-format
msgid "Use for loopback"
msgstr "Nota fyrir sýndardisk"

#: diskdrake/interactive.pm:447
#, c-format
msgid "Create"
msgstr "Búa til"

#: diskdrake/interactive.pm:491 diskdrake/interactive.pm:493
#, c-format
msgid "Create a new partition"
msgstr "Búa til nýja disksneið"

#: diskdrake/interactive.pm:495
#, c-format
msgid "Start sector: "
msgstr "Byrjunar geiri: "

#: diskdrake/interactive.pm:498 diskdrake/interactive.pm:929
#, c-format
msgid "Size in MB: "
msgstr "Stærð í MB: "

#: diskdrake/interactive.pm:500 diskdrake/interactive.pm:930
#, c-format
msgid "Filesystem type: "
msgstr "Tegund skráakerfis: "

#: diskdrake/interactive.pm:506
#, c-format
msgid "Preference: "
msgstr "Valkostur: "

#: diskdrake/interactive.pm:509
#, c-format
msgid "Logical volume name "
msgstr "Nafn sýndardisks"

#: diskdrake/interactive.pm:529
#, 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 ""
"Þú getur ekki búið til nýja disksneið\n"
"(því að þú hefur búið til hámarksfjölda aðalsneiða).\n"
"Fjarlægðu fyrst aðalsneiðina og búðu til framlengda disksneið."

#: diskdrake/interactive.pm:559
#, c-format
msgid "Remove the loopback file?"
msgstr "Fjarlægja sýndardisk-skrá?"

#: diskdrake/interactive.pm:581
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "Eftir breytingu á sneið %s, hafa öll gögn á þessari disksneið tapast"

#: diskdrake/interactive.pm:594
#, c-format
msgid "Change partition type"
msgstr "Breyta tegund sneiðar"

#: diskdrake/interactive.pm:596 diskdrake/removable.pm:47
#, c-format
msgid "Which filesystem do you want?"
msgstr "Hvaða skráakerfi viltu?"

#: diskdrake/interactive.pm:603
#, c-format
msgid "Switching from ext2 to ext3"
msgstr "Breyti frá ext2 í ext3"

#: diskdrake/interactive.pm:629 diskdrake/interactive.pm:632
#, c-format
msgid "Which volume label?"
msgstr "Hvaða Diskauðkenni?"

#: diskdrake/interactive.pm:633
#, c-format
msgid "Label:"
msgstr "Auðkenni:"

#: diskdrake/interactive.pm:647
#, c-format
msgid "Where do you want to mount the loopback file %s?"
msgstr "Hvar viltu tengja sýndardisk-skrá %s?"

#: diskdrake/interactive.pm:648
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Hvar viltu tengja tæki %s?"

#: diskdrake/interactive.pm:653
#, c-format
msgid ""
"Can not unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
"Get ekki aftengt tengipunkt þar sem þessi disksneið inniheldur\n"
"sýndardisk-skrá.  Fjarlægðu sýndardiskinn fyrst (aftengdu)"

#: diskdrake/interactive.pm:683
#, c-format
msgid "Where do you want to mount %s?"
msgstr "Hvar viltu tengja tæki %s?"

#: diskdrake/interactive.pm:707 diskdrake/interactive.pm:790
#: fs/partitioning_wizard.pm:141 fs/partitioning_wizard.pm:173
#, c-format
msgid "Resizing"
msgstr "Breyta stærð"

#: diskdrake/interactive.pm:707
#, c-format
msgid "Computing FAT filesystem bounds"
msgstr "Reikna mörk FAT skráakerfis"

#: diskdrake/interactive.pm:743
#, c-format
msgid "This partition is not resizeable"
msgstr "Ekki er hægt að breyta stærð á þessari disksneið"

#: diskdrake/interactive.pm:748
#, c-format
msgid "All data on this partition should be backed-up"
msgstr "Öll gögn á þessari disksneið ætti að afrita"

#: diskdrake/interactive.pm:750
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Eftir stærðarbreytingu á sneið %s, hafa öll gögn á þessari disksneið tapast"

#: diskdrake/interactive.pm:757
#, c-format
msgid "Choose the new size"
msgstr "Veldu nýja stærð"

#: diskdrake/interactive.pm:758
#, c-format
msgid "New size in MB: "
msgstr "Ný stærð í MB: "

#: diskdrake/interactive.pm:759
#, c-format
msgid "Minimum size: %s MB"
msgstr "Lágmarksstærð: %s MB"

#: diskdrake/interactive.pm:760
#, c-format
msgid "Maximum size: %s MB"
msgstr "Hámarksstærð: %s MB"

#: diskdrake/interactive.pm:801 fs/partitioning_wizard.pm:181
#, 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 ""
"Til að staðfesta að gögn séu í lagi eftir að disksneiðum hefur verið \n"
"breytt verður að keyra diskaprófun þegar þú ræsir Windows(tm) næst"

#: diskdrake/interactive.pm:842
#, c-format
msgid "Choose an existing RAID to add to"
msgstr "Veldu RAID sem til er fyrir til að bæta við"

#: diskdrake/interactive.pm:844 diskdrake/interactive.pm:861
#, c-format
msgid "new"
msgstr "ný"

#: diskdrake/interactive.pm:859
#, c-format
msgid "Choose an existing LVM to add to"
msgstr "Veldu LVM sem til er fyrir til að bæta við"

#: diskdrake/interactive.pm:866
#, c-format
msgid "LVM name?"
msgstr "LVM nafn?"

#: diskdrake/interactive.pm:894
#, 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 ""
"Diskur með auðkenni %s er enn í notkun.\n"
"Vilt þú færa notaðar sneiðar á þessum diski yfir á aðra diska?"

#: diskdrake/interactive.pm:896
#, c-format
msgid "Moving physical extents"
msgstr "Flyt disksneiðar"

#: diskdrake/interactive.pm:914
#, c-format
msgid "This partition can not be used for loopback"
msgstr "Það er ekki hægt að nota þessa sneið fyrir sýndardisk"

#: diskdrake/interactive.pm:927
#, c-format
msgid "Loopback"
msgstr "Sýndardiskur"

#: diskdrake/interactive.pm:928
#, c-format
msgid "Loopback file name: "
msgstr "Skráarnafn sýndardisks: "

#: diskdrake/interactive.pm:933
#, c-format
msgid "Give a file name"
msgstr "Gefðu upp skráarnafn"

#: diskdrake/interactive.pm:936
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr "Skrá er þegar notuð sem annar sýndardiskur, veldu annan"

#: diskdrake/interactive.pm:937
#, c-format
msgid "File already exists. Use it?"
msgstr "Skráin er þegar til. Nota hana?"

#: diskdrake/interactive.pm:966 diskdrake/interactive.pm:969
#, c-format
msgid "Mount options"
msgstr "Tengistillingar"

#: diskdrake/interactive.pm:976
#, c-format
msgid "Various"
msgstr "Ýmislegt"

#: diskdrake/interactive.pm:1041
#, c-format
msgid "device"
msgstr "tæki"

#: diskdrake/interactive.pm:1042
#, c-format
msgid "level"
msgstr "stig"

#: diskdrake/interactive.pm:1043
#, c-format
msgid "chunk size in KiB"
msgstr "blokkarstærð í KiB"

#: diskdrake/interactive.pm:1060
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "Varaðu þig: þessi aðgerð er hættuleg."

#: diskdrake/interactive.pm:1075
#, c-format
msgid "What type of partitioning?"
msgstr "Hvaða tegund af disksneiðingu?"

#: diskdrake/interactive.pm:1113
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr "Þú þarft að endurræsa áður en breytingar taka gildi"

#: diskdrake/interactive.pm:1122
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Disksneiðatafla drifs %s mun verða skrifuð á disk!"

#: diskdrake/interactive.pm:1148
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Eftir að diskssneið %s hefur verið forsniðin, hafa öll gögn á þessari "
"disksneið tapast"

#: diskdrake/interactive.pm:1153 fs/partitioning.pm:49
#, c-format
msgid "Check bad blocks?"
msgstr "Athuga skemmdar blokkir?"

#: diskdrake/interactive.pm:1167
#, c-format
msgid "Move files to the new partition"
msgstr "Flytja skrár á nýju disksneiðina"

#: diskdrake/interactive.pm:1167
#, c-format
msgid "Hide files"
msgstr "Fela skrár"

#: diskdrake/interactive.pm:1168
#, 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 ""
"Mappan %s inniheldur nú þegar gögn\n"
"(%s)\n"
"\n"
"Þú getur annað hvort fært skrárnar inn á þá disksneið sem verður tengd á "
"þessa möppu, eða skilið þær þarna eftir (sem veldur því að þær verða faldar "
"með innihaldi tengdrar disksneiðar)"

#: diskdrake/interactive.pm:1183
#, c-format
msgid "Moving files to the new partition"
msgstr "Færi skrár á nýju disksneiðina"

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

#: diskdrake/interactive.pm:1191
#, c-format
msgid "Removing %s"
msgstr "Fjarlægi %s"

#: diskdrake/interactive.pm:1205
#, c-format
msgid "partition %s is now known as %s"
msgstr "disksneið %s er nú þekkt sem %s"

#: diskdrake/interactive.pm:1206
#, c-format
msgid "Partitions have been renumbered: "
msgstr "Disksneiðar hafa verið endurnúmeraðar: "

#: diskdrake/interactive.pm:1226 diskdrake/interactive.pm:1288
#, c-format
msgid "Device: "
msgstr "Tæki: "

#: diskdrake/interactive.pm:1227
#, c-format
msgid "Volume label: "
msgstr "Diskauðkenni: "

#: diskdrake/interactive.pm:1228
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS drifstafur: %s (aðeins ágiskun)\n"

#: diskdrake/interactive.pm:1232 diskdrake/interactive.pm:1241
#: diskdrake/interactive.pm:1306
#, c-format
msgid "Type: "
msgstr "Tegund: "

#: diskdrake/interactive.pm:1236
#, c-format
msgid "Name: "
msgstr "Nafn: "

#: diskdrake/interactive.pm:1243
#, c-format
msgid "Start: sector %s\n"
msgstr "Byrja: geiri %s\n"

#: diskdrake/interactive.pm:1244
#, c-format
msgid "Size: %s"
msgstr "Stærð: %s"

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

#: diskdrake/interactive.pm:1248
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Sívalningur %d til %d\n"

#: diskdrake/interactive.pm:1249
#, c-format
msgid "Number of logical extents: %d\n"
msgstr "Fjöldi sýndarsneiða (LV): %d\n"

#: diskdrake/interactive.pm:1250
#, c-format
msgid "Formatted\n"
msgstr "Forsniðinn\n"

#: diskdrake/interactive.pm:1251
#, c-format
msgid "Not formatted\n"
msgstr "Ekki forsniðinn\n"

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

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

#: diskdrake/interactive.pm:1258
#, c-format
msgid ""
"Loopback file(s):\n"
"   %s\n"
msgstr ""
"Sýndartengdar skrár:\n"
"   %s\n"

#: diskdrake/interactive.pm:1259
#, c-format
msgid ""
"Partition booted by default\n"
"    (for MS-DOS boot, not for lilo)\n"
msgstr ""
"Sjálfgefin disksneið ræst\n"
"    (fyrir MS-DOS ræsingu, ekki fyrir LILO)\n"

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

#: diskdrake/interactive.pm:1262
#, c-format
msgid "Chunk size %d KiB\n"
msgstr "Blokkarstærð %d KiB\n"

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

#: diskdrake/interactive.pm:1265
#, c-format
msgid "Loopback file name: %s"
msgstr "Skráarnafn sýndardisks: %s"

#: diskdrake/interactive.pm:1268
#, c-format
msgid ""
"\n"
"Chances are, this partition is\n"
"a Driver partition. You should\n"
"probably leave it alone.\n"
msgstr ""
"\n"
"Líklega er þessi disksneið\n"
"Reklasneið. Þú ættir sennilega\n"
"að láta hana í eiga sig.\n"

#: diskdrake/interactive.pm:1271
#, c-format
msgid ""
"\n"
"This special Bootstrap\n"
"partition is for\n"
"dual-booting your system.\n"
msgstr ""
"\n"
"Þessi sérstaka ræsidisksneið\n"
"er til að geta ræst mismunandi\n"
"kerfi á vélinni þinni.\n"

#: diskdrake/interactive.pm:1280
#, fuzzy, c-format
msgid "Free space on %s (%s)"
msgstr "Laust pláss á %s (%s)"

#: diskdrake/interactive.pm:1289
#, c-format
msgid "Read-only"
msgstr "Ritvarið"

#: diskdrake/interactive.pm:1290
#, c-format
msgid "Size: %s\n"
msgstr "Stærð: %s\n"

#: diskdrake/interactive.pm:1291
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Disksnið: %s sívalningar, %s hausar, %s geirar\n"

#: diskdrake/interactive.pm:1292
#, c-format
msgid "Info: "
msgstr "Upplýsingar: "

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

#: diskdrake/interactive.pm:1294
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tegund disksneiðartöflu: %s\n"

#: diskdrake/interactive.pm:1295
#, c-format
msgid "on channel %d id %d\n"
msgstr "á gagnabraut %d auðk. %d\n"

#: diskdrake/interactive.pm:1338
#, c-format
msgid "Filesystem encryption key"
msgstr "Dulritunarlykill skráakerfis"

#: diskdrake/interactive.pm:1339
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "Veldu dulritunarlykil fyrir skráakerfið"

#: diskdrake/interactive.pm:1342
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Þetta lykilorð er of einfalt (verður að vera minnst %d stafa langt)"

#: diskdrake/interactive.pm:1343
#, c-format
msgid "The encryption keys do not match"
msgstr "Dulritunarlyklarnir eru mismunandi"

#: diskdrake/interactive.pm:1346
#, c-format
msgid "Encryption key"
msgstr "Dulritunarlykill"

#: diskdrake/interactive.pm:1347
#, c-format
msgid "Encryption key (again)"
msgstr "Dulritunarlykill (aftur)"

#: diskdrake/interactive.pm:1349
#, c-format
msgid "Encryption algorithm"
msgstr "Dulritunaralgrím"

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

#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:126 interactive.pm:539
#: interactive/curses.pm:260 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:142 ugtk2.pm:407 ugtk2.pm:509
#: ugtk2.pm:518 ugtk2.pm:791
#, c-format
msgid "Cancel"
msgstr "Hætta við"

#: diskdrake/smbnfs_gtk.pm:164
#, c-format
msgid "Can not login using username %s (bad password?)"
msgstr "Get ekki tengst sem notandi %s (vitlaust lykilorð?)"

#: diskdrake/smbnfs_gtk.pm:168 diskdrake/smbnfs_gtk.pm:177
#, c-format
msgid "Domain Authentication Required"
msgstr "Lénsauðkenningar er þörf"

#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Which username"
msgstr "hvaða notandanafn"

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

#: diskdrake/smbnfs_gtk.pm:178
#, c-format
msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
"Vinsamlega gefðu upp notandanafn, lykilorð og nafn léns til að fá aðgang að "
"þessum miðlara."

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

#: diskdrake/smbnfs_gtk.pm:206
#, c-format
msgid "Search servers"
msgstr "Leita að þjónum"

#: diskdrake/smbnfs_gtk.pm:211
#, c-format
msgid "Search new servers"
msgstr "Leita að nýjum þjónum"

#: do_pkgs.pm:16 do_pkgs.pm:53
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Þarf að setja inn pakkann %s. Viltu setja hann inn?"

#: do_pkgs.pm:19 do_pkgs.pm:40 do_pkgs.pm:56
#, c-format
msgid "Could not install the %s package!"
msgstr "Gat ekki sett inn pakkann %s!"

#: do_pkgs.pm:24 do_pkgs.pm:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Vantar nauðsynlegan pakka %s"

#: do_pkgs.pm:35
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Eftirfarandi pakka þarf að setja inn:\n"

#: do_pkgs.pm:209
#, c-format
msgid "Installing packages..."
msgstr "Set inn pakka..."

#: do_pkgs.pm:255
#, c-format
msgid "Removing packages..."
msgstr "Fjarlægi pakka..."

#: 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 ""
"Það kom upp villa. Engin tæki fundust sem unnt er að búa til ný skráakerfi "
"á. Vinsamlega athugaðu vélbúnaðinn í leit að orsök vandamálsins"

#: fs/any.pm:62 fs/partitioning_wizard.pm:55
#, c-format
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Þú verður að hafa FAT disksneið tengda í /boot/efi"

#: fs/format.pm:60 fs/format.pm:67
#, c-format
msgid "Formatting partition %s"
msgstr "Forsníð disksneið %s"

#: fs/format.pm:64
#, c-format
msgid "Creating and formatting file %s"
msgstr "bý til og forsníð skrá %s"

#: fs/format.pm:117
#, c-format
msgid "I do not know how to format %s in type %s"
msgstr "kann ekki að forsníða %s af tegundinni %s"

#: fs/format.pm:122 fs/format.pm:124
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s forsniðið á %s mistókst"

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

#: fs/mount.pm:79
#, c-format
msgid "Mounting partition %s"
msgstr "Tengi disksneið %s"

#: fs/mount.pm:80
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "tenging disksneiðar %s í möppu %s mistókst"

#: fs/mount.pm:85 fs/mount.pm:102
#, c-format
msgid "Checking %s"
msgstr "Athuga %s"

#: fs/mount.pm:118 partition_table.pm:384
#, c-format
msgid "error unmounting %s: %s"
msgstr "villa við að aftengja %s: %s"

#: fs/mount.pm:133
#, c-format
msgid "Enabling swap partition %s"
msgstr "Virkja diskminni á disksneið %s"

#: fs/mount_options.pm:111
#, c-format
msgid "Use an encrypted file system"
msgstr "Notað dulritað skráakerfi"

#: fs/mount_options.pm:113
#, c-format
msgid "Flush write cache on file close"
msgstr ""

#: fs/mount_options.pm:115
#, c-format
msgid "Enable group disk quota accounting and optionally enforce limits"
msgstr "Virkja disk-kvóta fyrir hópa, og jafnvel fylgja eftir mörkum"

#: fs/mount_options.pm:117
#, 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 ""
"Ekki uppfæra aðgengistíma á þessu skráakerfi\n"
"(t.d. fyrir hraðari aðgengi í fréttaskrár til að herða upp á fréttaþjónum)."

#: fs/mount_options.pm:123
#, fuzzy, 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 ""
"Ekki uppfæra aðgengistíma á þessu skráakerfi\n"
"(t.d. fyrir hraðari aðgengi í fréttaskrár til að herða upp á fréttaþjónum)."

#: fs/mount_options.pm:123
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
"the -a option will not cause the file system to be mounted)."
msgstr ""
"Er aðeins hægt að tengja nema með ákveðinni beiðni\n"
"(þ.e. mount -a skipunin tengir ekki skráakerfið)."

#: fs/mount_options.pm:126
#, c-format
msgid "Do not interpret character or block special devices on the file system."
msgstr "Ekki túlka staf eða blokk-tæki á þessu skráakerfi."

#: fs/mount_options.pm:128
#, 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 ""
"Ekki leyfa keyrslu af neinum forritum frá þessu tengda skráakerfi.\n"
"Þetta gæti verið gagnlegt fyrir miðlara sem hefur tengd skráakerfi\n"
"sem innihalda forrit fyrir aðrar vélargerðir."

#: fs/mount_options.pm:132
#, 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 ""
"Ekki leyfa forritum að setja notanda eða hóp auðkenni\n"
"(Þetta lítur út fyrir að vera öruggt, en er í raun frekar óöruggt\n"
"ef þú hefur suidperl(1) uppsett)"

#: fs/mount_options.pm:136
#, c-format
msgid "Mount the file system read-only."
msgstr "Tengja skráakerfi aðeins til lestrar."

#: fs/mount_options.pm:138
#, c-format
msgid "All I/O to the file system should be done synchronously."
msgstr "Allar aðgerðir á skráakerfinu ættu að vera gerðar í réttri röð."

#: fs/mount_options.pm:140
#, c-format
msgid "Allow every user to mount and umount the file system."
msgstr "Leyfa öllum notendum að tengja og aftengja skráakerfið."

#: fs/mount_options.pm:142
#, c-format
msgid "Allow an ordinary user to mount the file system."
msgstr "Leyfa venjulegum notanda að tengja skráakerfið."

#: fs/mount_options.pm:144
#, c-format
msgid "Enable user disk quota accounting, and optionally enforce limits"
msgstr "Virkja disk-kvóta fyrir notendur, (og jafnvel fylgja eftir mörkum)"

#: fs/mount_options.pm:146
#, c-format
msgid "Support \"user.\" extended attributes"
msgstr "Styðja aukavalkosti \"notanda\""

#: fs/mount_options.pm:148
#, c-format
msgid "Give write access to ordinary users"
msgstr "Veita skrifleyfi til venjulegra notenda"

#: fs/mount_options.pm:150
#, c-format
msgid "Give read-only access to ordinary users"
msgstr "Veita aðeins lestrarleyfi til venjulegra notenda"

#: fs/mount_point.pm:80
#, c-format
msgid "Duplicate mount point %s"
msgstr "Tengipunkturinn %s er nú þegar í notkun"

#: fs/mount_point.pm:95
#, c-format
msgid "No partition available"
msgstr "Engin tiltæk disksneið"

#: fs/mount_point.pm:98
#, c-format
msgid "Scanning partitions to find mount points"
msgstr "Leita á disksneiðum að tengipunktum"

#: fs/mount_point.pm:105
#, c-format
msgid "Choose the mount points"
msgstr "Veldu tengipunktana"

#: fs/partitioning.pm:46
#, c-format
msgid "Choose the partitions you want to format"
msgstr "Veldu þær disksneiðar sem á að forsníða"

#: fs/partitioning.pm:76
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can lose data)"
msgstr ""
"Tókst ekki að athuga skráakerfi %s. Viltu gera við villurnar? (varúð, þú "
"getur tapað gögnum)"

#: fs/partitioning.pm:79
#, c-format
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Ekki nægjanlegt diskminni fyrir innsetningu.  Bættu við það"

#: fs/partitioning_wizard.pm:47
#, 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 ""
"Þú verður að hafa rótarsneið fyrir Linux. Búðu því annað hvort\n"
"til rótarsneið eða veldu sneið sem nú þegar er til á disknum.\n"
"Veldu síðan ``Tengipunktur'' og sláðu inn `/'"

#: fs/partitioning_wizard.pm:52
#, c-format
msgid ""
"You do not have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
"Þú hefur enga diskminnis-sneið\n"
"\n"
"Halda samt áfram?"

#: fs/partitioning_wizard.pm:80
#, c-format
msgid "Use free space"
msgstr "Nota laust pláss"

#: fs/partitioning_wizard.pm:82
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Ekki nóg laust pláss til að búa til nýjar disksneiðar"

#: fs/partitioning_wizard.pm:90
#, c-format
msgid "Use existing partitions"
msgstr "Nota núverandi disksneiðar"

#: fs/partitioning_wizard.pm:92
#, c-format
msgid "There is no existing partition to use"
msgstr "það eru engar núverandi disksneiðar til að nota"

#: fs/partitioning_wizard.pm:99
#, c-format
msgid "Use the Microsoft Windows® partition for loopback"
msgstr "Nota Microsoft Windows® disksneiðina fyrir sýndardisk"

#: fs/partitioning_wizard.pm:102
#, c-format
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Hvaða disksneið vilt þú nota fyrir Linux4Win?"

#: fs/partitioning_wizard.pm:104
#, c-format
msgid "Choose the sizes"
msgstr "Veldu stærðir"

#: fs/partitioning_wizard.pm:105
#, c-format
msgid "Root partition size in MB: "
msgstr "Stærð rótar-disksneiðar í MB: "

#: fs/partitioning_wizard.pm:106
#, c-format
msgid "Swap partition size in MB: "
msgstr "Stærð diskminnis í MB: "

#: fs/partitioning_wizard.pm:115
#, c-format
msgid "There is no FAT partition to use as loopback (or not enough space left)"
msgstr ""
"Það er engin FAT disksneið sem hægt er að nota sem sýndardisk (eða ekki nóg "
"pláss laust)"

#: fs/partitioning_wizard.pm:122
#, c-format
msgid "Use the free space on the Microsoft Windows® partition"
msgstr "Nota laust pláss á Windows disksneiðinni"

#: fs/partitioning_wizard.pm:124
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Hvaða disksneið viltu breyta stærð á?"

#: fs/partitioning_wizard.pm:138
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
"the following error occurred: %s"
msgstr ""
"Forritið sem breytir stærð FAT disk-sneiðarinnar getur ekki unnið með þessa "
"disksneið, \n"
"eftirfarandi villa kom upp: %s"

#: fs/partitioning_wizard.pm:141
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "Reikna stærð Microsoft Windows® disksneiðar"

#: fs/partitioning_wizard.pm:148
#, 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 ""
"Microsoft Windows® disk-sneiðin þín er of sundurslitin. Endurræstu tölvuna "
"þína undir Microsoft Windows®, keyrðu ``defrag'' forritið, endurræstu síðan "
"Mandriva Linux uppsetninguna."

#: fs/partitioning_wizard.pm:151
#, 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 ""
"AÐVÖRUN\n"
"\n"
"\n"
"DrakX ætlar nú að breyta stærð Windows sneiðarinnar.\n"
"\n"
"\n"
"Athugið: Þetta getur verið hættulegt. Ef þú ert ekki búin(n) að því, þá "
"ættir þú fyrst að hætta við uppsetninguna, keyra \"chkdsk c:\"\n"
"frá skipanalínunni (DOS) (Varúð: það er ekki nóg að keyra myndræna forritið "
"\"scandisk\", verið viss um að nota \"chkdisk\" úr skipanalínunni!), Þið "
"gætuð einnig keyrt defrag. Endurræsið síðan uppsetninguna. Þú ættir einnig "
"að taka afrit af gögnunum þínum.\n"
"\n"
"\n"
"Þegar þú ert viss, sláðu á \"%s\" til að halda áfram."

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: fs/partitioning_wizard.pm:160 interactive.pm:538 interactive/curses.pm:263
#: ugtk2.pm:511
#, c-format
msgid "Next"
msgstr "Næsta"

#: fs/partitioning_wizard.pm:167
#, fuzzy, c-format
msgid "Partitionning"
msgstr "Forsníða diska"

#: fs/partitioning_wizard.pm:167
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr ""
"Hvaða stærð viltu skilja eftir fyrir Microsoft Windows® á disksneið %s?"

#: fs/partitioning_wizard.pm:164
#, c-format
msgid "Size"
msgstr "Stærð"

#: fs/partitioning_wizard.pm:173
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Breyta stærð Microsoft Windows® skráakerfis"

#: fs/partitioning_wizard.pm:178
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Breyting á FAT mistókst: %s"

#: fs/partitioning_wizard.pm:193
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr "Það er engin FAT disksneið til að breyta stærð á (eða ekki nóg pláss)"

#: fs/partitioning_wizard.pm:198
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Fjarlægja Microsoft Windows®"

#: fs/partitioning_wizard.pm:198
#, c-format
msgid "Erase and use entire disk"
msgstr "Eyða og nota allan diskinn"

#: fs/partitioning_wizard.pm:200
#, c-format
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Þú hefur fleiri en einn disk. Hvar viltu setja upp Linux?"

#: fs/partitioning_wizard.pm:206
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Allar disksneiðar og öll gögn á diski %s tapast"

#: fs/partitioning_wizard.pm:217
#, c-format
msgid "Custom disk partitioning"
msgstr "Sérsniðin disksneiðing"

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

#: fs/partitioning_wizard.pm:226
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, do not forget to save using `w'"
msgstr ""
"Þú getur nú skipt %s.\n"
"Þegar þú ert búin(n), gleymdu ekki að vista með `w'"

#: fs/partitioning_wizard.pm:266
#, c-format
msgid "I can not find any room for installing"
msgstr "Get ekki fundið neitt pláss fyrir uppsetningu"

#: fs/partitioning_wizard.pm:270
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX ráðgjafinn fann eftirfarandi lausnir:"

#: fs/partitioning_wizard.pm:278
#, c-format
msgid "Partitioning failed: %s"
msgstr "Skipting disks í sneiðar mistókst: %s"

#: fs/type.pm:367
#, c-format
msgid "You can not use JFS for partitions smaller than 16MB"
msgstr "Þú getur ekki notað JFS á disksneiðar minni en 16MB"

#: fs/type.pm:368
#, c-format
msgid "You can not use ReiserFS for partitions smaller than 32MB"
msgstr "Þú getur ekki notað ReiserFs á disksneiðar minni en 32MB"

#: fsedit.pm:27
#, c-format
msgid "with /usr"
msgstr "með /usr"

#: fsedit.pm:32
#, c-format
msgid "server"
msgstr "netþjónn"

#: fsedit.pm:116
#, c-format
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr "Skynjaði BIOS RAID hugbúnað á diskum %s. Virkja það?"

#: fsedit.pm:230
#, 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 ""
"Ég get ekki lesið disksneiðatöflu á tæki %s, hún er of skemmd fyrir mig :(\n"
"Ég mun reyna að halda áfram með því að hreinsa skemmdar disksneiðar\n"
"(ÖLL GÖGN tapast!).\n"
"Hin lausnin er að leyfa DrakX ekki að breyta disksneiðatöflunni.\n"
"(villan er %s)\n"
"\n"
"Viltu eyða öllum þessum disksneiðum?\n"

#: fsedit.pm:403
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Heiti tengipunkta verða að byrja á /"

#: fsedit.pm:404
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Heiti tengipunkta eiga aðeins að innihalda bókstafi og tölur"

#: fsedit.pm:405
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Það er þegar disksneið með tengipunktinn %s\n"

#: fsedit.pm:409
#, 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 ""
"Þú hefur valið að nota RAID hugbúnað til að stjórna rótarsneið (/).\\ Enginn "
"ræsistjóri ræður við þetta án sérstakrar /boot sneiðar.\n"
"Vinsamlega passaðu uppá að bæta við sneið fyrir /boot"

#: fsedit.pm:415
#, c-format
msgid ""
"You can not use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr ""
"Þú getur ekki notað sýndardisk (LVM) á tengipunkti %s því hann spannar marga "
"raunverulega diska"

#: fsedit.pm:417
#, 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 ""
"Þú hefur valið sýndardisk (LVM) sem rót (/).\n"
"Ræsistjórinn getur ekki notað þetta þegar sýndardiskurinn spannar marga "
"raunverulega diska.\n"
"Þú ættir að búa til /boot disksneið fyrst"

#: fsedit.pm:421 fsedit.pm:423
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Þessi mappa ætti að vera í rótar-skráakerfinu"

#: fsedit.pm:425 fsedit.pm:427
#, c-format
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
"Þú þarft raunverulegt skráakerfi (ext2/ext3, reiserfs, xfs, eða jfs) fyrir "
"þennan tengipunkt\n"

#: fsedit.pm:429
#, c-format
msgid "You can not use an encrypted file system for mount point %s"
msgstr "Þú getur ekki notað dulritað skráakerfi á tengipunkt %s"

#: fsedit.pm:493
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Ekki nægilegt pláss til sjálfvirkrar úthlutunar"

#: fsedit.pm:495
#, c-format
msgid "Nothing to do"
msgstr "Ekkert að gera"

#: harddrake/data.pm:62
#, c-format
msgid "Floppy"
msgstr "Disklingadrif"

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

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

#: harddrake/data.pm:97
#, c-format
msgid "CDROM"
msgstr "CDROM"

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

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

#: harddrake/data.pm:127
#, c-format
msgid "Tape"
msgstr "Segulband"

#: harddrake/data.pm:138
#, c-format
msgid "AGP controllers"
msgstr "AGP stýringar"

#: harddrake/data.pm:147
#, c-format
msgid "Videocard"
msgstr "Skjákort"

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

#: harddrake/data.pm:164
#, c-format
msgid "Tvcard"
msgstr "Sjónvarpskort"

#: harddrake/data.pm:174
#, c-format
msgid "Other MultiMedia devices"
msgstr "Önnur margmiðlunartæki"

#: harddrake/data.pm:183
#, c-format
msgid "Soundcard"
msgstr "Hljóðkort"

#: harddrake/data.pm:196
#, c-format
msgid "Webcam"
msgstr "Vefmyndavél"

#: harddrake/data.pm:210
#, c-format
msgid "Processors"
msgstr "Örgjörvar"

#: harddrake/data.pm:220
#, c-format
msgid "ISDN adapters"
msgstr "ISDN spjöld"

#: harddrake/data.pm:231
#, c-format
msgid "USB sound devices"
msgstr "USB hljóðtæki"

#: harddrake/data.pm:240
#, c-format
msgid "Radio cards"
msgstr "Útvarpskort"

#: harddrake/data.pm:249
#, c-format
msgid "ATM network cards"
msgstr "ATM netkort"

#: harddrake/data.pm:258
#, c-format
msgid "WAN network cards"
msgstr "Víðnetskort"

#: harddrake/data.pm:267
#, c-format
msgid "Bluetooth devices"
msgstr "Blátannartæki"

#: harddrake/data.pm:276
#, c-format
msgid "Ethernetcard"
msgstr "Netkort"

#: harddrake/data.pm:293
#, c-format
msgid "Modem"
msgstr "Mótald"

#: harddrake/data.pm:303
#, c-format
msgid "ADSL adapters"
msgstr "ADSL spjöld"

#: harddrake/data.pm:315
#, c-format
msgid "Memory"
msgstr "Minni"

#: harddrake/data.pm:324
#, c-format
msgid "Printer"
msgstr "Prentari"

#. -PO: these are joysticks controllers:
#: harddrake/data.pm:338
#, c-format
msgid "Game port controllers"
msgstr "Leikjastýritæki"

#: harddrake/data.pm:347
#, c-format
msgid "Joystick"
msgstr "Stýripinnar"

#: harddrake/data.pm:357
#, c-format
msgid "SATA controllers"
msgstr "SATA stýringar"

#: harddrake/data.pm:366
#, c-format
msgid "RAID controllers"
msgstr "RAID stýringar"

#: harddrake/data.pm:376
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "(E)IDE/ATA stýringar"

#: harddrake/data.pm:386
#, c-format
msgid "USB Mass Storage Devices"
msgstr "USB gagnageymslumiðill"

#: harddrake/data.pm:395
#, c-format
msgid "Card readers"
msgstr "Kortalesarar"

#: harddrake/data.pm:404
#, c-format
msgid "Firewire controllers"
msgstr "Firewire stýringar"

#: harddrake/data.pm:413
#, c-format
msgid "PCMCIA controllers"
msgstr "PCMCIA stýringar"

#: harddrake/data.pm:422
#, c-format
msgid "SCSI controllers"
msgstr "SCSI stýringar"

#: harddrake/data.pm:431
#, c-format
msgid "USB controllers"
msgstr "USB stýringar"

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

#: harddrake/data.pm:449
#, c-format
msgid "SMBus controllers"
msgstr "SMBus stýringar"

#: harddrake/data.pm:458
#, c-format
msgid "Bridges and system controllers"
msgstr "Brýr og kerfisstýringar"

#: harddrake/data.pm:469
#, c-format
msgid "Keyboard"
msgstr "Lyklaborð"

#: harddrake/data.pm:482
#, c-format
msgid "Tablet and touchscreen"
msgstr "Teiknitöflur og snertiskjáir"

#: harddrake/data.pm:491
#, c-format
msgid "Mouse"
msgstr "Mús"

#: harddrake/data.pm:505
#, c-format
msgid "Biometry"
msgstr ""

#: harddrake/data.pm:513
#, c-format
msgid "UPS"
msgstr "Varaaflgjafi"

#: harddrake/data.pm:522
#, c-format
msgid "Scanner"
msgstr "Myndskanni"

#: harddrake/data.pm:533
#, c-format
msgid "Unknown/Others"
msgstr "Óþekkt/annað"

#: harddrake/data.pm:561
#, c-format
msgid "cpu # "
msgstr "cpu # "

#: harddrake/sound.pm:201
#, c-format
msgid "Please Wait... Applying the configuration"
msgstr "Augnablik... Framkvæmi stillingar"

#: harddrake/sound.pm:238
#, c-format
msgid "No alternative driver"
msgstr "Enginn aukarekill"

#: harddrake/sound.pm:239
#, c-format
msgid ""
"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
"currently uses \"%s\""
msgstr ""
"Það er enginn þekktur OSS/ALSA aukarekill fyrir hljóðkortið þitt (%s) sem nú "
"notar \"%s\""

#: harddrake/sound.pm:245
#, c-format
msgid "Sound configuration"
msgstr "Hljóðuppsetning"

#: harddrake/sound.pm:247
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
"sound card (%s)."
msgstr ""
"Hér getur þú valið annan rekil (annað hvort OSS eða ALSA) fyrir hljóðkortið "
"þitt (%s)."

#. -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:252
#, c-format
msgid ""
"\n"
"\n"
"Your card currently use the %s\"%s\" driver (default driver for your card is "
"\"%s\")"
msgstr ""
"\n"
"\n"
"Kortið þitt notar rekilinn %s\"%s\" (sjálfgefið fyrir kortið þitt er \"%s\")"

#: harddrake/sound.pm:254
#, 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) var fyrsta hljóðkerfis-forritunar-viðmótið. Það er "
"óháð stýrikerfum (og til á flestum UNIX(tm) kerfum) en hefur mjög einfalt og "
"takmarkað viðmót.\n"
"Þess utan verða allir OSS reklar að finna upp hjólið.\n"
"\n"
"ALSA (Advanced Linux Sound Architecture) er hljóðkerfi byggt á einingum\n"
"sem styður mjög mörg ISA, USB og PCI kort.\n"
"\n"
"Það býður einnig upp á miklu þróaðra forritunarumhverfi en OSS.\n"
"\n"
"Til að nota ALSA, þá getur þú annað hvort notað:\n"
"- gamla OSS viðmótshermirinn\n"
"- nýja ALSA forritunarviðmótið sem býður upp á aukna möguleika en krefst "
"notkunar á ALSA forritunarsafninu.\n"

#: harddrake/sound.pm:268 harddrake/sound.pm:357
#, c-format
msgid "Driver:"
msgstr "Rekill:"

#: harddrake/sound.pm:277
#, c-format
msgid "Trouble shooting"
msgstr "Vandamálaleit"

#: harddrake/sound.pm:285
#, 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 ""
"Gamli \"%s\" rekillinn er á svörtum lista.\n"
"\n"
"Hann hefur valdið kerfisvillum þegar honum er afhlaðið.\n"
"\n"
"Nýi \"%s\" rekillinn verður aðeins notaður við næstu ræsingu."

#: harddrake/sound.pm:293
#, c-format
msgid "No open source driver"
msgstr "Enginn \"frjáls hugbúnaðar\" rekill"

#: harddrake/sound.pm:294
#, c-format
msgid ""
"There's no free driver for your sound card (%s), but there's a proprietary "
"driver at \"%s\"."
msgstr ""
"Það er enginn \"frjáls\" rekill fyrir hljóðkortið þitt (%s) en það er til "
"rekill framleiðanda á \"%s\"."

#: harddrake/sound.pm:297
#, c-format
msgid "No known driver"
msgstr "Enginn þekktur rekill"

#: harddrake/sound.pm:298
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "Það er enginn þekktur rekill fyrir hljóðkortið þitt (%s)"

#: harddrake/sound.pm:302
#, c-format
msgid "Unknown driver"
msgstr "Óþekktur rekill"

#: harddrake/sound.pm:303
#, c-format
msgid "Error: The \"%s\" driver for your sound card is unlisted"
msgstr "Villa: rekillinn \"%s\" er ekki á listanum"

#: harddrake/sound.pm:317
#, c-format
msgid "Sound trouble shooting"
msgstr "Vandamálaleit hljóðkorta"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: harddrake/sound.pm:320
#, c-format
msgid ""
"The classic bug sound tester is to run the following commands:\n"
"\n"
"\n"
"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card 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're configured to be run on\n"
"initlevel 3\n"
"\n"
"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
msgstr ""
"Klassísk hljóðvilluprófun er að keyra eftirfarandi skipanir:\n"
"\n"
"\n"
"- \"lspcidrake -v | fgrep AUDIO\" segir þér hvaða rekill hljóðkortið\n"
"notar sjálfgefið\n"
"\n"
"- \"grep sound-slot /etc/modprobe.conf\" segir þér hvaða rekill er nú í\n"
"notkun af hljóðkerfinu\n"
"\n"
"- \"/sbin/lsmod\" sýnir þér hvor þessum rekli hefur þegar verið hlaðið\n"
"inn eða ekki\n"
"\n"
"- \"/sbin/chkconfig --list sound\" og \"/sbin/chkconfig --list alsa\" segir\n"
"þér hvort hljóð og ALSA þjónustur séu stilltar til að ræsa á vinnslustigi 3\n"
"\n"
"- \"aumix -q\" segir þér hvort slökkt sé hljóði í hljóðblandara\n"
"\n"
"- \"/sbin/fuser -v /dev/dsp\" segir þér hvaða forrit er að nota "
"hljóðkortið.\n"

#: harddrake/sound.pm:346
#, c-format
msgid "Let me pick any driver"
msgstr "Leyfðu mér að velja rekil"

#: harddrake/sound.pm:349
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Velja einhvern rekil"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: harddrake/sound.pm:352
#, 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 ""
"Ef þú heldur að þú vitir hvaða rekill sé réttur fyrir kortið þitt\n"
"þá getur þú valið einn í listanum hér að ofan\n"
"\n"
"Núverandi rekill fyrir \"%s\" hljóðkortið er \"%s\""

#: harddrake/v4l.pm:12
#, c-format
msgid "Auto-detect"
msgstr "Finna sjálfkrafa"

#: harddrake/v4l.pm:97 harddrake/v4l.pm:285 harddrake/v4l.pm:337
#, c-format
msgid "Unknown|Generic"
msgstr "Óþekkt|almennt"

#: harddrake/v4l.pm:130
#, c-format
msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr "Óþekkt|CPH06X (bt878) [margir framleiðendur]"

#: harddrake/v4l.pm:131
#, c-format
msgid "Unknown|CPH06X (bt878) [many vendors]"
msgstr "Óþekkt|CPH06X (bt878) [margir framleiðendur]"

#: harddrake/v4l.pm:474
#, c-format
msgid ""
"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
"detect the rights parameters.\n"
"If your card is misdetected, you can force the right tuner and card types "
"here. Just select your tv card parameters if needed."
msgstr ""
"GNU/Linux 'bttv' einingin finnur sjálfkrafa uppsetningu á flestum nútíma "
"sjónvarpskortum.\n"
"Ef kortið þitt er ekki sett rétt upp þá getur þú stillt móttakarann og "
"korttegundir hér. Veldu viðföng fyrir kortið þitt ef þess er þörf."

#: harddrake/v4l.pm:477
#, c-format
msgid "Card model:"
msgstr "Kort tegund:"

#: harddrake/v4l.pm:478
#, c-format
msgid "Tuner type:"
msgstr "Útvarpstegund:"

#: interactive.pm:125 interactive.pm:538 interactive/curses.pm:263
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:142 interactive/stdio.pm:143 ugtk2.pm:413 ugtk2.pm:511
#: ugtk2.pm:791 ugtk2.pm:814
#, c-format
msgid "Ok"
msgstr "Í lagi"

#: interactive.pm:224 modules/interactive.pm:71 ugtk2.pm:790 wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Já"

#: interactive.pm:224 modules/interactive.pm:71 ugtk2.pm:790 wizards.pm:156
#, c-format
msgid "No"
msgstr "Nei"

#: interactive.pm:258
#, c-format
msgid "Choose a file"
msgstr "Veldu skrá"

#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Add"
msgstr "Bæta við"

#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Modify"
msgstr "Breyta"

#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Remove"
msgstr "Fjarlægja"

#: interactive.pm:538 interactive/curses.pm:263 ugtk2.pm:511
#, c-format
msgid "Finish"
msgstr "Ljúka"

#: interactive.pm:539 interactive/curses.pm:260 ugtk2.pm:509
#, c-format
msgid "Previous"
msgstr "Fyrra"

#: interactive/stdio.pm:29 interactive/stdio.pm:148
#, c-format
msgid "Bad choice, try again\n"
msgstr "Rangt val, reyndu aftur\n"

#: interactive/stdio.pm:30 interactive/stdio.pm:149
#, c-format
msgid "Your choice? (default %s) "
msgstr "Þitt val? (sjálfgefið %s) "

#: interactive/stdio.pm:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
"Svæði sem þú verður að fylla:\n"
"%s"

#: interactive/stdio.pm:70
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Þitt val? (0/1, sjálfgefið `%s') "

#: interactive/stdio.pm:94
#, c-format
msgid "Button `%s': %s"
msgstr "Hnappur `%s': %s"

#: interactive/stdio.pm:95
#, c-format
msgid "Do you want to click on this button?"
msgstr "Viltu smella á þennan hnapp?"

#: interactive/stdio.pm:104
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Þitt val? (sjálfgefið `%s'%s) "

#: interactive/stdio.pm:104
#, c-format
msgid " enter `void' for void entry"
msgstr " sláið inn 'void' fyrir autt val"

#: interactive/stdio.pm:122
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Það er úr mörgu að velja (%s).\n"

#: interactive/stdio.pm:125
#, 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 ""
"Vinsamlega sláðu inn fyrstu töluna í tugnum sem þú vilt sýsla með,\n"
"eða sláðu á Enter til að halda áfram.\n"
"Þitt val? "

#: interactive/stdio.pm:138
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
"=> Athugið, merki breyttist:\n"
"%s"

#: interactive/stdio.pm:145
#, c-format
msgid "Re-submit"
msgstr "Endursenda"

#. -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:193
#, c-format
msgid "default:LTR"
msgstr "default:LTR"

#: lang.pm:210
#, c-format
msgid "Andorra"
msgstr "Andorra"

#: lang.pm:211 timezone.pm:213
#, c-format
msgid "United Arab Emirates"
msgstr "Sameinuðu Arabísku Furstadæmin"

#: lang.pm:212
#, c-format
msgid "Afghanistan"
msgstr "Afganistan"

#: lang.pm:213
#, c-format
msgid "Antigua and Barbuda"
msgstr "Antigua og Barbuda"

#: lang.pm:214
#, c-format
msgid "Anguilla"
msgstr "Anguilla"

#: lang.pm:215
#, c-format
msgid "Albania"
msgstr "Albanía"

#: lang.pm:216
#, c-format
msgid "Armenia"
msgstr "Armenía"

#: lang.pm:217
#, c-format
msgid "Netherlands Antilles"
msgstr "Holland, Antilleyjar"

#: lang.pm:218
#, c-format
msgid "Angola"
msgstr "Angóla"

#: lang.pm:219
#, c-format
msgid "Antarctica"
msgstr "Suðurskautslandið"

#: lang.pm:220 timezone.pm:258
#, c-format
msgid "Argentina"
msgstr "Argentína"

#: lang.pm:221
#, c-format
msgid "American Samoa"
msgstr "Ameríku Samóeyjar"

#: lang.pm:222 mirror.pm:11 timezone.pm:216
#, c-format
msgid "Austria"
msgstr "Austurríki"

#: lang.pm:223 mirror.pm:10 timezone.pm:254
#, c-format
msgid "Australia"
msgstr "Ástralía"

#: lang.pm:224
#, c-format
msgid "Aruba"
msgstr "Arúba"

#: lang.pm:225
#, c-format
msgid "Azerbaijan"
msgstr "Asjerbæjan"

#: lang.pm:226
#, c-format
msgid "Bosnia and Herzegovina"
msgstr "Bosnía og Herzegónía"

#: lang.pm:227
#, c-format
msgid "Barbados"
msgstr "Barbados"

#: lang.pm:228 timezone.pm:198
#, c-format
msgid "Bangladesh"
msgstr "Bangladesh"

#: lang.pm:229 mirror.pm:12 timezone.pm:218
#, c-format
msgid "Belgium"
msgstr "Belgía"

#: lang.pm:230
#, c-format
msgid "Burkina Faso"
msgstr "Búrkina Fasó"

#: lang.pm:231 timezone.pm:219
#, c-format
msgid "Bulgaria"
msgstr "Búlgaría"

#: lang.pm:232
#, c-format
msgid "Bahrain"
msgstr "Bahrain"

#: lang.pm:233
#, c-format
msgid "Burundi"
msgstr "Búrúndi"

#: lang.pm:234
#, c-format
msgid "Benin"
msgstr "Benín"

#: lang.pm:235
#, c-format
msgid "Bermuda"
msgstr "Bermúda"

#: lang.pm:236
#, c-format
msgid "Brunei Darussalam"
msgstr "Brúnei Darussalam"

#: lang.pm:237
#, c-format
msgid "Bolivia"
msgstr "Bólivía"

#: lang.pm:238 mirror.pm:13 timezone.pm:259
#, c-format
msgid "Brazil"
msgstr "Brasilía"

#: lang.pm:239
#, c-format
msgid "Bahamas"
msgstr "Bahamaeyjar"

#: lang.pm:240
#, c-format
msgid "Bhutan"
msgstr "Bútan"

#: lang.pm:241
#, c-format
msgid "Bouvet Island"
msgstr "Bouvet eyja"

#: lang.pm:242
#, c-format
msgid "Botswana"
msgstr "Botswana"

#: lang.pm:243 timezone.pm:217
#, c-format
msgid "Belarus"
msgstr "Hvítarússland"

#: lang.pm:244
#, c-format
msgid "Belize"
msgstr "Belís"

#: lang.pm:245 mirror.pm:14 timezone.pm:248
#, c-format
msgid "Canada"
msgstr "Kanada"

#: lang.pm:246
#, c-format
msgid "Cocos (Keeling) Islands"
msgstr "Kókos (Keeling) eyjar"

#: lang.pm:247
#, c-format
msgid "Congo (Kinshasa)"
msgstr "Kongó (Kinshasa)"

#: lang.pm:248
#, c-format
msgid "Central African Republic"
msgstr "Miðafríkulýðveldið"

#: lang.pm:249
#, c-format
msgid "Congo (Brazzaville)"
msgstr "Kongó (brassaville)"

#: lang.pm:250 mirror.pm:38 timezone.pm:242
#, c-format
msgid "Switzerland"
msgstr "Sviss"

#: lang.pm:251
#, c-format
msgid "Cote d'Ivoire"
msgstr "Fílabeinsströndin"

#: lang.pm:252
#, c-format
msgid "Cook Islands"
msgstr "Cook eyjar"

#: lang.pm:253 timezone.pm:260
#, c-format
msgid "Chile"
msgstr "Chíle"

#: lang.pm:254
#, c-format
msgid "Cameroon"
msgstr "Kamerún"

#: lang.pm:255 timezone.pm:199
#, c-format
msgid "China"
msgstr "Kína"

#: lang.pm:256
#, c-format
msgid "Colombia"
msgstr "Kólumbía"

#: lang.pm:257 mirror.pm:15
#, c-format
msgid "Costa Rica"
msgstr "Kosta Ríka"

#: lang.pm:258
#, c-format
msgid "Serbia & Montenegro"
msgstr "Serbía og Svartfjallaland"

#: lang.pm:259
#, c-format
msgid "Cuba"
msgstr "Kúba"

#: lang.pm:260
#, c-format
msgid "Cape Verde"
msgstr "Grænhöfðaeyjar"

#: lang.pm:261
#, c-format
msgid "Christmas Island"
msgstr "Jólaeyjar"

#: lang.pm:262
#, c-format
msgid "Cyprus"
msgstr "Kýpur"

#: lang.pm:263 mirror.pm:16 timezone.pm:220
#, c-format
msgid "Czech Republic"
msgstr "Tékkland"

#: lang.pm:264 mirror.pm:21 timezone.pm:225
#, c-format
msgid "Germany"
msgstr "Þýskaland"

#: lang.pm:265
#, c-format
msgid "Djibouti"
msgstr "Djibútí"

#: lang.pm:266 mirror.pm:17 timezone.pm:221
#, c-format
msgid "Denmark"
msgstr "Danmörk"

#: lang.pm:267
#, c-format
msgid "Dominica"
msgstr "Dominiká"

#: lang.pm:268
#, c-format
msgid "Dominican Republic"
msgstr "Dóminíska lýðveldið"

#: lang.pm:269
#, c-format
msgid "Algeria"
msgstr "Algería"

#: lang.pm:270
#, c-format
msgid "Ecuador"
msgstr "Ekvador"

#: lang.pm:271 mirror.pm:18 timezone.pm:222
#, c-format
msgid "Estonia"
msgstr "Eistland"

#: lang.pm:272
#, c-format
msgid "Egypt"
msgstr "Egyptaland"

#: lang.pm:273
#, c-format
msgid "Western Sahara"
msgstr "Vestur Sahara"

#: lang.pm:274
#, c-format
msgid "Eritrea"
msgstr "Erítrea"

#: lang.pm:275 mirror.pm:36 timezone.pm:240
#, c-format
msgid "Spain"
msgstr "Spánn"

#: lang.pm:276
#, c-format
msgid "Ethiopia"
msgstr "Eþíópía"

#: lang.pm:277 mirror.pm:19 timezone.pm:223
#, c-format
msgid "Finland"
msgstr "Finnland"

#: lang.pm:278
#, c-format
msgid "Fiji"
msgstr "Fíjí"

#: lang.pm:279
#, c-format
msgid "Falkland Islands (Malvinas)"
msgstr "Falklandseyjar (Malvínas)"

#: lang.pm:280
#, c-format
msgid "Micronesia"
msgstr "Míkrónesía"

#: lang.pm:281
#, c-format
msgid "Faroe Islands"
msgstr "Færeyjar"

#: lang.pm:282 mirror.pm:20 timezone.pm:224
#, c-format
msgid "France"
msgstr "Frakkland"

#: lang.pm:283
#, c-format
msgid "Gabon"
msgstr "Gabon"

#: lang.pm:284 timezone.pm:244
#, c-format
msgid "United Kingdom"
msgstr "Stóra Bretland"

#: lang.pm:285
#, c-format
msgid "Grenada"
msgstr "Grenada"

#: lang.pm:286
#, c-format
msgid "Georgia"
msgstr "Georgía"

#: lang.pm:287
#, c-format
msgid "French Guiana"
msgstr "Franska Gínea"

#: lang.pm:288
#, c-format
msgid "Ghana"
msgstr "Gana"

#: lang.pm:289
#, c-format
msgid "Gibraltar"
msgstr "Gíbraltar"

#: lang.pm:290
#, c-format
msgid "Greenland"
msgstr "Grænland"

#: lang.pm:291
#, c-format
msgid "Gambia"
msgstr "Gambía"

#: lang.pm:292
#, c-format
msgid "Guinea"
msgstr "Gínea"

#: lang.pm:293
#, c-format
msgid "Guadeloupe"
msgstr "Gvadalúp"

#: lang.pm:294
#, c-format
msgid "Equatorial Guinea"
msgstr "Miðbaugs Gínea"

#: lang.pm:295 mirror.pm:22 timezone.pm:226
#, c-format
msgid "Greece"
msgstr "Grikkland"

#: lang.pm:296
#, c-format
msgid "South Georgia and the South Sandwich Islands"
msgstr "Suður Georgía og suður samlokueyjar"

#: lang.pm:297 timezone.pm:249
#, c-format
msgid "Guatemala"
msgstr "Gvatemala"

#: lang.pm:298
#, c-format
msgid "Guam"
msgstr "Gúam"

#: lang.pm:299
#, c-format
msgid "Guinea-Bissau"
msgstr "Gínea-Bissáu"

#: lang.pm:300
#, c-format
msgid "Guyana"
msgstr "Gvíana"

#: lang.pm:301
#, c-format
msgid "Hong Kong SAR (China)"
msgstr "Hong Kong SAR (Kína)"

#: lang.pm:302
#, c-format
msgid "Heard and McDonald Islands"
msgstr "Heard og McDonalds eyjar"

#: lang.pm:303
#, c-format
msgid "Honduras"
msgstr "Hondúras"

#: lang.pm:304
#, c-format
msgid "Croatia"
msgstr "Króatía"

#: lang.pm:305
#, c-format
msgid "Haiti"
msgstr "Haíti"

#: lang.pm:306 mirror.pm:23 timezone.pm:227
#, c-format
msgid "Hungary"
msgstr "Ungverjaland"

#: lang.pm:307 timezone.pm:202
#, c-format
msgid "Indonesia"
msgstr "Indónesía"

#: lang.pm:308 mirror.pm:24 timezone.pm:228
#, c-format
msgid "Ireland"
msgstr "Írland"

#: lang.pm:309 mirror.pm:25 timezone.pm:204
#, c-format
msgid "Israel"
msgstr "Ísrael"

#: lang.pm:310 timezone.pm:201
#, c-format
msgid "India"
msgstr "Indland"

#: lang.pm:311
#, c-format
msgid "British Indian Ocean Territory"
msgstr "Bresku indíueyjar"

#: lang.pm:312
#, c-format
msgid "Iraq"
msgstr "Írak"

#: lang.pm:313 timezone.pm:203
#, c-format
msgid "Iran"
msgstr "Íran"

#: lang.pm:314
#, c-format
msgid "Iceland"
msgstr "Ísland"

#: lang.pm:315 mirror.pm:26 timezone.pm:229
#, c-format
msgid "Italy"
msgstr "Ítalía"

#: lang.pm:316
#, c-format
msgid "Jamaica"
msgstr "Jamaíka"

#: lang.pm:317
#, c-format
msgid "Jordan"
msgstr "Jórdanía"

#: lang.pm:318 mirror.pm:27 timezone.pm:205
#, c-format
msgid "Japan"
msgstr "Japan"

#: lang.pm:319
#, c-format
msgid "Kenya"
msgstr "Kenía"

#: lang.pm:320
#, c-format
msgid "Kyrgyzstan"
msgstr "Kirgistan"

#: lang.pm:321
#, c-format
msgid "Cambodia"
msgstr "Kambódía"

#: lang.pm:322
#, c-format
msgid "Kiribati"
msgstr "Kiribati"

#: lang.pm:323
#, c-format
msgid "Comoros"
msgstr "Kómoros"

#: lang.pm:324
#, c-format
msgid "Saint Kitts and Nevis"
msgstr "Sankti Kitts og Nevis"

#: lang.pm:325
#, c-format
msgid "Korea (North)"
msgstr "Kórea (norður)"

#: lang.pm:326 timezone.pm:206
#, c-format
msgid "Korea"
msgstr "Kórea"

#: lang.pm:327
#, c-format
msgid "Kuwait"
msgstr "Kúvæt"

#: lang.pm:328
#, c-format
msgid "Cayman Islands"
msgstr "Keyman eyjar"

#: lang.pm:329
#, c-format
msgid "Kazakhstan"
msgstr "Kasakstan"

#: lang.pm:330
#, c-format
msgid "Laos"
msgstr "Laos"

#: lang.pm:331
#, c-format
msgid "Lebanon"
msgstr "Líbanon"

#: lang.pm:332
#, c-format
msgid "Saint Lucia"
msgstr "Sankti Lúsía"

#: lang.pm:333
#, c-format
msgid "Liechtenstein"
msgstr "Liechtenstein"

#: lang.pm:334
#, c-format
msgid "Sri Lanka"
msgstr "Srí Lanka"

#: lang.pm:335
#, c-format
msgid "Liberia"
msgstr "Líbería"

#: lang.pm:336
#, c-format
msgid "Lesotho"
msgstr "Lesótó"

#: lang.pm:337 timezone.pm:230
#, c-format
msgid "Lithuania"
msgstr "Litháen"

#: lang.pm:338 timezone.pm:231
#, c-format
msgid "Luxembourg"
msgstr "Lúxemborg"

#: lang.pm:339
#, c-format
msgid "Latvia"
msgstr "Lettland"

#: lang.pm:340
#, c-format
msgid "Libya"
msgstr "Líbýa"

#: lang.pm:341
#, c-format
msgid "Morocco"
msgstr "Marokkó"

#: lang.pm:342
#, c-format
msgid "Monaco"
msgstr "Mónakó"

#: lang.pm:343
#, c-format
msgid "Moldova"
msgstr "Moldavía"

#: lang.pm:344
#, c-format
msgid "Madagascar"
msgstr "Madagaskar"

#: lang.pm:345
#, c-format
msgid "Marshall Islands"
msgstr "Marshall eyjar"

#: lang.pm:346
#, c-format
msgid "Macedonia"
msgstr "Makedónía"

#: lang.pm:347
#, c-format
msgid "Mali"
msgstr "Malí"

#: lang.pm:348
#, c-format
msgid "Myanmar"
msgstr "Myanmar"

#: lang.pm:349
#, c-format
msgid "Mongolia"
msgstr "Mongólía"

#: lang.pm:350
#, c-format
msgid "Northern Mariana Islands"
msgstr "Norður Maríanaeyjar"

#: lang.pm:351
#, c-format
msgid "Martinique"
msgstr "Martiník"

#: lang.pm:352
#, c-format
msgid "Mauritania"
msgstr "Máritanía"

#: lang.pm:353
#, c-format
msgid "Montserrat"
msgstr "Montserrat"

#: lang.pm:354
#, c-format
msgid "Malta"
msgstr "Malta"

#: lang.pm:355
#, c-format
msgid "Mauritius"
msgstr "Máritus"

#: lang.pm:356
#, c-format
msgid "Maldives"
msgstr "Maldíví"

#: lang.pm:357
#, c-format
msgid "Malawi"
msgstr "Malaví"

#: lang.pm:358 timezone.pm:250
#, c-format
msgid "Mexico"
msgstr "Mexíkó"

#: lang.pm:359 timezone.pm:207
#, c-format
msgid "Malaysia"
msgstr "Malasía"

#: lang.pm:360
#, c-format
msgid "Mozambique"
msgstr "Mósambík"

#: lang.pm:361
#, c-format
msgid "Namibia"
msgstr "Namibía"

#: lang.pm:362
#, c-format
msgid "New Caledonia"
msgstr "Nýja Kaledónía"

#: lang.pm:363
#, c-format
msgid "Niger"
msgstr "Níger"

#: lang.pm:364
#, c-format
msgid "Norfolk Island"
msgstr "Norfolk eyjar"

#: lang.pm:365
#, c-format
msgid "Nigeria"
msgstr "Nígería"

#: lang.pm:366
#, c-format
msgid "Nicaragua"
msgstr "Nígarakúa"

#: lang.pm:367 mirror.pm:28 timezone.pm:232
#, c-format
msgid "Netherlands"
msgstr "Holland"

#: lang.pm:368 mirror.pm:30 timezone.pm:233
#, c-format
msgid "Norway"
msgstr "Noregur"

#: lang.pm:369
#, c-format
msgid "Nepal"
msgstr "Nepal"

#: lang.pm:370
#, c-format
msgid "Nauru"
msgstr "Nárú"

#: lang.pm:371
#, c-format
msgid "Niue"
msgstr "Niue"

#: lang.pm:372 mirror.pm:29 timezone.pm:255
#, c-format
msgid "New Zealand"
msgstr "Nýja Sjáland"

#: lang.pm:373
#, c-format
msgid "Oman"
msgstr "Óman"

#: lang.pm:374
#, c-format
msgid "Panama"
msgstr "Panama"

#: lang.pm:375
#, c-format
msgid "Peru"
msgstr "Perú"

#: lang.pm:376
#, c-format
msgid "French Polynesia"
msgstr "Franska Pólínesía"

#: lang.pm:377
#, c-format
msgid "Papua New Guinea"
msgstr "Papúa Nýja-Gínea"

#: lang.pm:378 timezone.pm:208
#, c-format
msgid "Philippines"
msgstr "Filippseyjar"

#: lang.pm:379
#, c-format
msgid "Pakistan"
msgstr "Pakistan"

#: lang.pm:380 mirror.pm:31 timezone.pm:234
#, c-format
msgid "Poland"
msgstr "Pólland"

#: lang.pm:381
#, c-format
msgid "Saint Pierre and Miquelon"
msgstr "Sankti Pierre og Miquelon"

#: lang.pm:382
#, c-format
msgid "Pitcairn"
msgstr "Pitcairn"

#: lang.pm:383
#, c-format
msgid "Puerto Rico"
msgstr "Púertó Ríko"

#: lang.pm:384
#, c-format
msgid "Palestine"
msgstr "Palestína"

#: lang.pm:385 mirror.pm:32 timezone.pm:235
#, c-format
msgid "Portugal"
msgstr "Portúgal"

#: lang.pm:386
#, c-format
msgid "Paraguay"
msgstr "Paragvæ"

#: lang.pm:387
#, c-format
msgid "Palau"
msgstr "Palá"

#: lang.pm:388
#, c-format
msgid "Qatar"
msgstr "Kvatar"

#: lang.pm:389
#, c-format
msgid "Reunion"
msgstr "Reunion"

#: lang.pm:390 timezone.pm:236
#, c-format
msgid "Romania"
msgstr "Rúmenía"

#: lang.pm:391 mirror.pm:33
#, c-format
msgid "Russia"
msgstr "Rússland"

#: lang.pm:392
#, c-format
msgid "Rwanda"
msgstr "Rúanda"

#: lang.pm:393
#, c-format
msgid "Saudi Arabia"
msgstr "Saudiarabía"

#: lang.pm:394
#, c-format
msgid "Solomon Islands"
msgstr "Salómon eyjar"

#: lang.pm:395
#, c-format
msgid "Seychelles"
msgstr "Seychelles"

#: lang.pm:396
#, c-format
msgid "Sudan"
msgstr "Súdan"

#: lang.pm:397 mirror.pm:37 timezone.pm:241
#, c-format
msgid "Sweden"
msgstr "Svíþjóð"

#: lang.pm:398 timezone.pm:209
#, c-format
msgid "Singapore"
msgstr "Singapúr"

#: lang.pm:399
#, c-format
msgid "Saint Helena"
msgstr "Sankti Helena"

#: lang.pm:400 timezone.pm:239
#, c-format
msgid "Slovenia"
msgstr "Slóvenía"

#: lang.pm:401
#, c-format
msgid "Svalbard and Jan Mayen Islands"
msgstr "Svalbarði og Jan Mayen"

#: lang.pm:402 mirror.pm:34 timezone.pm:238
#, c-format
msgid "Slovakia"
msgstr "Slóvakía"

#: lang.pm:403
#, c-format
msgid "Sierra Leone"
msgstr "Síera Leóne"

#: lang.pm:404
#, c-format
msgid "San Marino"
msgstr "San Marínó"

#: lang.pm:405
#, c-format
msgid "Senegal"
msgstr "Senegal"

#: lang.pm:406
#, c-format
msgid "Somalia"
msgstr "Sómalía"

#: lang.pm:407
#, c-format
msgid "Suriname"
msgstr "Súrínam"

#: lang.pm:408
#, c-format
msgid "Sao Tome and Principe"
msgstr "Saó Tóme og Prinsípe"

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

#: lang.pm:410
#, c-format
msgid "Syria"
msgstr "Sýrland"

#: lang.pm:411
#, c-format
msgid "Swaziland"
msgstr "Svasiland"

#: lang.pm:412
#, c-format
msgid "Turks and Caicos Islands"
msgstr "Turks og Kaikós eyjar"

#: lang.pm:413
#, c-format
msgid "Chad"
msgstr "Chad"

#: lang.pm:414
#, c-format
msgid "French Southern Territories"
msgstr "Frönsku suðureyjar"

#: lang.pm:415
#, c-format
msgid "Togo"
msgstr "Tógó"

#: lang.pm:416 mirror.pm:40 timezone.pm:211
#, c-format
msgid "Thailand"
msgstr "Tæland"

#: lang.pm:417
#, c-format
msgid "Tajikistan"
msgstr "Tadsíkistan"

#: lang.pm:418
#, c-format
msgid "Tokelau"
msgstr "Tokelau"

#: lang.pm:419
#, c-format
msgid "East Timor"
msgstr "Austur Tímor"

#: lang.pm:420
#, c-format
msgid "Turkmenistan"
msgstr "Túrkmenistan"

#: lang.pm:421
#, c-format
msgid "Tunisia"
msgstr "Túnis"

#: lang.pm:422
#, c-format
msgid "Tonga"
msgstr "Tonga"

#: lang.pm:423 timezone.pm:212
#, c-format
msgid "Turkey"
msgstr "Tyrkland"

#: lang.pm:424
#, c-format
msgid "Trinidad and Tobago"
msgstr "Trínidad og Tóbagó"

#: lang.pm:425
#, c-format
msgid "Tuvalu"
msgstr "Túvaú"

#: lang.pm:426 mirror.pm:39 timezone.pm:210
#, c-format
msgid "Taiwan"
msgstr "Tævan"

#: lang.pm:427 timezone.pm:195
#, c-format
msgid "Tanzania"
msgstr "Tansanía"

#: lang.pm:428 timezone.pm:243
#, c-format
msgid "Ukraine"
msgstr "Úkraína"

#: lang.pm:429
#, c-format
msgid "Uganda"
msgstr "Úganda"

#: lang.pm:430
#, c-format
msgid "United States Minor Outlying Islands"
msgstr "Bandaríkin, smærri eyjar"

#: lang.pm:431 mirror.pm:41 timezone.pm:251
#, c-format
msgid "United States"
msgstr "Bandaríkin"

#: lang.pm:432
#, c-format
msgid "Uruguay"
msgstr "Úrúgvæ"

#: lang.pm:433
#, c-format
msgid "Uzbekistan"
msgstr "Úsbekistan"

#: lang.pm:434
#, c-format
msgid "Vatican"
msgstr "Vatíkanið"

#: lang.pm:435
#, c-format
msgid "Saint Vincent and the Grenadines"
msgstr "Sankti Vincent og Grenadín"

#: lang.pm:436
#, c-format
msgid "Venezuela"
msgstr "Venesúela"

#: lang.pm:437
#, c-format
msgid "Virgin Islands (British)"
msgstr "Jómfrúreyjar (Breskt)"

#: lang.pm:438
#, c-format
msgid "Virgin Islands (U.S.)"
msgstr "Jómfrúreyjar (USA)"

#: lang.pm:439
#, c-format
msgid "Vietnam"
msgstr "Víetnam"

#: lang.pm:440
#, c-format
msgid "Vanuatu"
msgstr "Vanuatú"

#: lang.pm:441
#, c-format
msgid "Wallis and Futuna"
msgstr "Wallis og Futuna"

#: lang.pm:442
#, c-format
msgid "Samoa"
msgstr "Samóa"

#: lang.pm:443
#, c-format
msgid "Yemen"
msgstr "Jemen"

#: lang.pm:444
#, c-format
msgid "Mayotte"
msgstr "Mayotte"

#: lang.pm:445 mirror.pm:35 timezone.pm:194
#, c-format
msgid "South Africa"
msgstr "Suður Afríka"

#: lang.pm:446
#, c-format
msgid "Zambia"
msgstr "Sambía"

#: lang.pm:447
#, c-format
msgid "Zimbabwe"
msgstr "Simbave"

#: lang.pm:1144
#, c-format
msgid "Welcome to %s"
msgstr "Velkomin(n) að %s"

#: lvm.pm:83
#, c-format
msgid "Moving used physical extents to other physical volumes failed"
msgstr "Ekki tókst að flytja disksneiðar yfir á aðra raundiska"

#: lvm.pm:135
#, c-format
msgid "Physical volume %s is still in use"
msgstr "Raundiskur %s er enn í notkun"

#: lvm.pm:145
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Fjarlægðu sýndardiskana fyrst\n"

#: lvm.pm:178
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr "Ræsistjórinn getur ekki unnið með /boot sem spannar marga diska"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: messages.pm:10
#, c-format
msgid ""
"Introduction\n"
"\n"
"The operating system and the different components available in the Mandriva "
"Linux distribution \n"
"shall be called the \"Software Products\" hereafter. The Software Products "
"include, but are not \n"
"restricted to, the set of programs, methods, rules and documentation related "
"to the operating \n"
"system and the different components of the Mandriva Linux distribution.\n"
"\n"
"\n"
"1. License Agreement\n"
"\n"
"Please read this document carefully. This document is a license agreement "
"between you and  \n"
"Mandriva S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
"explicitly \n"
"accept and fully agree to conform to the terms and conditions of this "
"License. \n"
"If you disagree with any portion of the License, you are not allowed to "
"install, duplicate or use \n"
"the Software Products. \n"
"Any attempt to install, duplicate or use the Software Products in a manner "
"which does not comply \n"
"with the terms and conditions of this License is void and will terminate "
"your rights under this \n"
"License. Upon termination of the License,  you must immediately destroy all "
"copies of the \n"
"Software Products.\n"
"\n"
"\n"
"2. Limited Warranty\n"
"\n"
"The Software Products and attached documentation are provided \"as is\", "
"with no warranty, to the \n"
"extent permitted by law.\n"
"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
"be liable for any special,\n"
"incidental, direct or indirect damages whatsoever (including without "
"limitation damages for loss of \n"
"business, interruption of business, financial loss, legal fees and penalties "
"resulting from a court \n"
"judgment, or any other consequential loss) arising out of  the use or "
"inability to use the Software \n"
"Products, even if Mandriva S.A. has been advised of the possibility or "
"occurrence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
"COUNTRIES\n"
"\n"
"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
"no circumstances, be \n"
"liable for any special, incidental, direct or indirect damages whatsoever "
"(including without \n"
"limitation damages for loss of business, interruption of business, financial "
"loss, legal fees \n"
"and penalties resulting from a court judgment, or any other consequential "
"loss) arising out \n"
"of the possession and use of software components or arising out of  "
"downloading software components \n"
"from one of Mandriva Linux sites  which are prohibited or restricted in some "
"countries by local laws.\n"
"This limited liability applies to, but is not restricted to, the strong "
"cryptography components \n"
"included in the Software Products.\n"
"\n"
"\n"
"3. The GPL License and Related Licenses\n"
"\n"
"The Software Products consist of components created by different persons or "
"entities.  Most \n"
"of these components are governed under the terms and conditions of the GNU "
"General Public \n"
"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
"licenses allow you to use, \n"
"duplicate, adapt or redistribute the components which they cover. Please "
"read carefully the terms \n"
"and conditions of the license agreement for each component before using any "
"component. Any question \n"
"on a component license should be addressed to the component author and not "
"to Mandriva.\n"
"The programs developed by Mandriva S.A. are governed by the GPL License. "
"Documentation written \n"
"by Mandriva S.A. is governed by a specific license. Please refer to the "
"documentation for \n"
"further details.\n"
"\n"
"\n"
"4. Intellectual Property Rights\n"
"\n"
"All rights to the components of the Software Products belong to their "
"respective authors and are \n"
"protected by intellectual property and copyright laws applicable to software "
"programs.\n"
"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
"as a whole or in \n"
"parts, by all means and for all purposes.\n"
"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
"Mandriva S.A.  \n"
"\n"
"\n"
"5. Governing Laws \n"
"\n"
"If any portion of this agreement is held void, illegal or inapplicable by a "
"court judgment, this \n"
"portion is excluded from this contract. You remain bound by the other "
"applicable sections of the \n"
"agreement.\n"
"The terms and conditions of this License are governed by the Laws of "
"France.\n"
"All disputes on the terms of this license will preferably be settled out of "
"court. As a last \n"
"resort, the dispute will be referred to the appropriate Courts of Law of "
"Paris - France.\n"
"For any question on this document, please contact Mandriva S.A.  \n"
msgstr ""
"Inngangur\n"
"\n"
"Stýrikerfið og ýmsir mismunandi hlutar þess í Mandriva Linux dreifingunni "
"hér eftir kallað \n"
"\"Hugbúnaðar-einingar\".Hugbúnaðar-einingarnar innihalda, en eru ekki "
"takmarkaðar við, \n"
"safn forrita, aðferðir, reglur og handbækur tengdar stýrikerfinu og "
"mismunandi hlutum \n"
"Mandriva Linux dreifingarinnar.\n"
"\n"
"\n"
"1. Hugbúnaðarleyfi\n"
"\n"
"Vinsamlega lestu þetta skjal vandlega. Þetta skjal er samningur milli þín og "
"Mandriva S.A.\n"
"sem tekur tillit til Hugbúnaðar-eininga. Með því að setja upp, fjölfalda eða "
"nota Hugbúnaðar-einingarnar \n"
"á einhvern hátt, þá hefur þú samþykkt að fylgja skilmálum og takmörkunum "
"þessa leyfis. \n"
"Ef þú ert ekki samþykkur einhverjum hluta leyfisins, þá hefur þú ekki leyfi "
"til að \n"
"setja upp, fjölfalda eða nota Hugbúnaðar-einingarnar. \n"
"Allar aðgerðir til að setja upp, fjölfalda eða nota Hugbúnaðar-einingar á "
"einhvern þann hátt \n"
"sem ekki fylgir skilmálum þessa leyfis eru ógildar og munu binda endi á "
"leyfi þitt. \n"
"Við lok þessa samnings, verður þú að eyðileggja öll afrit af Hugbúnaðar-"
"einingunum.\n"
"\n"
"\n"
"2. Takmörkun ábyrgðar\n"
"\n"
"Hugbúnaðar-einingarnar og fylgjandi handbækur eru látnar í té \"eins og þær "
"koma fyrir\" \n"
"án nokkurrar ábyrgðar, eins og unnt er innan takmörkunar laga. Mandriva S.A. "
"mun ekki undir neinum \n"
"kringumstæðum - að þeim mörkum sem leyft er samkvæmt lögum - vera á nokkurn "
"hátt ábyrgt fyrir sértækum, \n"
"óvæntum, beinum eða óbeinum skaða af nokkru tagi (einnig án nokkurrar "
"ábyrgðar á truflun eða stöðvun á \n"
"rekstri, fjárhagstapi, málskostnaði, sektum eða öðru afleiddu tapi) vegna "
"notkunar Hugbúnaðar-eininganna, \n"
"jafnvel þó Mandriva S.A. hafi verið varað við tilviki eða möguleika á þess "
"háttar afleiðingum.\n"
"\n"
"TAKMÖRKUÐ ÁBYRGÐ TENGD ÞVÍ AÐ HAFA UNDIR HÖNDUM EÐA NOTA ÓLEYFILEGAN "
"HUGBÚNAÐ Í SUMUM LÖNDUM\n"
"\n"
"Að þeim mörkum sem leyft er samkvæmt lögum, mun Mandriva S.A. ekki undir "
"neinum kringumstæðum, \n"
"vera á nokkurn hátt ábyrgt fyrir sértækum, óvæntum, beinum eða óbeinum skaða "
"af nokkru tagi \n"
"(einnig án nokkurrar ábyrgðar á truflun eða stöðvun á rekstri, fjárhagstapi, "
"málskostnaði, \n"
"sektum eða öðru afleiddu tapi) vegna þess að einhver hafi undir höndum eða "
"noti Hugbúnaðar-eininganar, \n"
"heldur ekki afleiddum aðgerðum vegna þess að hugbúnaðar einingarnar sem séu "
"bannaðar eða takmarkaðar \n"
"í viðkomandi löndum hafi verið sóttar frá Mandriva Linux miðlurum. Þessar "
"takmarkanir eiga við um, \n"
"en eru ekki takmarkaðar við dulritunar-einingar sem eru innifaldar í "
"Hugbúnaðar-einingum.\n"
"\n"
"3. GPL leyfið og tengd leyfi\n"
"\n"
"Hugbúnaðar-einingarnar samanstanda af einingum framleiddum af mismunandi "
"fólki og samtökum. \n"
"Flest af Þessum einingum er framleitt undir skilmálum og takmörkunum \"GNU "
"General Public Licence\"\n"
", héreftir kallað \"GPL\", eða svipaðra leyfa. Flest þessarra leyfa leyfa "
"þér að nota fjölfalda,\n"
"breyta og endurdreifa einingum sem þau gilda um. Vinsamlega lestu vandlega "
"skilmála og takmarkanir \n"
"á leyfi hverrar einingar fyrir sig áður en þú notar viðkomandi einingu. \n"
"Allar spurningar um leyfi hverrar einingar ætti að vera beint til höfunda "
"einingarinnar en ekki til Mandriva.\n"
"Forrit sem eru hönnuð af Mandriva S.A. fylgja GPL leyfi. Handbækur sem "
"skrifaðar eru af \n"
"fylgja sérstöku leyfi. Vinsamlega lesið vandlega þau leyfi.\n"
"\n"
"\n"
"4. Höfundaréttur\n"
"\n"
"Allur réttur hverrar einingar tilheyra höfundum eininganna og eru verndaðar "
"með höfundaréttarlögum \n"
"eins og þau eiga við um hugbúnað. Mandriva S.A. tekur sér rétt til að breyta "
"eða aðlaga \n"
"Hugbúnaðar-einingar, að hluta eða í heild, með öllum og til \"Mandriva\", "
"\"Mandriva Linux\" og tengd vörumerki eru skráð vörumerki Mandriva S.A.  \n"
"\n"
"5. Ríkjandi lög \n"
"\n"
"Ef einhver hluti af þessum samningi er ógildur, ólöglegur eða ótækur "
"samkvæmt úrskurði dómstóla,\n"
"þá fellur sá hluti úr þessum samningi. Þú ert enn bundinn af öðrum hlutum "
"samningsins.\n"
"Skilmálar og takmarkanir þessa leyfis eru samkvæmt frönskum lögum.\n"
"Öll mál sem kunna að koma upp um gildi þessa leyfis ætti helst að leysa utan "
"dómstóla. \n"
"Sem síðasta úrræði þá verður öllum deilum um þennann samning beint til "
"dómstóla í París - Frakklandi.\n"
"Öllum spurningum um þennann samning ætti að vera beint til Mandriva S.A.  \n"

#: messages.pm:90
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
"Software included may be covered by patents in your country. For example, "
"the\n"
"MP3 decoders included may require a licence for further usage (see\n"
"http://www.mp3licensing.com for more details). If you are unsure if a "
"patent\n"
"may be applicable to you, check your local laws."
msgstr ""
"Aðvörun: Frjáls og opinn hugbúnaður er ekki endilega laus við\n"
"einkaleyfi, og það getur verið að opinn hugbúnaður sé háður\n"
"einkaleyfum í þínu landi. Til dæmis er MP3 afþjöppunarhugbúnaður\n"
"háður einkaleyfum í ýmsum löndum.\n"
"(sjá nánar á http://www.mp3licensing.com) ef þú ert ekki viss\n"
"um einkaleyfi athugaðu þá hjá einkaleyfisstofu landsins."

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: messages.pm:98
#, c-format
msgid ""
"\n"
"Warning\n"
"\n"
"Please read carefully the terms below. If you disagree with any\n"
"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
"to continue the installation without using these media.\n"
"\n"
"\n"
"Some components contained in the next CD media are not governed\n"
"by the GPL License or similar agreements. Each such component is then\n"
"governed by the terms and conditions of its own specific license. \n"
"Please read carefully and comply with such specific licenses before \n"
"you use or redistribute the said components. \n"
"Such licenses will in general prevent the transfer,  duplication \n"
"(except for backup purposes), redistribution, reverse engineering, \n"
"de-assembly, de-compilation or modification of the component. \n"
"Any breach of agreement will immediately terminate your rights under \n"
"the specific license. Unless the specific license terms grant you such\n"
"rights, you usually cannot install the programs on more than one\n"
"system, or adapt it to be used on a network. In doubt, please contact \n"
"directly the distributor or editor of the component. \n"
"Transfer to third parties or copying of such components including the \n"
"documentation is usually forbidden.\n"
"\n"
"\n"
"All rights to the components of the next CD media belong to their \n"
"respective authors and are protected by intellectual property and \n"
"copyright laws applicable to software programs.\n"
msgstr ""
"\n"
"Aðvörun\n"
"\n"
"Vinsamlega lestu vandlega skilmálana hér að neðan. Ef þú ert ekki\n"
"sátt(ur) við einhvern hluta þess þá mátt þú ekki setja inn næsta\n"
"geisladisk. Ýttu á 'Neita' til að halda áfram uppsetningu á þess að\n"
"nota þennan miðil.\n"
"\n"
"\n"
"Sumt af þeim hugbúnaði sem er á næsta geisladiski er ekki dreift\n"
"samkvæmt GPL eða sambærilegum leyfum. Hver og einn af þessum\n"
"hugbúnaði er með sína eigin notkunarskilmála. Vinsamlega lestu\n"
"þá vandlega og samþykktu þá sérstöku skilmála áður en þú notar\n"
"eða dreifir umræddum hugbúnaði.\n"
"Þessi leyfi munu almennt takmarka flutning, afritun (nema til geymslu),\n"
"endurdreifingu, rannsókn á vinnslu kerfis, afkóðun, afþýðingu eða\n"
"breytingu á hugbúnaðinum. Allar vanefndir á þessum skilmálum munu\n"
"sjálfkrafa binda endi á leyfi þitt til að nota hugbúnaðinn. Nema "
"sérstaklega\n"
"sé tekið fram mátt þú ekki setja hugbúnaðinn upp á fleiri en einni vél,\n"
"eða breyta þannig að hann sé nothæfur á netkerfi. Ef í vafa vinsamlega\n"
"hafðu samband við dreifingaraðila eða höfund hugbúnaðarins.\n"
"Flutningur til þriðja aðila eða afritun af þessum hugbúnaði eða\n"
"handbókum er venjulega ekki leyfður.\n"
"\n"
"\n"
"Allur réttur hugbúnaðar á næsta geisladiski er í höndum höfunda\n"
"hvers hugbúnaðar fyrir sig og er varin af höfundarréttarlögum\n"
"og lögum um hugbúnað.\n"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: messages.pm:131
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press Enter to reboot.\n"
"\n"
"\n"
"For information on fixes which are available for this release of Mandriva "
"Linux,\n"
"consult the Errata available from:\n"
"\n"
"\n"
"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
"install chapter of the Official Mandriva Linux User's Guide."
msgstr ""
"Til hamingju! Innsetningu er lokið.\n"
"Taktu disklinginn eða geisladiskinn úr drifinu og sláðu á ENTER.\n"
"\n"
"\n"
"Viðbætur og/eða lagfæringar á göllum sem gætu verið til\n"
"staðar í þessari útgáfu af Mandriva Linux má finna á \n"
"\n"
"\n"
"%s\n"
"\n"
"\n"
"Frekari upplýsingar um hvernig á að stilla vélina eftir innsetninguna er að\n"
"finna í viðeigandi kafla í Official Mandriva Linux User's Guide bókinni."

#: modules/interactive.pm:19
#, c-format
msgid "This driver has no configuration parameter!"
msgstr "Þessi rekill hefur engin stillingar-viðföng!"

#: modules/interactive.pm:22
#, c-format
msgid "Module configuration"
msgstr "Uppsetning eininga"

#: modules/interactive.pm:22
#, c-format
msgid "You can configure each parameter of the module here."
msgstr "Þú getur stillt öll viðföng einingarinnar hér."

#: modules/interactive.pm:63
#, c-format
msgid "Found %s interfaces"
msgstr "Fann %s tengi"

#: modules/interactive.pm:64
#, c-format
msgid "Do you have another one?"
msgstr "Er kannski eitt enn í vélinni?"

#: modules/interactive.pm:65
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Eru einhver %s tengi í tölvunni?"

#: modules/interactive.pm:71
#, c-format
msgid "See hardware info"
msgstr "Skoðaðu vélbúnaðarupplýsingar"

#: modules/interactive.pm:82
#, c-format
msgid "Installing driver for USB controller"
msgstr "Set inn rekil fyrir USB stýringu"

#: modules/interactive.pm:83
#, c-format
msgid "Installing driver for firewire controller %s"
msgstr "Set inn rekil fyrir firewire stýringu %s"

#: modules/interactive.pm:84
#, c-format
msgid "Installing driver for hard drive controller %s"
msgstr "Set inn rekil fyrir diskstýringu %s"

#: modules/interactive.pm:85
#, c-format
msgid "Installing driver for ethernet controller %s"
msgstr "Set inn rekil fyrir ethernet-kortið %s"

#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
#: modules/interactive.pm:96
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Set inn rekil fyrir %s kortið %s"

#: modules/interactive.pm:110
#, c-format
msgid ""
"You may now provide options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
"Þú getur núna gefið upp viðföng fyrir eininguna %s.\n"
"Athugið að vistföng eru gefin upp með formerki 0x eins og '0x123'"

#: modules/interactive.pm:116
#, c-format
msgid ""
"You may now provide options to module %s.\n"
"Options are in format ``name=value name2=value2 ...''.\n"
"For instance, ``io=0x300 irq=7''"
msgstr ""
"Þú getur núna gefið upp viðföng fyrir eininguna %s.\n"
"Viðföng eru gefin upp sem ``viðfang=gildi viðfang2=gildi2 ...''.\n"
"Til dæmis: ``io=0x300 irq=7''"

#: modules/interactive.pm:118
#, c-format
msgid "Module options:"
msgstr "Stillingar kjarnaeininga:"

#. -PO: the %s is the driver type (scsi, network, sound,...)
#: modules/interactive.pm:131
#, c-format
msgid "Which %s driver should I try?"
msgstr "Hvaða %s rekil viltu prófa?"

#: modules/interactive.pm:140
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
"properly, although it normally works fine without them. Would you like to "
"specify\n"
"extra options for it or allow the driver to probe your machine for the\n"
"information it needs? Occasionally, probing will hang a computer, but it "
"should\n"
"not cause any damage."
msgstr ""
"Í sumum tilfellum þarf rekillinn %s auka viðföng svo hann virki rétt,\n"
" þó hann virki vel í flestum tilfellum án þeirra.  Viltu setja inn auka\n"
" viðföng eða leyfa reklinum sjálfum að leita að þeim upplýsingum sem\n"
" hann þarf?  Stundum frystir sjálfvirk stilling vélina en það ætti ekki\n"
"að skemma neitt."

#: modules/interactive.pm:144
#, c-format
msgid "Autoprobe"
msgstr "Stilla sjálfvirkt"

#: modules/interactive.pm:144
#, c-format
msgid "Specify options"
msgstr "Stilla handvirkt"

#: modules/interactive.pm:156
#, c-format
msgid ""
"Loading module %s failed.\n"
"Do you want to try again with other parameters?"
msgstr ""
"Innsetning á einingu %s mistókst.\n"
"Viltu prófa aftur með ólík viðföng?"

#: partition_table.pm:390
#, c-format
msgid "mount failed: "
msgstr "tókst ekki að tengja: "

#: partition_table.pm:500
#, c-format
msgid "Extended partition not supported on this platform"
msgstr "Framlengdar disksneiðar ekki studdar af þessu kerfi"

#: partition_table.pm:518
#, c-format
msgid ""
"You have a hole in your partition table but I can not use it.\n"
"The only solution is to move your primary partitions to have the hole next "
"to the extended partitions."
msgstr ""
"Það er gat í sneiðatöflunni þinni sem ekki er hægt að nota.\n"
"Eina lausnin er að færa aðalsneiðar svo að gatið verði við hliðina á "
"framlengdri disksneið."

#: partition_table.pm:597
#, c-format
msgid "Error reading file %s"
msgstr "Villa við lestur úr skránni %s"

#: partition_table.pm:604
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Villa við lestur úr skránni %s: %s"

#: partition_table.pm:606
#, c-format
msgid "Bad backup file"
msgstr "Skemmd afritsskrá"

#: partition_table.pm:626
#, c-format
msgid "Error writing to file %s"
msgstr "Villa við að skrifa í skrána %s"

#: partition_table/raw.pm:264
#, c-format
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
"It means writing anything on the disk will end up with random, corrupted "
"data."
msgstr ""
"Eitthvað slæmt er að gerast á disknum þínum.\n"
"Féll á prófi þar sem athugað var samræmi á \n"
"gögnum á disknum\n"
"Það þýðir að allt sem þú skrifar á diskinn verður\n"
"líklega rangt þegar það er lesið aftur."

#: raid.pm:42
#, c-format
msgid "Can not add a partition to _formatted_ RAID %s"
msgstr "Get ekki bætt við sneið á _forsniðinn_ RAID %s"

#: raid.pm:150
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ekki nógu margar disksneiðar fyrir RAID %d\n"

#: scanner.pm:95
#, c-format
msgid "Could not create directory /usr/share/sane/firmware!"
msgstr "Gat ekki búið til skrána /usr/share/sane/firmware!"

#: scanner.pm:106
#, c-format
msgid "Could not create link /usr/share/sane/%s!"
msgstr "Gat ekki búið til tengingu /usr/share/sane/%s!"

#: scanner.pm:113
#, c-format
msgid "Could not copy firmware file %s to /usr/share/sane/firmware!"
msgstr "Gat ekki afritað vélbúnaðarskrá %s til /usr/share/sane/firmware!"

#: scanner.pm:120
#, c-format
msgid "Could not set permissions of firmware file %s!"
msgstr "Gat ekki sett heimildir á vélbúnaðarskrá %s!"

#: scanner.pm:199
#, c-format
msgid "Scannerdrake"
msgstr "Scannerdrake"

#: scanner.pm:200
#, c-format
msgid "Could not install the packages needed to share your scanner(s)."
msgstr "Gat ekki sett inn pakka sem þarf til að miðla skannanum þínum."

#: scanner.pm:201
#, c-format
msgid "Your scanner(s) will not be available for non-root users."
msgstr "Skanninn þinn verður ekki aðgengilegur nema fyrir kerfisstjóra."

#: security/help.pm:11
#, fuzzy, c-format
msgid "Accept bogus IPv4 error messages."
msgstr "Taka á móti röngum IPv4 villuskeytum"

#: security/help.pm:13
#, fuzzy, c-format
msgid "Accept broadcasted icmp echo."
msgstr "Taka á móti útvörpuðu \"icmp echo\""

#: security/help.pm:15
#, fuzzy, c-format
msgid "Accept icmp echo."
msgstr "Taka á móti \"icmp echo\""

#: security/help.pm:17
#, fuzzy, c-format
msgid "Allow autologin."
msgstr "Leyfa/Hafna sjálfvirka innskráningu."

#. -PO: here "ALL" is a value in a pull-down menu; translate it the same as "ALL" is
#: security/help.pm:21
#, fuzzy, c-format
msgid ""
"If set to \"ALL\", /etc/issue and /etc/issue.net are allowed to exist.\n"
"\n"
"If set to \"None\", no issues are allowed.\n"
"\n"
"Else only /etc/issue is allowed."
msgstr ""
"Ef skilgreint sem \"ALLT\", þá mega /etc/issue og /etc/issue.net vera til.\n"
"\n"
"Ef skilgreint sem \"ENGAR\", þá eru engar issue skrár leyfðar.\n"
"\n"
"Annars er /etc/issue leyft."

#: security/help.pm:27
#, fuzzy, c-format
msgid "Allow reboot by the console user."
msgstr "Leyfa/Banna enduræsingu af notanda á stjórnskjá."

#: security/help.pm:29
#, fuzzy, c-format
msgid "Allow remote root login."
msgstr "Leyfa \"root\" innstimplun yfir net"

#: security/help.pm:31
#, fuzzy, c-format
msgid "Allow direct root login."
msgstr "Leyfa/banna beina innskráningu kerfisstjóra."

#: security/help.pm:33
#, fuzzy, c-format
msgid ""
"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr ""
"Leyfa/Banna lista af notendum kerfisins í innskráningar-glugga (kdm og gdm)."

#: security/help.pm:35
#, fuzzy, c-format
msgid ""
"Allow to export display when\n"
"passing from the root account to the other users.\n"
"\n"
"See pam_xauth(8) for more details.'"
msgstr ""
"Leyfa/Banna útflutning skjás þegar\n"
"flutt er frá kerfisstjóra til annara notanda.\n"
"\n"
"Sjá meiri upplýsingar í pam_xauth(8).'"

#: security/help.pm:40
#, fuzzy, c-format
msgid ""
"Allow X connections:\n"
"\n"
"- \"All\" (all connections are allowed),\n"
"\n"
"- \"Local\" (only connection from local machine),\n"
"\n"
"- \"None\" (no connection)."
msgstr ""
"Leyfa/Banna X tengingar:\n"
"\n"
"- ALLT (allar tengingar leyfðar),\n"
"\n"
"- STAÐBUNDIÐ (aðeins staðbundnar tengingar leyfðar),\n"
"\n"
"- ENGAR (engar tengingar leyfðar)."

#: security/help.pm:48
#, c-format
msgid ""
"The argument specifies if clients are authorized to connect\n"
"to the X server from the network on the tcp port 6000 or not."
msgstr ""
"Þessi breyta skilgreinir hvort biðlar hafi leyfi til að tengjast\n"
"X-miðlara frá netinu yfir tcp-gátt 6000."

#. -PO: here "ALL", "Local" and "None" are values in a pull-down menu; translate them the same as they're
#: security/help.pm:53
#, fuzzy, c-format
msgid ""
"Authorize:\n"
"\n"
"- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if "
"set to \"ALL\",\n"
"\n"
"- only local ones if set to \"Local\"\n"
"\n"
"- none if set to \"None\".\n"
"\n"
"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
"(5))."
msgstr ""
"Heimila:\n"
"\n"
"- allar þjónustur sem nota tcp_wrappers (sjá man-síðu hosts.deny(5)) ef sett "
"\"ALLT\",\n"
"\n"
"- aðeins staðbundnar ef sett \"STAÐBUNDIÐ\"\n"
"\n"