package devices; # $Id$ use diagnostics; use strict; use common; use run_program; use log; use c; sub del_loop { my ($dev) = @_; run_program::run("losetup", "-d", $dev); } sub find_free_loop() { foreach (0..255) { my $dev = make("loop$_"); sysopen(my $F, $dev, 2) or next; !ioctl($F, c::LOOP_GET_STATUS(), my $_tmp) && $! == 6 or next; #- 6 == ENXIO return $dev; } die "no free loop found"; } sub set_loop { my ($file, $o_encrypt_key, $o_encryption) = @_; require modules; eval { modules::load('loop') }; my $dev = find_free_loop(); if ($o_encrypt_key && $o_encryption) { eval { modules::load('cryptoloop', 'cbc', if_(arch() =~ /i.86/, 'aes-i586'), if_( arch() =~ /x86_64/, 'aes-x86_64'), 'aes_generic') }; my $cmd = "losetup -p 0 -e $o_encryption $dev $file"; log::l("calling $cmd"); open(my $F, "|$cmd"); print $F $o_encrypt_key; close $F or die "losetup failed"; } else { run_program::run("losetup", $dev, $file) || run_program::run("losetup", "-r", $dev, $file) or return; } $dev; } sub find_compressed_image { my ($name) = @_; foreach (0..255) { my $dev = make("loop$_"); my ($file) = `losetup $dev 2>/dev/null` =~ m!\((.*?)\)! or return; $file =~ s!^/sysroot/!/!; basename($file) eq $name and return $dev, $file; } undef; } sub get_dynamic_major { my ($name) = @_; cat_('/proc/devices') =~ /^(\d+) \Q$name\E$/m && $1; } sub init_device_mapper() { require modules; eval { modules::load('dm-mod') }; make('urandom'); my $control = '/dev/mapper/control'; if (! -e $control) { my ($major) = get_dynamic_major('misc') or return; my ($minor) = cat_('/proc/misc') =~ /(\d+) device-mapper$/m or return; mkdir_p(dirname($control)); syscall_('mknod', $control, c::S_IFCHR() | 0600, makedev($major, $minor)) or die "mknod $control failed: $!"; } } sub entry { my ($type, $major, $minor); local ($_) = @_; if (/^0x([\da-f]{3,4})$/i) { $type = c::S_IFBLK(); ($major, $minor) = unmakedev(hex $1); } elsif (/^ram(.*)/) { $type = c::S_IFBLK(); $major = 1; $minor = $1 eq '' ? 1 : $1; } elsif (m|^rd/c(\d+)d(\d+)(p(\d+))?|) { # dac 960 "rd/cXdXXpX" $type = c::S_IFBLK(); $major = 48 + $1; $minor = 8 * $2 + $4; } elsif (m,(ida|cciss)/c(\d+)d(\d+)(?:p(\d+))?,) { # Compaq Smart Array "ida/c0d0{p1}" $type = c::S_IFBLK(); $major = ($1 eq 'ida' ? 72 : 104) + $2; $minor = 16 * $3 + ($4 || 0); } elsif (m,(ataraid)/d(\d+)(?:p(\d+))?,) { # ATA raid "ataraid/d0{p1}" $type = c::S_IFBLK(); $major = 114; $minor = 16 * $1 + ($2 || 0); } elsif (my ($prefix, $nb) = /(.*?)(\d+)$/) { my $f = ${{"fd" => sub { c::S_IFBLK(), 2, 0 }, "hidbp-mse-" => sub { c::S_IFCHR(), 10, 32 }, "lp" => sub { c::S_IFCHR(), 6, 0 }, "usb/lp" => sub { c::S_IFCHR(), 180, 0 }, "input/event" => sub { c::S_IFCHR(), 13, 64 }, "loop" => sub { c::S_IFBLK(), 7, 0 }, "md" => sub { c::S_IFBLK(), 9, 0 }, "nst" => sub { c::S_IFCHR(), 9, 128 }, "sr" => sub { c::S_IFBLK(), 11, 0 }, "tty" => sub { c::S_IFCHR(), 4, 0 }, "ttyS" => sub { c::S_IFCHR(), 4, 64 }, "ubd/" => sub { c::S_IFBLK(), 98, 0 }, "dm-" => sub { c::S_IFBLK(), get_dynamic_major('device-mapper'), 0 }, }}{$prefix}; if($f) { ($type, $major, $minor) = $f->(); $minor += $nb; } } unless ($type) { ($type, $major, $minor) = @{ ${{"aztcd" => [ c::S_IFBLK(), 29, 0 ], "bpcd" => [ c::S_IFBLK(), 41, 0 ], "cdu31a" => [ c::S_IFBLK(), 15, 0 ], "cdu535" => [ c::S_IFBLK(), 24, 0 ], "cm206cd" => [ c::S_IFBLK(), 32, 0 ], "gscd" => [ c::S_IFBLK(), 16, 0 ], "mcd" => [ c::S_IFBLK(), 23, 0 ], "mcdx" => [ c::S_IFBLK(), 20, 0 ], "mem" => [ c::S_IFCHR(), 1, 1 ], "optcd" => [ c::S_IFBLK(), 17, 0 ], "kbd" => [ c::S_IFCHR(), 11, 0 ], "psaux" => [ c::S_IFCHR(), 10, 1 ], "atibm" => [ c::S_IFCHR(), 10, 3 ], "random" => [ c::S_IFCHR(), 1, 8 ], "urandom" => [ c::S_IFCHR(), 1, 9 ], "sbpcd" => [ c::S_IFBLK(), 25, 0 ], "sjcd" => [ c::S_IFBLK(), 18, 0 ], "tty" => [ c::S_IFCHR(), 5, 0 ], "input/mice" => [ c::S_IFCHR(), 13, 63 ], "adbmouse" => [ c::S_IFCHR(), 10, 10 ], #- PPC "vcsa" => [ c::S_IFCHR(), 7, 128 ], "zero" => [ c::S_IFCHR(), 1, 5 ], "null" => [ c::S_IFCHR(), 1, 3 ], "initrd" => [ c::S_IFBLK(), 1, 250 ], "console" => [ c::S_IFCHR(), 5, 1 ], "systty" => [ c::S_IFCHR(), 4, 0 ], "lvm" => [ c::S_IFBLK(), 109, 0 ], }}{$_} || [] }; } # Lookup non listed devices in /sys unless ($type) { my $sysdev; if (m!input/(.*)! && -e "/sys/class/input/$1/dev") { $sysdev = "/sys/class/input/$1/dev"; $type = c::S_IFCHR(); } elsif (-e "/sys/block/$_/dev") { $sysdev = "/sys/block/$_/dev"; $type = c::S_IFBLK(); } elsif (/^(.+)(\d+)$/ && -e "/sys/block/$1/$_/dev") { $sysdev = "/sys/block/$1/$_/dev"; $type = c::S_IFBLK(); } ($major, $minor) = split(':', chomp_(cat_($sysdev))); } # Lookup partitions in /proc/partitions in case /sys was not available unless ($type) { if (-e "/proc/partitions") { if (cat_("/proc/partitions") =~ /^\s*(\d+)\s+(\d+)\s+\d+\s+$_$/m) { ($major, $minor) = ($1, $2); $type = c::S_IFBLK(); } } } $type or internal_error("unknown device $_"); ($type, $major, $minor); } sub make($) { local $_ = my $file = $_[0]; if (m!^(.*/dev)/(.*)!) { $_ = $2; } else { $file =~ m|^/| && -e $file or $file = "/dev/$_"; } -e $file and return $file; #- assume nobody takes fun at creating files named as device my ($type, $major, $minor) = entry($_); #- make a directory for this inode if needed. mkdir_p(dirname($file)); syscall_('mknod', $file, $type | 0600, makedev($major, $minor)) or do { die "mknod failed (dev $_): $!" if ! -e $file; # we may have raced with udev }; $file; } sub simple_partition_scan { my ($part) = @_; $part->{device} =~ /([hsv]d[a-z])(\d+)$/; } sub part_number { my ($part) = @_; (simple_partition_scan($part))[1]; } sub part_prefix { my ($part) = @_; (simple_partition_scan($part))[0]; } sub prefix_for_dev { my ($dev) = @_; $dev . ($dev =~ /\d$/ || $dev =~ m!mapper/! ? 'p' : ''); } sub should_prefer_UUID { my ($dev) = @_; $dev =~ /^([hsv]d)/; } sub symlink_now_and_register { my ($if_struct, $of) = @_; my $if = $if_struct->{device}; #- add a specific udev script, we can't do it with a udev rule, #- eg, ttySL0 is a symlink created by a daemon output_with_perm("$::prefix/etc/udev/devices.d/$of.nodes", 0644, "L $of $if\n"); symlinkf($if, "$::prefix/dev/$of"); } 1; td class='label'>mode:
authorPablo Saratxaga <pablo@mandriva.com>2004-07-20 07:20:33 +0000
committerPablo Saratxaga <pablo@mandriva.com>2004-07-20 07:20:33 +0000
commit7e039dd29386d497d168e96a62fd681d3bddee44 (patch)
treeee659f9e8d196daa745380b48ac5812dbcd11e2b /perl-install/share
parentfafa7b82d182c93045da035bd99e9c1dc6959540 (diff)
downloaddrakx-7e039dd29386d497d168e96a62fd681d3bddee44.tar
drakx-7e039dd29386d497d168e96a62fd681d3bddee44.tar.gz
drakx-7e039dd29386d497d168e96a62fd681d3bddee44.tar.bz2
drakx-7e039dd29386d497d168e96a62fd681d3bddee44.tar.xz
drakx-7e039dd29386d497d168e96a62fd681d3bddee44.zip
changed MandrakeSoft -> Mandrakesoft
Diffstat (limited to 'perl-install/share')
-rw-r--r--perl-install/share/po/DrakX.pot2519
-rwxr-xr-xperl-install/share/po/translation_size.pl2
-rwxr-xr-xperl-install/share/po/validate.pl2
3 files changed, 1387 insertions, 1136 deletions
diff --git a/perl-install/share/po/DrakX.pot b/perl-install/share/po/DrakX.pot
index 4546dbb85..157da9c2d 100644
--- a/perl-install/share/po/DrakX.pot
+++ b/perl-install/share/po/DrakX.pot
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2004-06-14 15:48+0200\n"
+"POT-Creation-Date: 2004-07-20 15:26+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,7 +14,45 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8-bit\n"
-#: ../move/move.pm:402
+#: ../move/move.pm:421 ../move/move.pm:433
+#, c-format
+msgid "Key isn't writable"
+msgstr ""
+
+#: ../move/move.pm:423
+#, c-format
+msgid ""
+"The USB key seems to have write protection enabled. Please\n"
+"unplug it, remove write protection, and then plug it again."
+msgstr ""
+
+#: ../move/move.pm:425
+#, c-format
+msgid "Retry"
+msgstr ""
+
+#: ../move/move.pm:426 ../move/move.pm:470
+#, c-format
+msgid "Continue without USB key"
+msgstr ""
+
+#: ../move/move.pm:435
+#, c-format
+msgid ""
+"The USB key seems to have write protection enabled, but we can't safely\n"
+"unplug it now.\n"
+"\n"
+"\n"
+"Click the button to reboot the machine, unplug it, remove write protection,\n"
+"plug the key again, and launch Mandrake Move again."
+msgstr ""
+
+#: ../move/move.pm:441 help.pm:418 install_steps_interactive.pm:1314
+#, c-format
+msgid "Reboot"
+msgstr ""
+
+#: ../move/move.pm:446
#, c-format
msgid ""
"Your USB key doesn't have any valid Windows (FAT) partitions.\n"
@@ -29,7 +67,7 @@ msgid ""
"Operating System."
msgstr ""
-#: ../move/move.pm:412
+#: ../move/move.pm:456
#, c-format
msgid ""
"We didn't detect any USB key on your system. If you\n"
@@ -45,97 +83,59 @@ msgid ""
"Operating System."
msgstr ""
-#: ../move/move.pm:423
+#: ../move/move.pm:467
#, c-format
msgid "Need a key to save your data"
msgstr ""
-#: ../move/move.pm:425
+#: ../move/move.pm:469
#, c-format
msgid "Detect USB key again"
msgstr ""
-#: ../move/move.pm:426 ../move/move.pm:456
-#, c-format
-msgid "Continue without USB key"
-msgstr ""
-
-#: ../move/move.pm:437 ../move/move.pm:451
-#, c-format
-msgid "Key isn't writable"
-msgstr ""
-
-#: ../move/move.pm:439
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled, but we can't safely\n"
-"unplug it now.\n"
-"\n"
-"\n"
-"Click the button to reboot the machine, unplug it, remove write protection,\n"
-"plug the key again, and launch Mandrake Move again."
-msgstr ""
-
-#: ../move/move.pm:445 help.pm:418 install_steps_interactive.pm:1306
-#, c-format
-msgid "Reboot"
-msgstr ""
-
-#: ../move/move.pm:453
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled. Please\n"
-"unplug it, remove write protection, and then plug it again."
-msgstr ""
-
-#: ../move/move.pm:455
-#, c-format
-msgid "Retry"
-msgstr ""
-
-#: ../move/move.pm:466
+#: ../move/move.pm:485
#, c-format
msgid "Setting up USB key"
msgstr ""
-#: ../move/move.pm:466
+#: ../move/move.pm:485
#, c-format
msgid "Please wait, setting up system configuration files on USB key..."
msgstr ""
-#: ../move/move.pm:488
+#: ../move/move.pm:514
#, c-format
msgid "Enter your user information, password will be used for screensaver"
msgstr ""
-#: ../move/move.pm:498
+#: ../move/move.pm:524
#, c-format
msgid "Auto configuration"
msgstr ""
-#: ../move/move.pm:498
+#: ../move/move.pm:524
#, c-format
msgid "Please wait, detecting and configuring devices..."
msgstr ""
-#: ../move/move.pm:545 ../move/move.pm:601 ../move/move.pm:605 ../move/tree/mdk_totem:86 diskdrake/dav.pm:77 diskdrake/hd_gtk.pm:117 diskdrake/interactive.pm:220 diskdrake/interactive.pm:233 diskdrake/interactive.pm:374 diskdrake/interactive.pm:389 diskdrake/interactive.pm:510 diskdrake/interactive.pm:515 diskdrake/smbnfs_gtk.pm:42 fsedit.pm:262 install_steps.pm:82 install_steps_interactive.pm:40 interactive/http.pm:118 interactive/http.pm:119 network/netconnect.pm:936 network/netconnect.pm:939 network/netconnect.pm:984 network/netconnect.pm:988 network/netconnect.pm:1055 network/netconnect.pm:1105 network/netconnect.pm:1110 network/netconnect.pm:1125 network/netconnect.pm:1333 printer/printerdrake.pm:213 printer/printerdrake.pm:220 printer/printerdrake.pm:245 printer/printerdrake.pm:393 printer/printerdrake.pm:398 printer/printerdrake.pm:411 printer/printerdrake.pm:421 printer/printerdrake.pm:1067 printer/printerdrake.pm:1114 printer/printerdrake.pm:1151 printer/printerdrake.pm:1195 printer/printerdrake.pm:1199 printer/printerdrake.pm:1213 printer/printerdrake.pm:1303 printer/printerdrake.pm:1383 printer/printerdrake.pm:1387 printer/printerdrake.pm:1391 printer/printerdrake.pm:1440 printer/printerdrake.pm:1497 printer/printerdrake.pm:1501 printer/printerdrake.pm:1515 printer/printerdrake.pm:1625 printer/printerdrake.pm:1629 printer/printerdrake.pm:1666 printer/printerdrake.pm:1731 printer/printerdrake.pm:1749 printer/printerdrake.pm:1758 printer/printerdrake.pm:1767 printer/printerdrake.pm:1778 printer/printerdrake.pm:1840 printer/printerdrake.pm:2285 printer/printerdrake.pm:2551 printer/printerdrake.pm:2557 printer/printerdrake.pm:3010 printer/printerdrake.pm:3014 printer/printerdrake.pm:3018 printer/printerdrake.pm:3421 printer/printerdrake.pm:3664 printer/printerdrake.pm:3677 printer/printerdrake.pm:3817 printer/printerdrake.pm:3909 standalone/drakTermServ:404 standalone/drakTermServ:758 standalone/drakTermServ:765 standalone/drakTermServ:960 standalone/drakTermServ:1430 standalone/drakTermServ:1435 standalone/drakTermServ:1442 standalone/drakTermServ:1453 standalone/drakTermServ:1475 standalone/drakauth:36 standalone/drakbackup:511 standalone/drakbackup:625 standalone/drakbackup:1118 standalone/drakbackup:1151 standalone/drakbackup:1644 standalone/drakbackup:1807 standalone/drakbackup:2419 standalone/drakbackup:4084 standalone/drakbackup:4304 standalone/drakboot:255 standalone/drakbug:267 standalone/drakbug:286 standalone/drakbug:292 standalone/drakconnect:621 standalone/drakconnect:624 standalone/drakconnect:645 standalone/drakfloppy:302 standalone/drakfloppy:306 standalone/drakfloppy:312 standalone/drakfont:210 standalone/drakfont:223 standalone/drakfont:259 standalone/drakfont:600 standalone/draksplash:21 standalone/drakxtv:105 standalone/logdrake:170 standalone/logdrake:467 standalone/logdrake:472 standalone/scannerdrake:58 standalone/scannerdrake:200 standalone/scannerdrake:259 standalone/scannerdrake:688 standalone/scannerdrake:699 standalone/scannerdrake:838 standalone/scannerdrake:849 standalone/scannerdrake:919 wizards.pm:95 wizards.pm:99 wizards.pm:121
+#: ../move/move.pm:572 ../move/move.pm:628 ../move/move.pm:632 diskdrake/dav.pm:77 diskdrake/hd_gtk.pm:117 diskdrake/interactive.pm:220 diskdrake/interactive.pm:233 diskdrake/interactive.pm:374 diskdrake/interactive.pm:389 diskdrake/interactive.pm:510 diskdrake/interactive.pm:515 diskdrake/smbnfs_gtk.pm:42 fsedit.pm:262 install_steps.pm:82 install_steps_interactive.pm:40 interactive/http.pm:118 interactive/http.pm:119 network/netconnect.pm:942 network/netconnect.pm:945 network/netconnect.pm:990 network/netconnect.pm:994 network/netconnect.pm:1061 network/netconnect.pm:1111 network/netconnect.pm:1116 network/netconnect.pm:1134 network/netconnect.pm:1342 printer/printerdrake.pm:213 printer/printerdrake.pm:220 printer/printerdrake.pm:245 printer/printerdrake.pm:393 printer/printerdrake.pm:398 printer/printerdrake.pm:411 printer/printerdrake.pm:421 printer/printerdrake.pm:1067 printer/printerdrake.pm:1114 printer/printerdrake.pm:1151 printer/printerdrake.pm:1195 printer/printerdrake.pm:1199 printer/printerdrake.pm:1213 printer/printerdrake.pm:1303 printer/printerdrake.pm:1383 printer/printerdrake.pm:1387 printer/printerdrake.pm:1391 printer/printerdrake.pm:1440 printer/printerdrake.pm:1497 printer/printerdrake.pm:1501 printer/printerdrake.pm:1515 printer/printerdrake.pm:1625 printer/printerdrake.pm:1629 printer/printerdrake.pm:1666 printer/printerdrake.pm:1731 printer/printerdrake.pm:1749 printer/printerdrake.pm:1758 printer/printerdrake.pm:1767 printer/printerdrake.pm:1778 printer/printerdrake.pm:1840 printer/printerdrake.pm:2285 printer/printerdrake.pm:2551 printer/printerdrake.pm:2557 printer/printerdrake.pm:3010 printer/printerdrake.pm:3014 printer/printerdrake.pm:3018 printer/printerdrake.pm:3421 printer/printerdrake.pm:3664 printer/printerdrake.pm:3677 printer/printerdrake.pm:3817 printer/printerdrake.pm:3909 standalone/drakTermServ:400 standalone/drakTermServ:753 standalone/drakTermServ:760 standalone/drakTermServ:955 standalone/drakTermServ:1425 standalone/drakTermServ:1430 standalone/drakTermServ:1437 standalone/drakTermServ:1448 standalone/drakTermServ:1470 standalone/drakauth:36 standalone/drakbackup:511 standalone/drakbackup:625 standalone/drakbackup:1118 standalone/drakbackup:1151 standalone/drakbackup:1644 standalone/drakbackup:1807 standalone/drakbackup:2419 standalone/drakbackup:4093 standalone/drakbackup:4313 standalone/drakboot:259 standalone/drakbug:267 standalone/drakbug:286 standalone/drakbug:292 standalone/drakconnect:621 standalone/drakconnect:624 standalone/drakconnect:645 standalone/drakfloppy:302 standalone/drakfloppy:306 standalone/drakfloppy:312 standalone/drakfont:210 standalone/drakfont:223 standalone/drakfont:259 standalone/drakfont:600 standalone/draksplash:21 standalone/drakxtv:105 standalone/logdrake:168 standalone/logdrake:465 standalone/logdrake:470 standalone/scannerdrake:58 standalone/scannerdrake:200 standalone/scannerdrake:259 standalone/scannerdrake:688 standalone/scannerdrake:699 standalone/scannerdrake:838 standalone/scannerdrake:849 standalone/scannerdrake:919 wizards.pm:95 wizards.pm:99 wizards.pm:121
#, c-format
msgid "Error"
msgstr ""
-#: ../move/move.pm:546 install_steps.pm:83
+#: ../move/move.pm:573 install_steps.pm:83
#, c-format
msgid ""
"An error occurred, but I don't know how to handle it nicely.\n"
"Continue at your own risk."
msgstr ""
-#: ../move/move.pm:601 install_steps_interactive.pm:40
+#: ../move/move.pm:628 install_steps_interactive.pm:40
#, c-format
msgid "An error occurred"
msgstr ""
-#: ../move/move.pm:607
+#: ../move/move.pm:634
#, c-format
msgid ""
"An error occurred:\n"
@@ -155,32 +155,37 @@ msgid ""
"guess what's happening."
msgstr ""
-#: ../move/move.pm:622
+#: ../move/move.pm:649
#, c-format
msgid "Remove system config files"
msgstr ""
-#: ../move/move.pm:623
+#: ../move/move.pm:650
#, c-format
msgid "Simply reboot"
msgstr ""
-#: ../move/tree/mdk_totem:60
+#: ../move/tree/mdk_totem:50 ../move/tree/mdk_totem:96
#, c-format
msgid "You can only run with no CDROM support"
msgstr ""
-#: ../move/tree/mdk_totem:81
+#: ../move/tree/mdk_totem:71
#, c-format
msgid "Kill those programs"
msgstr ""
-#: ../move/tree/mdk_totem:82
+#: ../move/tree/mdk_totem:72
#, c-format
msgid "No CDROM support"
msgstr ""
-#: ../move/tree/mdk_totem:87
+#: ../move/tree/mdk_totem:76 diskdrake/hd_gtk.pm:96 diskdrake/interactive.pm:1000 diskdrake/interactive.pm:1010 diskdrake/interactive.pm:1070
+#, c-format
+msgid "Read carefully!"
+msgstr ""
+
+#: ../move/tree/mdk_totem:77
#, c-format
msgid ""
"You can't use another CDROM when the following programs are running: \n"
@@ -237,96 +242,96 @@ msgstr ""
msgid "64 MB or more"
msgstr ""
-#: Xconfig/card.pm:151
+#: Xconfig/card.pm:154
#, c-format
msgid "X server"
msgstr ""
-#: Xconfig/card.pm:152
+#: Xconfig/card.pm:155
#, c-format
msgid "Choose an X server"
msgstr ""
-#: Xconfig/card.pm:184
+#: Xconfig/card.pm:187
#, c-format
msgid "Multi-head configuration"
msgstr ""
-#: Xconfig/card.pm:185
+#: Xconfig/card.pm:188
#, c-format
msgid ""
"Your system supports multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: Xconfig/card.pm:251
+#: Xconfig/card.pm:254
#, c-format
msgid "Can't install XFree package: %s"
msgstr ""
-#: Xconfig/card.pm:261
+#: Xconfig/card.pm:264
#, c-format
msgid "Select the memory size of your graphics card"
msgstr ""
-#: Xconfig/card.pm:332
+#: Xconfig/card.pm:351
#, c-format
msgid "XFree configuration"
msgstr ""
-#: Xconfig/card.pm:334
+#: Xconfig/card.pm:353
#, c-format
msgid "Which configuration of XFree do you want to have?"
msgstr ""
-#: Xconfig/card.pm:367
+#: Xconfig/card.pm:386
#, c-format
msgid "Configure all heads independently"
msgstr ""
-#: Xconfig/card.pm:368
+#: Xconfig/card.pm:387
#, c-format
msgid "Use Xinerama extension"
msgstr ""
-#: Xconfig/card.pm:373
+#: Xconfig/card.pm:392
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr ""
-#: Xconfig/card.pm:385 Xconfig/various.pm:23
+#: Xconfig/card.pm:404 Xconfig/various.pm:23
#, c-format
msgid "XFree %s"
msgstr ""
-#: Xconfig/card.pm:392 Xconfig/various.pm:22
+#: Xconfig/card.pm:411 Xconfig/various.pm:22
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr ""
-#: Xconfig/card.pm:394
+#: Xconfig/card.pm:413
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
-#: Xconfig/card.pm:400
+#: Xconfig/card.pm:419
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr ""
-#: Xconfig/card.pm:402
+#: Xconfig/card.pm:421
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
-#: Xconfig/main.pm:90 Xconfig/main.pm:91 Xconfig/monitor.pm:112 any.pm:833
+#: Xconfig/main.pm:90 Xconfig/main.pm:91 Xconfig/monitor.pm:116 any.pm:828
#, c-format
msgid "Custom"
msgstr ""
-#: Xconfig/main.pm:115 diskdrake/dav.pm:28 help.pm:14 install_steps_interactive.pm:83 printer/printerdrake.pm:608 printer/printerdrake.pm:4076 standalone/draksplash:120 standalone/harddrake2:194 standalone/logdrake:175 standalone/scannerdrake:450
+#: Xconfig/main.pm:115 diskdrake/dav.pm:28 help.pm:14 install_steps_interactive.pm:83 printer/printerdrake.pm:608 printer/printerdrake.pm:4076 standalone/draksplash:120 standalone/harddrake2:265 standalone/logdrake:173 standalone/net_applet:149 standalone/scannerdrake:450
#, c-format
msgid "Quit"
msgstr ""
@@ -336,12 +341,12 @@ msgstr ""
msgid "Graphic Card"
msgstr ""
-#: Xconfig/main.pm:120 Xconfig/monitor.pm:106
+#: Xconfig/main.pm:120 Xconfig/monitor.pm:110
#, c-format
msgid "Monitor"
msgstr ""
-#: Xconfig/main.pm:123 Xconfig/resolution_and_depth.pm:217
+#: Xconfig/main.pm:123 Xconfig/resolution_and_depth.pm:222
#, c-format
msgid "Resolution"
msgstr ""
@@ -351,7 +356,7 @@ msgstr ""
msgid "Test"
msgstr ""
-#: Xconfig/main.pm:133 diskdrake/dav.pm:67 diskdrake/interactive.pm:415 diskdrake/removable.pm:25 diskdrake/smbnfs_gtk.pm:80 standalone/drakfont:494 standalone/drakfont:554 standalone/harddrake2:191
+#: Xconfig/main.pm:133 diskdrake/dav.pm:67 diskdrake/interactive.pm:415 diskdrake/removable.pm:25 diskdrake/smbnfs_gtk.pm:80 standalone/drakfont:494 standalone/drakfont:554 standalone/harddrake2:262
#, c-format
msgid "Options"
msgstr ""
@@ -365,37 +370,37 @@ msgid ""
"%s"
msgstr ""
-#: Xconfig/monitor.pm:107
+#: Xconfig/monitor.pm:111
#, c-format
msgid "Choose a monitor for head #%d"
msgstr ""
-#: Xconfig/monitor.pm:107
+#: Xconfig/monitor.pm:111
#, c-format
msgid "Choose a monitor"
msgstr ""
-#: Xconfig/monitor.pm:113
+#: Xconfig/monitor.pm:117
#, c-format
msgid "Plug'n Play"
msgstr ""
-#: Xconfig/monitor.pm:114 mouse.pm:49
+#: Xconfig/monitor.pm:118 mouse.pm:49
#, c-format
msgid "Generic"
msgstr ""
-#: Xconfig/monitor.pm:115 standalone/drakconnect:569 standalone/harddrake2:73 standalone/harddrake2:74
+#: Xconfig/monitor.pm:119 standalone/drakconnect:569 standalone/harddrake2:49 standalone/harddrake2:83
#, c-format
msgid "Vendor"
msgstr ""
-#: Xconfig/monitor.pm:125
+#: Xconfig/monitor.pm:129
#, c-format
msgid "Plug'n Play probing failed. Please select the correct monitor"
msgstr ""
-#: Xconfig/monitor.pm:130
+#: Xconfig/monitor.pm:134
#, c-format
msgid ""
"The two critical parameters are the vertical refresh rate, which is the rate\n"
@@ -407,12 +412,12 @@ msgid ""
" If in doubt, choose a conservative setting."
msgstr ""
-#: Xconfig/monitor.pm:137
+#: Xconfig/monitor.pm:141
#, c-format
msgid "Horizontal refresh rate"
msgstr ""
-#: Xconfig/monitor.pm:138
+#: Xconfig/monitor.pm:142
#, c-format
msgid "Vertical refresh rate"
msgstr ""
@@ -437,32 +442,32 @@ msgstr ""
msgid "16 million colors (24 bits)"
msgstr ""
-#: Xconfig/resolution_and_depth.pm:130
+#: Xconfig/resolution_and_depth.pm:135
#, c-format
msgid "Resolutions"
msgstr ""
-#: Xconfig/resolution_and_depth.pm:264
+#: Xconfig/resolution_and_depth.pm:269
#, c-format
msgid "Choose the resolution and the color depth"
msgstr ""
-#: Xconfig/resolution_and_depth.pm:265
+#: Xconfig/resolution_and_depth.pm:270
#, c-format
msgid "Graphics card: %s"
msgstr ""
-#: Xconfig/resolution_and_depth.pm:278 interactive.pm:403 interactive/gtk.pm:760 interactive/http.pm:103 interactive/http.pm:157 interactive/newt.pm:308 interactive/newt.pm:410 interactive/stdio.pm:39 interactive/stdio.pm:142 interactive/stdio.pm:143 interactive/stdio.pm:172 standalone/drakbackup:3941 standalone/drakbackup:4001 standalone/drakbackup:4045 standalone/drakconnect:165 standalone/drakconnect:799 standalone/drakconnect:886 standalone/drakconnect:985 standalone/drakups:194 standalone/net_monitor:307 ugtk2.pm:413 ugtk2.pm:510 ugtk2.pm:1084 ugtk2.pm:1107
+#: Xconfig/resolution_and_depth.pm:283 interactive.pm:403 interactive/gtk.pm:760 interactive/http.pm:103 interactive/http.pm:157 interactive/newt.pm:308 interactive/newt.pm:410 interactive/stdio.pm:39 interactive/stdio.pm:142 interactive/stdio.pm:143 interactive/stdio.pm:172 standalone/drakbackup:3950 standalone/drakbackup:4010 standalone/drakbackup:4054 standalone/drakconnect:165 standalone/drakconnect:799 standalone/drakconnect:886 standalone/drakconnect:985 standalone/drakups:194 standalone/net_monitor:347 ugtk2.pm:413 ugtk2.pm:510 ugtk2.pm:1082 ugtk2.pm:1105
#, c-format
msgid "Ok"
msgstr ""
-#: Xconfig/resolution_and_depth.pm:278 any.pm:883 diskdrake/smbnfs_gtk.pm:81 help.pm:197 help.pm:457 install_steps_gtk.pm:490 install_steps_interactive.pm:775 interactive.pm:404 interactive/gtk.pm:764 interactive/http.pm:104 interactive/http.pm:161 interactive/newt.pm:307 interactive/newt.pm:414 interactive/stdio.pm:39 interactive/stdio.pm:142 interactive/stdio.pm:176 printer/printerdrake.pm:3088 standalone/drakautoinst:217 standalone/drakbackup:3871 standalone/drakbackup:3929 standalone/drakconnect:164 standalone/drakconnect:884 standalone/drakconnect:984 standalone/drakfont:663 standalone/drakfont:740 standalone/drakups:201 standalone/logdrake:175 standalone/net_monitor:303 ugtk2.pm:407 ugtk2.pm:508 ugtk2.pm:517 ugtk2.pm:1084
+#: Xconfig/resolution_and_depth.pm:283 any.pm:878 diskdrake/smbnfs_gtk.pm:81 help.pm:197 help.pm:457 install_steps_gtk.pm:490 install_steps_interactive.pm:786 interactive.pm:404 interactive/gtk.pm:764 interactive/http.pm:104 interactive/http.pm:161 interactive/newt.pm:307 interactive/newt.pm:414 interactive/stdio.pm:39 interactive/stdio.pm:142 interactive/stdio.pm:176 printer/printerdrake.pm:3088 standalone/drakautoinst:217 standalone/drakbackup:3876 standalone/drakbackup:3880 standalone/drakbackup:3938 standalone/drakconnect:164 standalone/drakconnect:884 standalone/drakconnect:984 standalone/drakfont:663 standalone/drakfont:740 standalone/drakups:201 standalone/logdrake:173 standalone/net_monitor:343 ugtk2.pm:407 ugtk2.pm:508 ugtk2.pm:517 ugtk2.pm:1082
#, c-format
msgid "Cancel"
msgstr ""
-#: Xconfig/resolution_and_depth.pm:278 diskdrake/hd_gtk.pm:154 install_steps_gtk.pm:269 install_steps_gtk.pm:670 interactive.pm:498 interactive/gtk.pm:624 interactive/gtk.pm:626 standalone/drakTermServ:304 standalone/drakbackup:3867 standalone/drakbug:157 standalone/drakconnect:160 standalone/drakconnect:239 standalone/drakfont:512 standalone/drakperm:134 standalone/draksec:296 standalone/harddrake2:190 ugtk2.pm:1197 ugtk2.pm:1198
+#: Xconfig/resolution_and_depth.pm:283 diskdrake/hd_gtk.pm:154 install_steps_gtk.pm:269 install_steps_gtk.pm:676 interactive.pm:498 interactive/gtk.pm:624 interactive/gtk.pm:626 standalone/drakTermServ:300 standalone/drakbackup:3872 standalone/drakbug:157 standalone/drakconnect:160 standalone/drakconnect:239 standalone/drakfont:512 standalone/drakperm:134 standalone/draksec:297 standalone/harddrake2:261 ugtk2.pm:1195 ugtk2.pm:1196
#, c-format
msgid "Help"
msgstr ""
@@ -606,17 +611,17 @@ msgstr ""
msgid "What norm is your TV using?"
msgstr ""
-#: any.pm:103 harddrake/sound.pm:150 interactive.pm:441 standalone/drakbug:259 standalone/drakconnect:167 standalone/draksec:56 standalone/drakups:90 standalone/drakxtv:90 standalone/harddrake2:140 standalone/service_harddrake:126
+#: any.pm:98 harddrake/sound.pm:150 interactive.pm:441 standalone/drakbug:259 standalone/drakconnect:167 standalone/draksec:56 standalone/drakups:90 standalone/drakxtv:90 standalone/harddrake2:211 standalone/service_harddrake:162
#, c-format
msgid "Please wait"
msgstr ""
-#: any.pm:103
+#: any.pm:98
#, c-format
msgid "Bootloader installation in progress"
msgstr ""
-#: any.pm:142
+#: any.pm:137
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -625,406 +630,391 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: any.pm:165 any.pm:197 help.pm:800
+#: any.pm:160 help.pm:800
#, c-format
msgid "First sector of drive (MBR)"
msgstr ""
-#: any.pm:166
+#: any.pm:161
#, c-format
msgid "First sector of the root partition"
msgstr ""
-#: any.pm:168
+#: any.pm:163
#, c-format
msgid "On Floppy"
msgstr ""
-#: any.pm:170 help.pm:768 help.pm:800 printer/printerdrake.pm:3418
+#: any.pm:165 help.pm:768 help.pm:800 printer/printerdrake.pm:3418
#, c-format
msgid "Skip"
msgstr ""
-#: any.pm:175
-#, c-format
-msgid "SILO Installation"
-msgstr ""
-
-#: any.pm:175
+#: any.pm:169
#, c-format
msgid "LILO/grub Installation"
msgstr ""
-#: any.pm:176
+#: any.pm:170
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr ""
-#: any.pm:197
-#, c-format
-msgid "First sector of boot partition"
-msgstr ""
-
-#: any.pm:209
+#: any.pm:196
#, c-format
msgid "Boot Style Configuration"
msgstr ""
-#: any.pm:211 any.pm:248
+#: any.pm:198 any.pm:233
#, c-format
msgid "Bootloader main options"
msgstr ""
-#: any.pm:215
+#: any.pm:202
#, c-format
msgid "Give the ram size in MB"
msgstr ""
-#: any.pm:217
+#: any.pm:204
#, c-format
msgid "Option ``Restrict command line options'' is of no use without a password"
msgstr ""
-#: any.pm:218 any.pm:531 install_steps_interactive.pm:1150
+#: any.pm:205 any.pm:517 install_steps_interactive.pm:1161
#, c-format
msgid "The passwords do not match"
msgstr ""
-#: any.pm:218 any.pm:531 diskdrake/interactive.pm:1262 install_steps_interactive.pm:1150
+#: any.pm:205 any.pm:517 diskdrake/interactive.pm:1262 install_steps_interactive.pm:1161
#, c-format
msgid "Please try again"
msgstr ""
-#: any.pm:223 any.pm:251 help.pm:768
+#: any.pm:210 any.pm:236 help.pm:768
#, c-format
msgid "Bootloader to use"
msgstr ""
-#: any.pm:225
-#, c-format
-msgid "Bootloader installation"
-msgstr ""
-
-#: any.pm:227 any.pm:253 help.pm:768
+#: any.pm:212 any.pm:238 help.pm:768
#, c-format
msgid "Boot device"
msgstr ""
-#: any.pm:229
+#: any.pm:214
#, c-format
msgid "Delay before booting default image"
msgstr ""
-#: any.pm:230 help.pm:768
+#: any.pm:215 help.pm:768
#, c-format
msgid "Enable ACPI"
msgstr ""
-#: any.pm:232 help.pm:768
+#: any.pm:217 help.pm:768
#, c-format
msgid "Force no APIC"
msgstr ""
-#: any.pm:234
+#: any.pm:219
#, c-format
msgid "Force No Local APIC"
msgstr ""
-#: any.pm:236 any.pm:558 diskdrake/smbnfs_gtk.pm:180 install_steps_interactive.pm:1155 network/netconnect.pm:574 printer/printerdrake.pm:1374 printer/printerdrake.pm:1494 standalone/drakbackup:1626 standalone/drakbackup:3496 standalone/drakups:278
+#: any.pm:221 any.pm:544 diskdrake/smbnfs_gtk.pm:180 install_steps_interactive.pm:1166 network/netconnect.pm:580 printer/printerdrake.pm:1374 printer/printerdrake.pm:1494 standalone/drakbackup:1626 standalone/drakbackup:3498 standalone/drakups:278
#, c-format
msgid "Password"
msgstr ""
-#: any.pm:237 any.pm:559 install_steps_interactive.pm:1156
+#: any.pm:222 any.pm:545 install_steps_interactive.pm:1167
#, c-format
msgid "Password (again)"
msgstr ""
-#: any.pm:238
+#: any.pm:223
#, c-format
msgid "Restrict command line options"
msgstr ""
-#: any.pm:238
+#: any.pm:223
#, c-format
msgid "restrict"
msgstr ""
-#: any.pm:240
+#: any.pm:225
#, c-format
msgid "Clean /tmp at each boot"
msgstr ""
-#: any.pm:241
+#: any.pm:226
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr ""
-#: any.pm:243
+#: any.pm:228
#, c-format
msgid "Enable multiple profiles"
msgstr ""
-#: any.pm:252
+#: any.pm:237
#, c-format
msgid "Init Message"
msgstr ""
-#: any.pm:254
+#: any.pm:239
#, c-format
msgid "Open Firmware Delay"
msgstr ""
-#: any.pm:255
+#: any.pm:240
#, c-format
msgid "Kernel Boot Timeout"
msgstr ""
-#: any.pm:256
+#: any.pm:241
#, c-format
msgid "Enable CD Boot?"
msgstr ""
-#: any.pm:257
+#: any.pm:242
#, c-format
msgid "Enable OF Boot?"
msgstr ""
-#: any.pm:258
+#: any.pm:243
#, c-format
msgid "Default OS?"
msgstr ""
-#: any.pm:302
+#: any.pm:289
#, c-format
msgid "Image"
msgstr ""
-#: any.pm:303 any.pm:312
+#: any.pm:290 any.pm:299
#, c-format
msgid "Root"
msgstr ""
-#: any.pm:304 any.pm:325
+#: any.pm:291 any.pm:312
#, c-format
msgid "Append"
msgstr ""
-#: any.pm:306
+#: any.pm:293
#, c-format
msgid "Video mode"
msgstr ""
-#: any.pm:308
+#: any.pm:295
#, c-format
msgid "Initrd"
msgstr ""
-#: any.pm:317 any.pm:322 any.pm:324
+#: any.pm:304 any.pm:309 any.pm:311
#, c-format
msgid "Label"
msgstr ""
-#: any.pm:319 any.pm:329 harddrake/v4l.pm:275 standalone/drakfloppy:89 standalone/drakfloppy:95
+#: any.pm:306 any.pm:316 harddrake/v4l.pm:275 standalone/drakfloppy:89 standalone/drakfloppy:95
#, c-format
msgid "Default"
msgstr ""
-#: any.pm:326
+#: any.pm:313
#, c-format
msgid "Initrd-size"
msgstr ""
-#: any.pm:328
+#: any.pm:315
#, c-format
msgid "NoVideo"
msgstr ""
-#: any.pm:339
+#: any.pm:326
#, c-format
msgid "Empty label not allowed"
msgstr ""
-#: any.pm:340
+#: any.pm:327
#, c-format
msgid "You must specify a kernel image"
msgstr ""
-#: any.pm:340
+#: any.pm:327
#, c-format
msgid "You must specify a root partition"
msgstr ""
-#: any.pm:341
+#: any.pm:328
#, c-format
msgid "This label is already used"
msgstr ""
-#: any.pm:354
+#: any.pm:341
#, c-format
msgid "Which type of entry do you want to add?"
msgstr ""
-#: any.pm:355
+#: any.pm:342
#, c-format
msgid "Linux"
msgstr ""
-#: any.pm:355
+#: any.pm:342
#, c-format
msgid "Other OS (SunOS...)"
msgstr ""
-#: any.pm:356
+#: any.pm:343
#, c-format
msgid "Other OS (MacOS...)"
msgstr ""
-#: any.pm:356
+#: any.pm:343
#, c-format
msgid "Other OS (Windows...)"
msgstr ""
-#: any.pm:384
+#: any.pm:371
#, 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 ""
-#: any.pm:516
+#: any.pm:503
#, c-format
msgid "access to X programs"
msgstr ""
-#: any.pm:517
+#: any.pm:504
#, c-format
msgid "access to rpm tools"
msgstr ""
-#: any.pm:518
+#: any.pm:505
#, c-format
msgid "allow \"su\""
msgstr ""
-#: any.pm:519
+#: any.pm:506
#, c-format
msgid "access to administrative files"
msgstr ""
-#: any.pm:520
+#: any.pm:507
#, c-format
msgid "access to network tools"
msgstr ""
-#: any.pm:521
+#: any.pm:508
#, c-format
msgid "access to compilation tools"
msgstr ""
-#: any.pm:527
+#: any.pm:513
#, c-format
msgid "(already added %s)"
msgstr ""
-#: any.pm:532
+#: any.pm:518
#, c-format
msgid "This password is too simple"
msgstr ""
-#: any.pm:533
+#: any.pm:519
#, c-format
msgid "Please give a user name"
msgstr ""
-#: any.pm:534
+#: any.pm:520
#, c-format
msgid "The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:535
+#: any.pm:521
#, c-format
msgid "The user name is too long"
msgstr ""
-#: any.pm:536
+#: any.pm:522
#, c-format
msgid "This user name has already been added"
msgstr ""
-#: any.pm:540
+#: any.pm:526
#, c-format
msgid "Add user"
msgstr ""
-#: any.pm:541
+#: any.pm:527
#, c-format
msgid ""
"Enter a user\n"
"%s"
msgstr ""
-#: any.pm:544 diskdrake/dav.pm:68 diskdrake/hd_gtk.pm:158 diskdrake/removable.pm:27 diskdrake/smbnfs_gtk.pm:82 help.pm:544 interactive/http.pm:152 printer/printerdrake.pm:165 printer/printerdrake.pm:352 printer/printerdrake.pm:4076 standalone/drakbackup:2708 standalone/scannerdrake:641 standalone/scannerdrake:791
+#: any.pm:530 diskdrake/dav.pm:68 diskdrake/hd_gtk.pm:158 diskdrake/removable.pm:27 diskdrake/smbnfs_gtk.pm:82 help.pm:544 interactive/http.pm:152 printer/printerdrake.pm:165 printer/printerdrake.pm:352 printer/printerdrake.pm:4076 standalone/drakbackup:2708 standalone/scannerdrake:641 standalone/scannerdrake:791
#, c-format
msgid "Done"
msgstr ""
-#: any.pm:545 help.pm:52
+#: any.pm:531 help.pm:52
#, c-format
msgid "Accept user"
msgstr ""
-#: any.pm:556
+#: any.pm:542
#, c-format
msgid "Real name"
msgstr ""
-#: any.pm:557 help.pm:52 printer/printerdrake.pm:1373 printer/printerdrake.pm:1493
+#: any.pm:543 help.pm:52 printer/printerdrake.pm:1373 printer/printerdrake.pm:1493
#, c-format
msgid "User name"
msgstr ""
-#: any.pm:560
+#: any.pm:546
#, c-format
msgid "Shell"
msgstr ""
-#: any.pm:562
+#: any.pm:548
#, c-format
msgid "Icon"
msgstr ""
-#: any.pm:603 security/l10n.pm:14
+#: any.pm:591 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr ""
-#: any.pm:604
+#: any.pm:592
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
-#: any.pm:605 help.pm:52
+#: any.pm:593 help.pm:52
#, c-format
msgid "Do you want to use this feature?"
msgstr ""
-#: any.pm:606
+#: any.pm:594
#, c-format
msgid "Choose the default user:"
msgstr ""
-#: any.pm:607
+#: any.pm:595
#, c-format
msgid "Choose the window manager to run:"
msgstr ""
-#: any.pm:619
+#: any.pm:607
#, c-format
msgid "Please choose a language to use."
msgstr ""
-#: any.pm:640
+#: any.pm:634
#, c-format
msgid ""
"Mandrakelinux can support multiple languages. Select\n"
@@ -1032,47 +1022,47 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:658 help.pm:660
+#: any.pm:652 help.pm:660
#, c-format
msgid "Use Unicode by default"
msgstr ""
-#: any.pm:659 help.pm:660
+#: any.pm:653 help.pm:660
#, c-format
msgid "All languages"
msgstr ""
-#: any.pm:698 help.pm:581 help.pm:991 install_steps_interactive.pm:895
+#: any.pm:692 help.pm:581 help.pm:991 install_steps_interactive.pm:906
#, c-format
msgid "Country / Region"
msgstr ""
-#: any.pm:699
+#: any.pm:693
#, c-format
msgid "Please choose your country."
msgstr ""
-#: any.pm:701
+#: any.pm:695
#, c-format
msgid "Here is the full list of available countries"
msgstr ""
-#: any.pm:702 diskdrake/interactive.pm:297 help.pm:544 help.pm:581 help.pm:621 help.pm:991 install_steps_interactive.pm:114
+#: any.pm:696 diskdrake/interactive.pm:297 help.pm:544 help.pm:581 help.pm:621 help.pm:991 install_steps_interactive.pm:118
#, c-format
msgid "More"
msgstr ""
-#: any.pm:833
+#: any.pm:828
#, c-format
msgid "No sharing"
msgstr ""
-#: any.pm:833
+#: any.pm:828
#, c-format
msgid "Allow all users"
msgstr ""
-#: any.pm:837
+#: any.pm:832
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -1082,27 +1072,27 @@ msgid ""
""
msgstr ""
-#: any.pm:849
+#: any.pm:844
#, c-format
msgid "NFS: the traditional Unix file sharing system, with less support on Mac and Windows."
msgstr ""
-#: any.pm:852
+#: any.pm:847
#, c-format
msgid "SMB: a file sharing system used by Windows, Mac OS X and many modern Linux systems."
msgstr ""
-#: any.pm:860
+#: any.pm:855
#, c-format
msgid "You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
-#: any.pm:883
+#: any.pm:878
#, c-format
msgid "Launch userdrake"
msgstr ""
-#: any.pm:885
+#: any.pm:880
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -1111,7 +1101,7 @@ msgstr ""
#: authentication.pm:12
#, c-format
-msgid "Local files"
+msgid "Local file"
msgstr ""
#: authentication.pm:12
@@ -1124,7 +1114,7 @@ msgstr ""
msgid "NIS"
msgstr ""
-#: authentication.pm:12 authentication.pm:72
+#: authentication.pm:12 authentication.pm:95
#, c-format
msgid "Windows Domain"
msgstr ""
@@ -1134,67 +1124,97 @@ msgstr ""
msgid "Active Directory"
msgstr ""
-#: authentication.pm:38
+#: authentication.pm:40
#, c-format
msgid "Authentication LDAP"
msgstr ""
-#: authentication.pm:39
+#: authentication.pm:41
#, c-format
msgid "LDAP Base dn"
msgstr ""
-#: authentication.pm:40
+#: authentication.pm:42
#, c-format
msgid "LDAP Server"
msgstr ""
-#: authentication.pm:50
+#: authentication.pm:50 fsedit.pm:21
+#, c-format
+msgid "simple"
+msgstr ""
+
+#: authentication.pm:51
+#, c-format
+msgid "TLS"
+msgstr ""
+
+#: authentication.pm:52
+#, c-format
+msgid "SSL"
+msgstr ""
+
+#: authentication.pm:53
+#, c-format
+msgid "security layout (SASL/Kerberos)"
+msgstr ""
+
+#: authentication.pm:60 authentication.pm:91
#, c-format
msgid "Authentication Active Directory"
msgstr ""
-#: authentication.pm:51 diskdrake/smbnfs_gtk.pm:181
+#: authentication.pm:61 authentication.pm:93 diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Domain"
msgstr ""
-#: authentication.pm:52 diskdrake/dav.pm:65 help.pm:137
+#: authentication.pm:62 diskdrake/dav.pm:65 help.pm:137
#, c-format
msgid "Server"
msgstr ""
-#: authentication.pm:53
+#: authentication.pm:63
#, c-format
msgid "LDAP users database"
msgstr ""
-#: authentication.pm:54
+#: authentication.pm:64
+#, c-format
+msgid "Use Anonymous BIND "
+msgstr ""
+
+#: authentication.pm:65
#, c-format
msgid "LDAP user allowed to browse the Active Directory"
msgstr ""
-#: authentication.pm:55
+#: authentication.pm:66
#, c-format
msgid "Password for user"
msgstr ""
-#: authentication.pm:62
+#: authentication.pm:67
+#, c-format
+msgid "Encryption"
+msgstr ""
+
+#: authentication.pm:78
#, c-format
msgid "Authentication NIS"
msgstr ""
-#: authentication.pm:63
+#: authentication.pm:79
#, c-format
msgid "NIS Domain"
msgstr ""
-#: authentication.pm:64
+#: authentication.pm:80
#, c-format
msgid "NIS Server"
msgstr ""
-#: authentication.pm:69
+#: authentication.pm:85
#, 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"
@@ -1204,28 +1224,28 @@ msgid ""
"The command 'wbinfo -t' will test whether your authentication secrets are good."
msgstr ""
-#: authentication.pm:71
+#: authentication.pm:91
#, c-format
msgid "Authentication Windows Domain"
msgstr ""
-#: authentication.pm:73
+#: authentication.pm:96
#, c-format
msgid "Domain Admin User Name"
msgstr ""
-#: authentication.pm:74
+#: authentication.pm:97
#, c-format
msgid "Domain Admin Password"
msgstr ""
-#: authentication.pm:149
+#: authentication.pm:183
#, c-format
msgid "Can't use broadcast with no NIS domain"
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:532
+#: bootloader.pm:616
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1236,54 +1256,49 @@ msgid ""
""
msgstr ""
-#: bootloader.pm:663
-#, c-format
-msgid "SILO"
-msgstr ""
-
-#: bootloader.pm:665 help.pm:768
+#: bootloader.pm:730 help.pm:768
#, c-format
msgid "LILO with graphical menu"
msgstr ""
-#: bootloader.pm:666 help.pm:768
+#: bootloader.pm:731 help.pm:768
#, c-format
msgid "LILO with text menu"
msgstr ""
-#: bootloader.pm:668
+#: bootloader.pm:732
#, c-format
msgid "Grub"
msgstr ""
-#: bootloader.pm:670
+#: bootloader.pm:733
#, c-format
msgid "Yaboot"
msgstr ""
-#: bootloader.pm:1142
+#: bootloader.pm:810
#, c-format
msgid "not enough room in /boot"
msgstr ""
-#: bootloader.pm:1170
+#: bootloader.pm:1211
#, c-format
msgid ""
"You can't install the bootloader on a %s partition\n"
""
msgstr ""
-#: bootloader.pm:1214
+#: bootloader.pm:1256
#, c-format
msgid "Your bootloader configuration must be updated because partition has been renumbered"
msgstr ""
-#: bootloader.pm:1221
+#: bootloader.pm:1271
#, c-format
msgid "The bootloader can't be installed correctly. You have to boot rescue and choose \"%s\""
msgstr ""
-#: bootloader.pm:1222
+#: bootloader.pm:1272
#, c-format
msgid "Re-install Boot Loader"
msgstr ""
@@ -1343,7 +1358,7 @@ msgstr ""
msgid "consolehelper missing"
msgstr ""
-#: crypto.pm:14 crypto.pm:28 lang.pm:240 network/adsl_consts.pm:44 network/adsl_consts.pm:55 network/adsl_consts.pm:65 network/adsl_consts.pm:75 network/adsl_consts.pm:86 network/adsl_consts.pm:97 network/adsl_consts.pm:107 network/adsl_consts.pm:117 network/adsl_consts.pm:264 network/adsl_consts.pm:264 network/netconnect.pm:46
+#: crypto.pm:14 crypto.pm:28 lang.pm:240 network/adsl_consts.pm:133 network/adsl_consts.pm:144 network/adsl_consts.pm:154 network/adsl_consts.pm:164 network/adsl_consts.pm:174 network/adsl_consts.pm:185 network/adsl_consts.pm:196 network/adsl_consts.pm:206 network/adsl_consts.pm:216 network/netconnect.pm:46
#, c-format
msgid "France"
msgstr ""
@@ -1353,7 +1368,7 @@ msgstr ""
msgid "Costa Rica"
msgstr ""
-#: crypto.pm:16 crypto.pm:29 lang.pm:188 network/adsl_consts.pm:26 network/adsl_consts.pm:36 network/netconnect.pm:49
+#: crypto.pm:16 crypto.pm:29 lang.pm:188 network/adsl_consts.pm:43 network/adsl_consts.pm:50 network/adsl_consts.pm:61 network/adsl_consts.pm:69 network/netconnect.pm:49
#, c-format
msgid "Belgium"
msgstr ""
@@ -1363,12 +1378,12 @@ msgstr ""
msgid "Czech Republic"
msgstr ""
-#: crypto.pm:18 crypto.pm:31 lang.pm:222 network/adsl_consts.pm:134 network/adsl_consts.pm:142
+#: crypto.pm:18 crypto.pm:31 lang.pm:222 network/adsl_consts.pm:234 network/adsl_consts.pm:242
#, c-format
msgid "Germany"
msgstr ""
-#: crypto.pm:19 crypto.pm:32 lang.pm:253
+#: crypto.pm:19 crypto.pm:32 lang.pm:253 network/adsl_consts.pm:252
#, c-format
msgid "Greece"
msgstr ""
@@ -1378,22 +1393,22 @@ msgstr ""
msgid "Norway"
msgstr ""
-#: crypto.pm:21 crypto.pm:34 lang.pm:355 network/adsl_consts.pm:240
+#: crypto.pm:21 crypto.pm:34 lang.pm:355 network/adsl_consts.pm:358
#, c-format
msgid "Sweden"
msgstr ""
-#: crypto.pm:22 crypto.pm:36 lang.pm:325 network/adsl_consts.pm:178 network/netconnect.pm:47
+#: crypto.pm:22 crypto.pm:36 lang.pm:325 network/adsl_consts.pm:303 network/netconnect.pm:47
#, c-format
msgid "Netherlands"
msgstr ""
-#: crypto.pm:23 crypto.pm:37 lang.pm:273 network/adsl_consts.pm:158 network/adsl_consts.pm:168 network/netconnect.pm:48 standalone/drakxtv:45
+#: crypto.pm:23 crypto.pm:37 lang.pm:273 network/adsl_consts.pm:276 network/adsl_consts.pm:286 network/adsl_consts.pm:293 network/netconnect.pm:48 standalone/drakxtv:45
#, c-format
msgid "Italy"
msgstr ""
-#: crypto.pm:24 crypto.pm:38 lang.pm:181 network/adsl_consts.pm:20
+#: crypto.pm:24 crypto.pm:38 lang.pm:181 network/adsl_consts.pm:28 network/adsl_consts.pm:36
#, c-format
msgid "Austria"
msgstr ""
@@ -1457,11 +1472,6 @@ msgstr ""
msgid "Options: %s"
msgstr ""
-#: diskdrake/hd_gtk.pm:96 diskdrake/interactive.pm:1000 diskdrake/interactive.pm:1010 diskdrake/interactive.pm:1070
-#, c-format
-msgid "Read carefully!"
-msgstr ""
-
#: diskdrake/hd_gtk.pm:96
#, c-format
msgid "Please make a backup of your data first"
@@ -1497,7 +1507,7 @@ msgstr ""
msgid "Please click on a partition"
msgstr ""
-#: diskdrake/hd_gtk.pm:209 diskdrake/smbnfs_gtk.pm:63 install_steps_gtk.pm:477 standalone/drakbackup:2942 standalone/drakbackup:3004
+#: diskdrake/hd_gtk.pm:209 diskdrake/smbnfs_gtk.pm:63 install_steps_gtk.pm:477 standalone/drakbackup:2943 standalone/drakbackup:3005
#, c-format
msgid "Details"
msgstr ""
@@ -1557,7 +1567,7 @@ msgstr ""
msgid "Use ``%s'' instead"
msgstr ""
-#: diskdrake/hd_gtk.pm:348 diskdrake/hd_gtk.pm:353 diskdrake/interactive.pm:414 diskdrake/interactive.pm:574 diskdrake/removable.pm:26 diskdrake/removable.pm:49 standalone/harddrake2:72
+#: diskdrake/hd_gtk.pm:348 diskdrake/hd_gtk.pm:353 diskdrake/interactive.pm:414 diskdrake/interactive.pm:574 diskdrake/removable.pm:26 diskdrake/removable.pm:49 standalone/harddrake2:101
#, c-format
msgid "Type"
msgstr ""
@@ -1628,7 +1638,7 @@ msgstr ""
msgid "Do you want to save /etc/fstab modifications"
msgstr ""
-#: diskdrake/interactive.pm:282 install_steps_interactive.pm:301
+#: diskdrake/interactive.pm:282 install_steps_interactive.pm:305
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
@@ -1700,7 +1710,7 @@ msgid ""
"Still continue?"
msgstr ""
-#: diskdrake/interactive.pm:383 harddrake/sound.pm:226 keyboard.pm:340 network/netconnect.pm:450 network/netconnect.pm:469 printer/printerdrake.pm:936 printer/printerdrake.pm:1891 printer/printerdrake.pm:1953 printer/printerdrake.pm:1987 printer/printerdrake.pm:2291 printer/printerdrake.pm:3149 printer/printerdrake.pm:3426 printer/printerdrake.pm:3545 printer/printerdrake.pm:4543 standalone/drakTermServ:340 standalone/drakTermServ:1072 standalone/drakTermServ:1128 standalone/drakTermServ:1801 standalone/drakbackup:510 standalone/drakbackup:609 standalone/drakboot:156 standalone/drakclock:214 standalone/drakconnect:921 standalone/drakfloppy:296 standalone/drakups:27 standalone/scannerdrake:50 standalone/scannerdrake:913
+#: diskdrake/interactive.pm:383 harddrake/sound.pm:226 keyboard.pm:340 network/netconnect.pm:456 network/netconnect.pm:475 printer/printerdrake.pm:936 printer/printerdrake.pm:1891 printer/printerdrake.pm:1953 printer/printerdrake.pm:1987 printer/printerdrake.pm:2291 printer/printerdrake.pm:3149 printer/printerdrake.pm:3426 printer/printerdrake.pm:3545 printer/printerdrake.pm:4543 standalone/drakTermServ:336 standalone/drakTermServ:1067 standalone/drakTermServ:1123 standalone/drakTermServ:1796 standalone/drakbackup:510 standalone/drakbackup:609 standalone/drakboot:160 standalone/drakclock:217 standalone/drakconnect:921 standalone/drakfloppy:296 standalone/drakups:27 standalone/scannerdrake:50 standalone/scannerdrake:913
#, c-format
msgid "Warning"
msgstr ""
@@ -2277,7 +2287,7 @@ msgstr ""
msgid "The encryption keys do not match"
msgstr ""
-#: diskdrake/interactive.pm:1265 network/netconnect.pm:979 standalone/drakconnect:404
+#: diskdrake/interactive.pm:1265 network/netconnect.pm:985 standalone/drakconnect:404
#, c-format
msgid "Encryption key"
msgstr ""
@@ -2317,7 +2327,7 @@ msgstr ""
msgid "Please enter your username, password and domain name to access this host."
msgstr ""
-#: diskdrake/smbnfs_gtk.pm:179 standalone/drakbackup:3495
+#: diskdrake/smbnfs_gtk.pm:179 standalone/drakbackup:3497
#, c-format
msgid "Username"
msgstr ""
@@ -2352,26 +2362,26 @@ msgstr ""
msgid "Removing packages..."
msgstr ""
-#: fs.pm:416
+#: fs.pm:450
#, 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 ""
-#: fs.pm:419
+#: fs.pm:453
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
"the -a option will not cause the file system to be mounted)."
msgstr ""
-#: fs.pm:422
+#: fs.pm:456
#, c-format
msgid "Do not interpret character or block special devices on the file system."
msgstr ""
-#: fs.pm:424
+#: fs.pm:458
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
@@ -2379,7 +2389,7 @@ msgid ""
"containing binaries for architectures other than its own."
msgstr ""
-#: fs.pm:428
+#: fs.pm:462
#, c-format
msgid ""
"Do not allow set-user-identifier or set-group-identifier\n"
@@ -2387,17 +2397,17 @@ msgid ""
"have suidperl(1) installed.)"
msgstr ""
-#: fs.pm:432
+#: fs.pm:466
#, c-format
msgid "Mount the file system read-only."
msgstr ""
-#: fs.pm:434
+#: fs.pm:468
#, c-format
msgid "All I/O to the file system should be done synchronously."
msgstr ""
-#: fs.pm:438
+#: fs.pm:472
#, c-format
msgid ""
"Allow an ordinary user to mount the file system. The\n"
@@ -2407,66 +2417,61 @@ msgid ""
"user,exec,dev,suid )."
msgstr ""
-#: fs.pm:446
+#: fs.pm:480
#, c-format
msgid "Give write access to ordinary users"
msgstr ""
-#: fs.pm:448
+#: fs.pm:482
#, c-format
msgid "Give read-only access to ordinary users"
msgstr ""
-#: fs.pm:588 fs.pm:598 fs.pm:602 fs.pm:606 fs.pm:610 fs.pm:614 swap.pm:12
+#: fs.pm:635 fs.pm:645 fs.pm:649 fs.pm:653 fs.pm:657 fs.pm:661 swap.pm:12
#, c-format
msgid "%s formatting of %s failed"
msgstr ""
-#: fs.pm:655
+#: fs.pm:702
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr ""
-#: fs.pm:662 fs.pm:669
+#: fs.pm:709 fs.pm:716
#, c-format
msgid "Formatting partition %s"
msgstr ""
-#: fs.pm:666
+#: fs.pm:713
#, c-format
msgid "Creating and formatting file %s"
msgstr ""
-#: fs.pm:726 fs.pm:775
+#: fs.pm:773 fs.pm:822
#, c-format
msgid "Mounting partition %s"
msgstr ""
-#: fs.pm:727 fs.pm:776
+#: fs.pm:774 fs.pm:823
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: fs.pm:747 fs.pm:754
+#: fs.pm:794 fs.pm:801
#, c-format
msgid "Checking %s"
msgstr ""
-#: fs.pm:792 partition_table.pm:639
+#: fs.pm:839 partition_table.pm:640
#, c-format
msgid "error unmounting %s: %s"
msgstr ""
-#: fs.pm:824
+#: fs.pm:871
#, c-format
msgid "Enabling swap partition %s"
msgstr ""
-#: fsedit.pm:21
-#, c-format
-msgid "simple"
-msgstr ""
-
#: fsedit.pm:25
#, c-format
msgid "with /usr"
@@ -2489,34 +2494,34 @@ msgid ""
""
msgstr ""
-#: fsedit.pm:524
+#: fsedit.pm:525
#, c-format
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr ""
-#: fsedit.pm:525
+#: fsedit.pm:526
#, c-format
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: fsedit.pm:544
+#: fsedit.pm:545
#, c-format
msgid "Mount points must begin with a leading /"
msgstr ""
-#: fsedit.pm:545
+#: fsedit.pm:546
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr ""
-#: fsedit.pm:546
+#: fsedit.pm:547
#, c-format
msgid ""
"There is already a partition with mount point %s\n"
""
msgstr ""
-#: fsedit.pm:548
+#: fsedit.pm:549
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2524,12 +2529,12 @@ msgid ""
"Please be sure to add a /boot partition"
msgstr ""
-#: fsedit.pm:551
+#: fsedit.pm:552
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: fsedit.pm:553
+#: fsedit.pm:554
#, c-format
msgid ""
"You've selected a LVM Logical Volume as root (/).\n"
@@ -2537,39 +2542,39 @@ msgid ""
"Please be sure to add a /boot partition"
msgstr ""
-#: fsedit.pm:556
+#: fsedit.pm:557
#, c-format
msgid "You may not be able to install lilo (since lilo doesn't handle a LV on multiple PVs)"
msgstr ""
-#: fsedit.pm:559 fsedit.pm:561
+#: fsedit.pm:560 fsedit.pm:562
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr ""
-#: fsedit.pm:563 fsedit.pm:565
+#: fsedit.pm:564 fsedit.pm:566
#, c-format
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount point\n"
""
msgstr ""
-#: fsedit.pm:567
+#: fsedit.pm:568
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
-#: fsedit.pm:628
+#: fsedit.pm:629
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr ""
-#: fsedit.pm:630
+#: fsedit.pm:631
#, c-format
msgid "Nothing to do"
msgstr ""
-#: fsedit.pm:726
+#: fsedit.pm:727
#, c-format
msgid "Error opening %s for writing: %s"
msgstr ""
@@ -2649,7 +2654,7 @@ msgstr ""
msgid "Ethernetcard"
msgstr ""
-#: harddrake/data.pm:208 network/netconnect.pm:464
+#: harddrake/data.pm:208 network/netconnect.pm:470
#, c-format
msgid "Modem"
msgstr ""
@@ -2669,12 +2674,12 @@ msgstr ""
msgid "Bridges and system controllers"
msgstr ""
-#: harddrake/data.pm:248 help.pm:203 help.pm:991 install_steps_interactive.pm:927 printer/printerdrake.pm:687 printer/printerdrake.pm:4175
+#: harddrake/data.pm:248 help.pm:203 help.pm:991 install_steps_interactive.pm:938 printer/printerdrake.pm:687 printer/printerdrake.pm:4175
#, c-format
msgid "Printer"
msgstr ""
-#: harddrake/data.pm:257 help.pm:991 install_steps_interactive.pm:920
+#: harddrake/data.pm:257 help.pm:991 install_steps_interactive.pm:931
#, c-format
msgid "Mouse"
msgstr ""
@@ -2724,12 +2729,12 @@ msgstr ""
msgid "Scanner"
msgstr ""
-#: harddrake/data.pm:354 standalone/harddrake2:336
+#: harddrake/data.pm:354 standalone/harddrake2:431
#, c-format
msgid "Unknown/Others"
msgstr ""
-#: harddrake/data.pm:374
+#: harddrake/data.pm:382
#, c-format
msgid "cpu # "
msgstr ""
@@ -2954,7 +2959,7 @@ msgid ""
"will reboot your computer."
msgstr ""
-#: help.pm:14 install_steps_gtk.pm:598 install_steps_interactive.pm:88 install_steps_interactive.pm:690 standalone/drakautoinst:216
+#: help.pm:14 install_steps_gtk.pm:599 install_steps_interactive.pm:88 install_steps_interactive.pm:699 standalone/drakautoinst:216
#, c-format
msgid "Accept"
msgstr ""
@@ -3000,7 +3005,7 @@ msgid ""
"not interested in this feature, uncheck the \"%s\" box."
msgstr ""
-#: help.pm:52 help.pm:52 help.pm:197 help.pm:444 help.pm:691 help.pm:784 help.pm:1005 help.pm:1005 install_steps_gtk.pm:277 interactive.pm:403 interactive/newt.pm:308 network/netconnect.pm:271 network/tools.pm:166 printer/printerdrake.pm:3090 standalone/drakTermServ:397 standalone/drakbackup:3920 standalone/drakbackup:4014 standalone/drakbackup:4031 standalone/drakbackup:4049 ugtk2.pm:510
+#: help.pm:52 help.pm:52 help.pm:197 help.pm:444 help.pm:691 help.pm:784 help.pm:1005 help.pm:1005 install_steps_gtk.pm:277 interactive.pm:403 interactive/newt.pm:308 network/netconnect.pm:277 network/tools.pm:174 printer/printerdrake.pm:3090 standalone/drakTermServ:393 standalone/drakbackup:3929 standalone/drakbackup:4023 standalone/drakbackup:4040 standalone/drakbackup:4058 ugtk2.pm:510
#, c-format
msgid "Next"
msgstr ""
@@ -3119,7 +3124,7 @@ msgstr ""
msgid "Graphical Environment"
msgstr ""
-#: help.pm:137 install_steps_interactive.pm:552
+#: help.pm:137 install_steps_interactive.pm:556
#, c-format
msgid "With X"
msgstr ""
@@ -3134,7 +3139,7 @@ msgstr ""
msgid "Truly minimal install"
msgstr ""
-#: help.pm:137 install_steps_gtk.pm:272 install_steps_interactive.pm:598
+#: help.pm:137 install_steps_gtk.pm:272 install_steps_interactive.pm:602
#, c-format
msgid "Individual package selection"
msgstr ""
@@ -3182,12 +3187,12 @@ msgid ""
"create such a floppy."
msgstr ""
-#: help.pm:172 help.pm:301 help.pm:329 help.pm:457 install_any.pm:411 interactive.pm:149 modules/interactive.pm:71 standalone/harddrake2:225 ugtk2.pm:1083 wizards.pm:156
+#: help.pm:172 help.pm:301 help.pm:329 help.pm:457 install_any.pm:557 interactive.pm:149 modules/interactive.pm:71 standalone/harddrake2:299 ugtk2.pm:1081 wizards.pm:156
#, c-format
msgid "No"
msgstr ""
-#: help.pm:172 help.pm:301 help.pm:457 help.pm:457 install_any.pm:411 interactive.pm:149 modules/interactive.pm:71 printer/printerdrake.pm:607 standalone/drakgw:288 standalone/drakgw:289 standalone/drakgw:297 standalone/drakgw:307 standalone/harddrake2:224 ugtk2.pm:1083 wizards.pm:156
+#: help.pm:172 help.pm:301 help.pm:457 help.pm:457 install_any.pm:557 interactive.pm:149 modules/interactive.pm:71 printer/printerdrake.pm:607 standalone/drakgw:288 standalone/drakgw:289 standalone/drakgw:297 standalone/drakgw:307 standalone/harddrake2:298 ugtk2.pm:1081 wizards.pm:156
#, c-format
msgid "Yes"
msgstr ""
@@ -3239,7 +3244,7 @@ msgid ""
"similar to the one used during installation."
msgstr ""
-#: help.pm:203 help.pm:581 help.pm:991 help.pm:991 help.pm:991 help.pm:991 help.pm:991 help.pm:991 help.pm:991 install_steps_gtk.pm:648 standalone/drakbackup:2313 standalone/drakbackup:2321 standalone/drakbackup:2329 standalone/drakbackup:2337
+#: help.pm:203 help.pm:581 help.pm:991 help.pm:991 help.pm:991 help.pm:991 help.pm:991 help.pm:991 help.pm:991 install_steps_gtk.pm:654 standalone/drakbackup:2313 standalone/drakbackup:2321 standalone/drakbackup:2329 standalone/drakbackup:2337
#, c-format
msgid "Configure"
msgstr ""
@@ -3282,7 +3287,7 @@ msgid ""
"other machines on your local network as well."
msgstr ""
-#: help.pm:235 install_steps_interactive.pm:822
+#: help.pm:235 install_steps_interactive.pm:833
#, c-format
msgid "Hardware clock set to GMT"
msgstr ""
@@ -3534,17 +3539,17 @@ msgstr ""
msgid "Generate auto-install floppy"
msgstr ""
-#: help.pm:418 install_steps_interactive.pm:1316
+#: help.pm:418 install_steps_interactive.pm:1324
#, c-format
msgid "Replay"
msgstr ""
-#: help.pm:418 install_steps_interactive.pm:1316
+#: help.pm:418 install_steps_interactive.pm:1324
#, c-format
msgid "Automated"
msgstr ""
-#: help.pm:418 install_steps_interactive.pm:1319
+#: help.pm:418 install_steps_interactive.pm:1327
#, c-format
msgid "Save packages selection"
msgstr ""
@@ -3578,7 +3583,7 @@ msgid ""
"bad blocks on the disk."
msgstr ""
-#: help.pm:444 help.pm:1005 install_steps_gtk.pm:433 interactive.pm:404 interactive/newt.pm:307 printer/printerdrake.pm:3088 standalone/drakTermServ:376 standalone/drakbackup:3880 standalone/drakbackup:3919 standalone/drakbackup:4030 standalone/drakbackup:4045 ugtk2.pm:508
+#: help.pm:444 help.pm:1005 install_steps_gtk.pm:433 interactive.pm:404 interactive/newt.pm:307 printer/printerdrake.pm:3088 standalone/drakTermServ:372 standalone/drakbackup:3889 standalone/drakbackup:3928 standalone/drakbackup:4039 standalone/drakbackup:4054 ugtk2.pm:508
#, c-format
msgid "Previous"
msgstr ""
@@ -3599,7 +3604,7 @@ msgid ""
"selected package(s), or \"%s\" to abort."
msgstr ""
-#: help.pm:457 help.pm:602 install_steps_gtk.pm:432 install_steps_interactive.pm:148 standalone/drakbackup:4077
+#: help.pm:457 help.pm:602 install_steps_gtk.pm:432 install_steps_interactive.pm:152 standalone/drakbackup:4086
#, c-format
msgid "Install"
msgstr ""
@@ -3941,7 +3946,7 @@ msgid "authentication"
msgstr ""
#. -PO: keep this short or else the buttons will not fit in the window
-#: help.pm:733 install_steps_interactive.pm:1146
+#: help.pm:733 install_steps_interactive.pm:1157
#, c-format
msgid "No password"
msgstr ""
@@ -4216,7 +4221,7 @@ msgid ""
"driver."
msgstr ""
-#: help.pm:929 help.pm:991 install_steps_interactive.pm:954 install_steps_interactive.pm:971
+#: help.pm:929 help.pm:991 install_steps_interactive.pm:965 install_steps_interactive.pm:982
#, c-format
msgid "Sound card"
msgstr ""
@@ -4286,12 +4291,12 @@ msgid ""
"idea to review this setup."
msgstr ""
-#: help.pm:991 install_steps_interactive.pm:110 install_steps_interactive.pm:887 standalone/keyboarddrake:23
+#: help.pm:991 install_steps_interactive.pm:114 install_steps_interactive.pm:898 standalone/keyboarddrake:23
#, c-format
msgid "Keyboard"
msgstr ""
-#: help.pm:991 install_steps_interactive.pm:913 standalone/drakclock:75
+#: help.pm:991 install_steps_interactive.pm:924 standalone/drakclock:75
#, c-format
msgid "Timezone"
msgstr ""
@@ -4301,7 +4306,7 @@ msgstr ""
msgid "Graphical Interface"
msgstr ""
-#: help.pm:991 install_steps_interactive.pm:987
+#: help.pm:991 install_steps_interactive.pm:998
#, c-format
msgid "TV card"
msgstr ""
@@ -4311,27 +4316,27 @@ msgstr ""
msgid "ISDN card"
msgstr ""
-#: help.pm:991 install_steps_interactive.pm:1005 standalone/drakbackup:2010
+#: help.pm:991 install_steps_interactive.pm:1016 standalone/drakbackup:2010
#, c-format
msgid "Network"
msgstr ""
-#: help.pm:991 install_steps_interactive.pm:1031
+#: help.pm:991 install_steps_interactive.pm:1042
#, c-format
msgid "Security Level"
msgstr ""
-#: help.pm:991 install_steps_interactive.pm:1045
+#: help.pm:991 install_steps_interactive.pm:1056
#, c-format
msgid "Firewall"
msgstr ""
-#: help.pm:991 install_steps_interactive.pm:1059
+#: help.pm:991 install_steps_interactive.pm:1070
#, c-format
msgid "Bootloader"
msgstr ""
-#: help.pm:991 install_steps_interactive.pm:1069 services.pm:195
+#: help.pm:991 install_steps_interactive.pm:1080 services.pm:195
#, c-format
msgid "Services"
msgstr ""
@@ -4366,7 +4371,22 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: install_any.pm:402
+#: install_any.pm:372
+#, c-format
+msgid "Do you have a supplementary CD to install?"
+msgstr ""
+
+#: install_any.pm:383
+#, c-format
+msgid "Insert the CD"
+msgstr ""
+
+#: install_any.pm:451
+#, c-format
+msgid "Insert the CD 1 again"
+msgstr ""
+
+#: install_any.pm:548
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4381,7 +4401,7 @@ msgid ""
""
msgstr ""
-#: install_any.pm:423
+#: install_any.pm:569
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4391,27 +4411,27 @@ msgid ""
""
msgstr ""
-#: install_any.pm:818
+#: install_any.pm:933
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr ""
-#: install_any.pm:822
+#: install_any.pm:937
#, c-format
msgid "This floppy is not FAT formatted"
msgstr ""
-#: install_any.pm:834
+#: install_any.pm:949
#, c-format
msgid "To use this saved packages selection, boot installation with ``linux defcfg=floppy''"
msgstr ""
-#: install_any.pm:862 partition_table.pm:848
+#: install_any.pm:977 partition_table.pm:849
#, c-format
msgid "Error reading file %s"
msgstr ""
-#: install_any.pm:987
+#: install_any.pm:1108
#, 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 ""
@@ -4627,7 +4647,7 @@ msgid ""
"1. License Agreement\n"
"\n"
"Please read this document carefully. This document is a license agreement between you and \n"
-"MandrakeSoft S.A. which applies to the Software Products.\n"
+"Mandrakesoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you explicitly \n"
"accept and fully agree to conform to the terms and conditions of this License. \n"
"If you disagree with any portion of the License, you are not allowed to install, duplicate or use \n"
@@ -4642,16 +4662,16 @@ msgid ""
"\n"
"The Software Products and attached documentation are provided \"as is\", with no warranty, to the \n"
"extent permitted by law.\n"
-"MandrakeSoft S.A. will, in no circumstances and to the extent permitted by law, be liable for any special,\n"
+"Mandrakesoft S.A. will, in no circumstances and to the extent permitted by law, be liable for any special,\n"
"incidental, direct or indirect damages whatsoever (including without limitation damages for loss of \n"
"business, interruption of business, financial loss, legal fees and penalties resulting from a court \n"
"judgment, or any other consequential loss) arising out of the use or inability to use the Software \n"
-"Products, even if MandrakeSoft S.A. has been advised of the possibility or occurence of such \n"
+"Products, even if Mandrakesoft S.A. has been advised of the possibility or occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME COUNTRIES\n"
"\n"
-"To the extent permitted by law, MandrakeSoft S.A. or its distributors will, in no circumstances, be \n"
+"To the extent permitted by law, Mandrakesoft S.A. or its distributors will, in no circumstances, be \n"
"liable for any special, incidental, direct or indirect damages whatsoever (including without \n"
"limitation damages for loss of business, interruption of business, financial loss, legal fees \n"
"and penalties resulting from a court judgment, or any other consequential loss) arising out \n"
@@ -4668,9 +4688,9 @@ msgid ""
"Licence, hereafter called \"GPL\", or of similar licenses. Most of these licenses allow you to use, \n"
"duplicate, adapt or redistribute the components which they cover. Please read carefully the terms \n"
"and conditions of the license agreement for each component before using any component. Any question \n"
-"on a component license should be addressed to the component author and not to MandrakeSoft.\n"
-"The programs developed by MandrakeSoft S.A. are governed by the GPL License. Documentation written \n"
-"by MandrakeSoft S.A. is governed by a specific license. Please refer to the documentation for \n"
+"on a component license should be addressed to the component author and not to Mandrakesoft.\n"
+"The programs developed by Mandrakesoft S.A. are governed by the GPL License. Documentation written \n"
+"by Mandrakesoft S.A. is governed by a specific license. Please refer to the documentation for \n"
"further details.\n"
"\n"
"\n"
@@ -4678,9 +4698,9 @@ msgid ""
"\n"
"All rights to the components of the Software Products belong to their respective authors and are \n"
"protected by intellectual property and copyright laws applicable to software programs.\n"
-"MandrakeSoft S.A. reserves its rights to modify or adapt the Software Products, as a whole or in \n"
+"Mandrakesoft S.A. reserves its rights to modify or adapt the Software Products, as a whole or in \n"
"parts, by all means and for all purposes.\n"
-"\"Mandrake\", \"Mandrakelinux\" and associated logos are trademarks of MandrakeSoft S.A. \n"
+"\"Mandrake\", \"Mandrakelinux\" and associated logos are trademarks of Mandrakesoft S.A. \n"
"\n"
"\n"
"5. Governing Laws \n"
@@ -4691,7 +4711,7 @@ msgid ""
"The terms and conditions of this License are governed by the Laws of France.\n"
"All disputes on the terms of this license will preferably be settled out of court. As a last \n"
"resort, the dispute will be referred to the appropriate Courts of Law of Paris - France.\n"
-"For any question on this document, please contact MandrakeSoft S.A. \n"
+"For any question on this document, please contact Mandrakesoft S.A. \n"
""
msgstr ""
@@ -4796,12 +4816,12 @@ msgid ""
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
-#: install_steps_gtk.pm:232 install_steps_interactive.pm:580
+#: install_steps_gtk.pm:232 install_steps_interactive.pm:584
#, c-format
msgid "Package Group Selection"
msgstr ""
-#: install_steps_gtk.pm:294 install_steps_interactive.pm:519
+#: install_steps_gtk.pm:294 install_steps_interactive.pm:523
#, c-format
msgid "Total size: %d / %d MB"
msgstr ""
@@ -4915,12 +4935,12 @@ msgstr ""
msgid "Minimal install"
msgstr ""
-#: install_steps_gtk.pm:455 install_steps_interactive.pm:427
+#: install_steps_gtk.pm:455 install_steps_interactive.pm:431
#, c-format
msgid "Choose the packages you want to install"
msgstr ""
-#: install_steps_gtk.pm:471 install_steps_interactive.pm:666
+#: install_steps_gtk.pm:471 install_steps_interactive.pm:674
#, c-format
msgid "Installing"
msgstr ""
@@ -4955,36 +4975,35 @@ msgstr ""
msgid "Installing package %s"
msgstr ""
-#: install_steps_gtk.pm:598 install_steps_interactive.pm:88 install_steps_interactive.pm:690
+#: install_steps_gtk.pm:599 install_steps_interactive.pm:88 install_steps_interactive.pm:699
#, c-format
msgid "Refuse"
msgstr ""
-#: install_steps_gtk.pm:599 install_steps_interactive.pm:691
+#: install_steps_gtk.pm:603 install_steps_interactive.pm:703
#, c-format
msgid ""
"Change your Cd-Rom!\n"
-"\n"
"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when done.\n"
"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
-#: install_steps_gtk.pm:614 install_steps_interactive.pm:703
+#: install_steps_gtk.pm:618 install_steps_interactive.pm:714
#, c-format
msgid "There was an error ordering packages:"
msgstr ""
-#: install_steps_gtk.pm:614 install_steps_gtk.pm:618 install_steps_interactive.pm:703 install_steps_interactive.pm:707
+#: install_steps_gtk.pm:618 install_steps_gtk.pm:622 install_steps_interactive.pm:714 install_steps_interactive.pm:718
#, c-format
msgid "Go on anyway?"
msgstr ""
-#: install_steps_gtk.pm:618 install_steps_interactive.pm:707
+#: install_steps_gtk.pm:622 install_steps_interactive.pm:718
#, c-format
msgid "There was an error installing packages:"
msgstr ""
-#: install_steps_gtk.pm:658 install_steps_interactive.pm:869 install_steps_interactive.pm:1021
+#: install_steps_gtk.pm:664 install_steps_interactive.pm:880 install_steps_interactive.pm:1032
#, c-format
msgid "not configured"
msgstr ""
@@ -4999,216 +5018,216 @@ msgstr ""
msgid "License agreement"
msgstr ""
-#: install_steps_interactive.pm:111
+#: install_steps_interactive.pm:115
#, c-format
msgid "Please choose your keyboard layout."
msgstr ""
-#: install_steps_interactive.pm:113
+#: install_steps_interactive.pm:117
#, c-format
msgid "Here is the full list of available keyboards"
msgstr ""
-#: install_steps_interactive.pm:143
+#: install_steps_interactive.pm:147
#, c-format
msgid "Install/Upgrade"
msgstr ""
-#: install_steps_interactive.pm:144
+#: install_steps_interactive.pm:148
#, c-format
msgid "Is this an install or an upgrade?"
msgstr ""
-#: install_steps_interactive.pm:150
+#: install_steps_interactive.pm:154
#, c-format
msgid "Upgrade %s"
msgstr ""
-#: install_steps_interactive.pm:160
+#: install_steps_interactive.pm:164
#, c-format
msgid "Encryption key for %s"
msgstr ""
-#: install_steps_interactive.pm:177
+#: install_steps_interactive.pm:181
#, c-format
msgid "Please choose your type of mouse."
msgstr ""
-#: install_steps_interactive.pm:186 standalone/mousedrake:46
+#: install_steps_interactive.pm:190 standalone/mousedrake:45
#, c-format
msgid "Mouse Port"
msgstr ""
-#: install_steps_interactive.pm:187 standalone/mousedrake:47
+#: install_steps_interactive.pm:191 standalone/mousedrake:46
#, c-format
msgid "Please choose which serial port your mouse is connected to."
msgstr ""
-#: install_steps_interactive.pm:197
+#: install_steps_interactive.pm:201
#, c-format
msgid "Buttons emulation"
msgstr ""
-#: install_steps_interactive.pm:199
+#: install_steps_interactive.pm:203
#, c-format
msgid "Button 2 Emulation"
msgstr ""
-#: install_steps_interactive.pm:200
+#: install_steps_interactive.pm:204
#, c-format
msgid "Button 3 Emulation"
msgstr ""
-#: install_steps_interactive.pm:221
+#: install_steps_interactive.pm:225
#, c-format
msgid "PCMCIA"
msgstr ""
-#: install_steps_interactive.pm:221
+#: install_steps_interactive.pm:225
#, c-format
msgid "Configuring PCMCIA cards..."
msgstr ""
-#: install_steps_interactive.pm:228
+#: install_steps_interactive.pm:232
#, c-format
msgid "IDE"
msgstr ""
-#: install_steps_interactive.pm:228
+#: install_steps_interactive.pm:232
#, c-format
msgid "Configuring IDE"
msgstr ""
-#: install_steps_interactive.pm:248 network/tools.pm:155
+#: install_steps_interactive.pm:252 network/tools.pm:163
#, c-format
msgid "No partition available"
msgstr ""
-#: install_steps_interactive.pm:251
+#: install_steps_interactive.pm:255
#, c-format
msgid "Scanning partitions to find mount points"
msgstr ""
-#: install_steps_interactive.pm:258
+#: install_steps_interactive.pm:262
#, c-format
msgid "Choose the mount points"
msgstr ""
-#: install_steps_interactive.pm:288
+#: install_steps_interactive.pm:292
#, c-format
msgid "No free space for 1MB bootstrap! Install will continue, but to boot your system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: install_steps_interactive.pm:325
+#: install_steps_interactive.pm:329
#, c-format
msgid "Choose the partitions you want to format"
msgstr ""
-#: install_steps_interactive.pm:327
+#: install_steps_interactive.pm:331
#, c-format
msgid "Check bad blocks?"
msgstr ""
-#: install_steps_interactive.pm:359
+#: install_steps_interactive.pm:363
#, c-format
msgid "Failed to check filesystem %s. Do you want to repair the errors? (beware, you can lose data)"
msgstr ""
-#: install_steps_interactive.pm:362
+#: install_steps_interactive.pm:366
#, c-format
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
-#: install_steps_interactive.pm:369
+#: install_steps_interactive.pm:373
#, c-format
msgid "Looking for available packages and rebuilding rpm database..."
msgstr ""
-#: install_steps_interactive.pm:370 install_steps_interactive.pm:389
+#: install_steps_interactive.pm:374 install_steps_interactive.pm:393
#, c-format
msgid "Looking for available packages..."
msgstr ""
-#: install_steps_interactive.pm:373
+#: install_steps_interactive.pm:377
#, c-format
msgid "Looking at packages already installed..."
msgstr ""
-#: install_steps_interactive.pm:377
+#: install_steps_interactive.pm:381
#, c-format
msgid "Finding packages to upgrade..."
msgstr ""
-#: install_steps_interactive.pm:398
+#: install_steps_interactive.pm:402
#, c-format
msgid "Your system does not have enough space left for installation or upgrade (%d > %d)"
msgstr ""
-#: install_steps_interactive.pm:439
+#: install_steps_interactive.pm:443
#, c-format
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: install_steps_interactive.pm:441
+#: install_steps_interactive.pm:445
#, c-format
msgid "Load from floppy"
msgstr ""
-#: install_steps_interactive.pm:441
+#: install_steps_interactive.pm:445
#, c-format
msgid "Save on floppy"
msgstr ""
-#: install_steps_interactive.pm:445
+#: install_steps_interactive.pm:449
#, c-format
msgid "Package selection"
msgstr ""
-#: install_steps_interactive.pm:445
+#: install_steps_interactive.pm:449
#, c-format
msgid "Loading from floppy"
msgstr ""
-#: install_steps_interactive.pm:450
+#: install_steps_interactive.pm:454
#, c-format
msgid "Insert a floppy containing package selection"
msgstr ""
-#: install_steps_interactive.pm:533
+#: install_steps_interactive.pm:537
#, c-format
msgid "Selected size is larger than available space"
msgstr ""
-#: install_steps_interactive.pm:548
+#: install_steps_interactive.pm:552
#, c-format
msgid "Type of install"
msgstr ""
-#: install_steps_interactive.pm:549
+#: install_steps_interactive.pm:553
#, c-format
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: install_steps_interactive.pm:553
+#: install_steps_interactive.pm:557
#, c-format
msgid "With basic documentation (recommended!)"
msgstr ""
-#: install_steps_interactive.pm:554
+#: install_steps_interactive.pm:558
#, c-format
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: install_steps_interactive.pm:597 standalone/drakxtv:50
+#: install_steps_interactive.pm:601 standalone/drakxtv:50
#, c-format
msgid "All"
msgstr ""
-#: install_steps_interactive.pm:641
+#: install_steps_interactive.pm:648
#, c-format
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
@@ -5216,34 +5235,34 @@ msgid ""
"If only some CDs are missing, unselect them, then click Ok."
msgstr ""
-#: install_steps_interactive.pm:646
+#: install_steps_interactive.pm:653
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr ""
-#: install_steps_interactive.pm:666
+#: install_steps_interactive.pm:674
#, c-format
msgid "Preparing installation"
msgstr ""
-#: install_steps_interactive.pm:675
+#: install_steps_interactive.pm:683
#, c-format
msgid ""
"Installing package %s\n"
"%d%%"
msgstr ""
-#: install_steps_interactive.pm:721
+#: install_steps_interactive.pm:732
#, c-format
msgid "Post-install configuration"
msgstr ""
-#: install_steps_interactive.pm:727
+#: install_steps_interactive.pm:738
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr ""
-#: install_steps_interactive.pm:748
+#: install_steps_interactive.pm:759
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -5256,168 +5275,168 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: install_steps_interactive.pm:769
+#: install_steps_interactive.pm:780
#, c-format
msgid "Contacting Mandrakelinux web site to get the list of available mirrors..."
msgstr ""
-#: install_steps_interactive.pm:774
+#: install_steps_interactive.pm:785
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr ""
-#: install_steps_interactive.pm:788
+#: install_steps_interactive.pm:799
#, c-format
msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
-#: install_steps_interactive.pm:792
+#: install_steps_interactive.pm:803
#, c-format
msgid "Unable to contact mirror %s"
msgstr ""
-#: install_steps_interactive.pm:792
+#: install_steps_interactive.pm:803
#, c-format
msgid "Would you like to try again?"
msgstr ""
-#: install_steps_interactive.pm:818 standalone/drakclock:45
+#: install_steps_interactive.pm:829 standalone/drakclock:45
#, c-format
msgid "Which is your timezone?"
msgstr ""
-#: install_steps_interactive.pm:823
+#: install_steps_interactive.pm:834
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: install_steps_interactive.pm:831
+#: install_steps_interactive.pm:842
#, c-format
msgid "NTP Server"
msgstr ""
-#: install_steps_interactive.pm:873 steps.pm:30
+#: install_steps_interactive.pm:884 steps.pm:30
#, c-format
msgid "Summary"
msgstr ""
-#: install_steps_interactive.pm:886 install_steps_interactive.pm:894 install_steps_interactive.pm:912 install_steps_interactive.pm:919 install_steps_interactive.pm:1068 services.pm:135 standalone/drakbackup:1572
+#: install_steps_interactive.pm:897 install_steps_interactive.pm:905 install_steps_interactive.pm:923 install_steps_interactive.pm:930 install_steps_interactive.pm:1079 services.pm:135 standalone/drakbackup:1572
#, c-format
msgid "System"
msgstr ""
-#: install_steps_interactive.pm:926 install_steps_interactive.pm:953 install_steps_interactive.pm:970 install_steps_interactive.pm:986 install_steps_interactive.pm:997
+#: install_steps_interactive.pm:937 install_steps_interactive.pm:964 install_steps_interactive.pm:981 install_steps_interactive.pm:997 install_steps_interactive.pm:1008
#, c-format
msgid "Hardware"
msgstr ""
-#: install_steps_interactive.pm:932 install_steps_interactive.pm:941
+#: install_steps_interactive.pm:943 install_steps_interactive.pm:952
#, c-format
msgid "Remote CUPS server"
msgstr ""
-#: install_steps_interactive.pm:932
+#: install_steps_interactive.pm:943
#, c-format
msgid "No printer"
msgstr ""
-#: install_steps_interactive.pm:974
+#: install_steps_interactive.pm:985
#, c-format
msgid "Do you have an ISA sound card?"
msgstr ""
-#: install_steps_interactive.pm:976
+#: install_steps_interactive.pm:987
#, c-format
msgid "Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: install_steps_interactive.pm:978
+#: install_steps_interactive.pm:989
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: install_steps_interactive.pm:998
+#: install_steps_interactive.pm:1009
#, c-format
msgid "Graphical interface"
msgstr ""
-#: install_steps_interactive.pm:1004 install_steps_interactive.pm:1019