package modules; # $Id$ use strict; use common; use detect_devices; use run_program; use log; use list_modules; use modules::any_conf; sub modules_descriptions() { my $f = '/lib/modules/' . c::kernel_version() . '/modules.description'; map { my ($m, $d) = /(\S+)\s+(.*)/; $m =~ s/-/_/g; ($m => $d) } cat_($f); } sub module2description { +{ modules_descriptions() }->{$_[0]} } sub category2modules_and_description { my ($categories) = @_; my %modules_descriptions = modules_descriptions(); map { $_ => $modules_descriptions{$_} } category2modules($categories); } my %mappings_24_26 = ( "usb_ohci" => "ohci_hcd", "usb_uhci" => "uhci_hcd", "uhci" => "uhci_hcd", "printer" => "usblp", "bcm4400" => "b44", "3c559" => "3c359", "3c90x" => "3c59x", "dc395x_trm" => "dc395x", ); my %mappings_26_24 = reverse %mappings_24_26; $mappings_26_24{'uhci_hcd'} = 'usb_uhci'; my @parallel_zip_modules = qw(imm ppa); sub mapping_24_26 { my ($modname) = @_; $mappings_24_26{$modname} || $modname; } sub mapping_26_24 { my ($modname) = @_; $mappings_26_24{$modname} || $modname; } sub cond_mapping_24_26 { my ($modname) = @_; $mappings_24_26{$modname} || list_modules::filename2modname($modname); } sub module_is_available { my ($module) = @_; defined list_modules::modname2filename($module); } #-############################################################################### #- module loading #-############################################################################### # handles dependencies sub load_raw { my ($l, $h_options) = @_; if ($::testing || $::local_install) { log::l("i would load module $_ ($h_options->{$_})") foreach @$l; } elsif ($::isInstall) { load_raw_install($l, $h_options); } else { run_program::run('/sbin/modprobe', $_, split(' ', $h_options->{$_})) or !run_program::run('/sbin/modprobe', '-n', $_) #- ignore missing modules or die "insmod'ing module $_ failed" foreach @$l; } if (any { /^(mousedev|printer)$/ } @$l) { sleep 2; } elsif (member('usb_storage', @$l)) { #- usb_storage is only modprobed when we know there is some scsi devices #- so trying hard to wait for devices to be detected #- first sleep the minimum time usb-stor-scan takes sleep 5; #- 5 == /sys/module/usb_storage/parameters/delay_use # then wait for usb-stor-scan to complete my $retry = 0; while ($retry++ < 10) { fuzzy_pidofs('usb-stor-scan') or last; sleep 1; log::l("waiting for usb_storage devices to appear (retry = $retry)"); } } } sub load_with_options { my ($l, $h_options) = @_; my @l = map { if_(member($_, 'plip', @parallel_zip_modules), 'parport_pc'), if_($_ eq 'vfat', 'nls_cp437', 'nls_iso8859_1'), dependencies_closure(cond_mapping_24_26($_)); } @$l; @l = remove_loaded_modules(@l) or return; my %options = map { cond_mapping_24_26($_) => $h_options->{$_} } keys %$h_options; load_raw(\@l, \%options); } sub load { my (@l) = @_; load_with_options(\@l, {}); } # eg: load_and_configure($modules_conf, 'bt878', [ bttv => 'no_overlay=1' ]) sub load_and_configure { my ($conf, $module, $o_options) = @_; my @l = remove_loaded_modules(dependencies_closure(cond_mapping_24_26($module))); load_raw(\@l, { cond_mapping_24_26($module) => $o_options }); if (member($module, @parallel_zip_modules) && ! -d "/proc/sys/dev/parport/parport0/devices/$module") { log::l("$module loaded but is not useful, removing"); unload($module); return; } $conf->set_options($module, $o_options) if $o_options; when_load($conf, $module); } sub unload { if ($::testing) { log::l("rmmod $_") foreach @_; } else { run_program::run("rmmod", $_) foreach @_; } } sub load_category { my ($conf, $category, $o_wait_message) = @_; my @try_modules = ( if_($category =~ /scsi/, if_(detect_devices::usbStorage(), 'usb_storage'), ), arch() =~ /ppc/ ? ( if_($category =~ /scsi/, if_(detect_devices::has_mesh(), 'mesh'), if_(detect_devices::has_53c94(), 'mac53c94'), ), if_($category =~ /net/, 'bmac', 'gmac', 'mace', 'airport'), ) : (), ); my @l = ( (map { my $other = { ahci => 'ata_piix', ata_piix => 'ahci' }->{$_->{driver}}; $_->{try} = 1 if $other; ($_, if_($other, { %$_, driver => $other })); } detect_devices::probe_category($category)), (map { { driver => $_, description => $_, try => 1 } } @try_modules), ); foreach (@l) { $o_wait_message->($_->{description}, $_->{driver}) if $o_wait_message; eval { load_and_configure($conf, $_->{driver}, $_->{options}) }; $_->{error} = $@; $_->{try} = 1 if member($_->{driver}, 'hptraid', 'ohci1394'); #- do not warn when this fails } eval { load_and_configure($conf, 'ide_generic') } if $category eq 'disk/ide'; grep { !($_->{error} && $_->{try}) } @l; } sub load_parallel_zip { my ($conf) = @_; arch() !~ /ppc/ or return; grep { eval { load_and_configure($conf, $_); 1 }; } @parallel_zip_modules; } #-############################################################################### #- modules.conf functions #-############################################################################### sub write_preload_conf { my ($conf) = @_; my @l; my $is_laptop = detect_devices::isLaptop(); my $manufacturer = detect_devices::dmidecode_category('System')->{Manufacturer}; push @l, 'scsi_hostadapter' if $conf->get_probeall('scsi_hostadapter'); push @l, detect_devices::probe_name('Module'); push @l, 'nvram' if $is_laptop; push @l, map { $_->{driver} } detect_devices::probe_category($_) foreach qw(multimedia/dvb multimedia/tv various/agpgart various/laptop input/joystick various/crypto disk/card_reader); push @l, 'padlock-aes', 'padlock-sha' if cat_("/proc/cpuinfo") =~ /rng_en/; push @l, 'evdev' if any { $_->{Synaptics} || $_->{ALPS} || $_->{HWHEEL} } detect_devices::getInputDevices(); push @l, 'hdaps' if $is_laptop && $manufacturer eq 'LENOVO'; append_to_modules_loaded_at_startup("$::prefix/etc/modprobe.preload", @l); } sub append_to_modules_loaded_at_startup_for_all_kernels { append_to_modules_loaded_at_startup($_, @_) foreach "$::prefix/etc/modprobe.preload"; } sub append_to_modules_loaded_at_startup { my ($file, @l) = @_; my $l = join '|', map { '^\s*' . $_ . '\s*$' } @l; log::l("to put in $file ", join(", ", @l)); substInFile { $_ = '' if $l && /$l/; $_ .= join '', map { "$_\n" } @l if eof; } $file; } sub set_preload_modules { my ($service, @modules) = @_; my $preload_file = "$::prefix/etc/modprobe.preload.d/$service"; if (@modules) { output_p($preload_file, join("\n", @modules, '')); } else { unlink($preload_file); } eval { load(@modules) } if @modules && !$::isInstall; } #-############################################################################### #- internal functions #-############################################################################### sub loaded_modules() { map { /(\S+)/ } cat_("/proc/modules"); } sub remove_loaded_modules { my (@l) = @_; difference2([ uniq(@l) ], [ map { my $s = $_; $s =~ s/_/-/g; $s, $_ } loaded_modules() ]); } sub read_already_loaded { my ($conf) = @_; when_load($conf, $_) foreach reverse loaded_modules(); } sub when_load { my ($conf, $name) = @_; if (my $category = module2category($name)) { when_load_category($conf, $name, $category); } if (my @above = $conf->get_above($name)) { load(@above); #- eg: for snd-pcm-oss set by set_sound_slot() } } sub when_load_category { my ($conf, $name, $category) = @_; if ($category =~ m,disk/ide,) { $conf->add_probeall('ide-controller', $name); eval { load('ide_disk') }; } elsif ($category =~ m,disk/(scsi|hardware_raid|sata|usb|firewire),) { $conf->add_probeall('scsi_hostadapter', $name); eval { load('sd_mod') }; } elsif ($category eq 'bus/usb') { $conf->add_probeall('usb-interface', $name); -f '/proc/bus/usb/devices' or eval { require fs::mount; fs::mount::usbfs(''); #- ensure keyboard is working, the kernel must do the job the BIOS was doing sleep 4; load("usbhid") if detect_devices::usbKeyboards(); }; } elsif ($category eq 'bus/firewire') { $conf->set_alias('ieee1394-controller', $name); } elsif ($category =~ /sound/) { my $sound_alias = find { /^sound-slot-[0-9]+$/ && $conf->get_alias($_) eq $name } $conf->modules; $sound_alias ||= 'sound-slot-0'; $conf->set_sound_slot($sound_alias, $name); } elsif ($category =~ m!disk/card_reader!) { my @modules = ('mmc_block', if_($name =~ /tifm_7xx1/, 'tifm_sd')); $conf->set_above($name, join(' ', @modules)); } } #-############################################################################### #- isInstall functions #-############################################################################### sub module_extension() { ".ko" } sub extract_modules { my ($dir, @modules) = @_; map { my $modname = $_; my $path = list_modules::modname2path($modname); my $f = $modname . module_extension(); if (-e $path) { system("gzip -dc $path > $dir/$f") == 0 or unlink "$dir/$f"; } else { log::l("warning: unable to get module filename for $modname (path: $path)"); } "$dir/$f"; } @modules; } sub load_raw_install { my ($l, $options) = @_; extract_modules('/tmp', @$l); my @failed = grep { my $m = '/tmp/' . $_ . module_extension(); if (-e $m) { my $stdout; my $rc = run_program::run('/sbin/insmod', '2>', \$stdout, $m, split(' ', $options->{$_})); log::l(chomp_($stdout)) if $stdout; if ($rc) { unlink $m; ''; } } else { log::l("missing module $_"); 'error'; } } @$l; die "insmod'ing module " . join(", ", @failed) . " failed" if @failed; } 1; 37&id=7a82ed2547bcbfaf049c836ff154f59f51a7de17'>Diffstat (limited to 'perl-install/install/share/po')
diff --git a/perl-install/install/share/po/DrakX.pot b/perl-install/install/share/po/DrakX.pot index 8019be4ff..6916ea561 100644 --- a/perl-install/install/share/po/DrakX.pot +++ b/perl-install/install/share/po/DrakX.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-04-17 22:54+0200\n" +"POT-Creation-Date: 2012-04-18 20:30+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" @@ -334,22 +334,22 @@ msgid "" "%s" msgstr "" -#: pkgs.pm:360 +#: pkgs.pm:369 #, c-format msgid "An error occurred:" msgstr "" -#: pkgs.pm:833 +#: pkgs.pm:843 pkgs.pm:880 #, c-format msgid "Do not ask again" msgstr "" -#: pkgs.pm:849 +#: pkgs.pm:859 #, c-format msgid "%d installation transactions failed" msgstr "" -#: pkgs.pm:850 +#: pkgs.pm:860 #, c-format msgid "Installation of packages failed:" msgstr "" @@ -1305,17 +1305,18 @@ msgstr "" msgid "Preparing bootloader..." msgstr "" -#: steps_interactive.pm:1039 +#. -PO: This is NOT the boot loader!!!! +#: steps_interactive.pm:1041 #, c-format msgid "Preparing initial startup program..." msgstr "" -#: steps_interactive.pm:1040 +#: steps_interactive.pm:1042 #, c-format msgid "Be patient, this may take a while..." msgstr "" -#: steps_interactive.pm:1051 +#: steps_interactive.pm:1053 #, c-format msgid "" "You appear to have an OldWorld or Unknown machine, the yaboot bootloader " @@ -1324,24 +1325,24 @@ msgid "" "root fs is: root=%s" msgstr "" -#: steps_interactive.pm:1064 +#: steps_interactive.pm:1066 #, c-format msgid "" "In this security level, access to the files in the Windows partition is " "restricted to the administrator." msgstr "" -#: steps_interactive.pm:1096 +#: steps_interactive.pm:1098 #, c-format msgid "Insert a blank floppy in drive %s" msgstr "" -#: steps_interactive.pm:1098 +#: steps_interactive.pm:1100 #, c-format msgid "Creating auto install floppy..." msgstr "" -#: steps_interactive.pm:1109 +#: steps_interactive.pm:1111 #, c-format msgid "" "Some steps are not completed.\n" @@ -1349,12 +1350,12 @@ msgid "" "Do you really want to quit now?" msgstr "" -#: steps_interactive.pm:1119 +#: steps_interactive.pm:1121 #, c-format msgid "Congratulations" msgstr "" -#: steps_interactive.pm:1122 +#: steps_interactive.pm:1124 #, c-format msgid "Reboot" msgstr "" diff --git a/perl-install/install/share/po/af.po b/perl-install/install/share/po/af.po index cd0da3f1f..03f3d9481 100644 --- a/perl-install/install/share/po/af.po +++ b/perl-install/install/share/po/af.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: DrakX-af\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-04-17 22:54+0200\n" +"POT-Creation-Date: 2012-04-18 20:30+0200\n" "PO-Revision-Date: 2005-04-21 17:33+0200\n" "Last-Translator: Dirk van der Walt <dirkvanderwalt@webmail.co.za>\n" "Language-Team: Afrikaans\n" @@ -345,22 +345,22 @@ msgid "" "%s" msgstr "" -#: pkgs.pm:360 +#: pkgs.pm:369 #, fuzzy, c-format msgid "An error occurred:" msgstr "'n Fout het voorgekom" -#: pkgs.pm:833 +#: pkgs.pm:843 pkgs.pm:880 #, c-format msgid "Do not ask again" msgstr "" -#: pkgs.pm:849 +#: pkgs.pm:859 #, fuzzy, c-format msgid "%d installation transactions failed" msgstr "onsuksesvolle installasie" -#: pkgs.pm:850 +#: pkgs.pm:860 #, fuzzy, c-format msgid "Installation of packages failed:" msgstr "Installeer pakket %s" @@ -1365,17 +1365,18 @@ msgstr "U het nog nie 'X' opgestel nie. Verlang u dit regtig?" msgid "Preparing bootloader..." msgstr "Herlaaistelsel word voorberei..." -#: steps_interactive.pm:1039 +#. -PO: This is NOT the boot loader!!!! +#: steps_interactive.pm:1041 #, fuzzy, c-format msgid "Preparing initial startup program..." msgstr "Berei installasie voor" -#: steps_interactive.pm:1040 +#: steps_interactive.pm:1042 #, c-format msgid "Be patient, this may take a while..." msgstr "" -#: steps_interactive.pm:1051 +#: steps_interactive.pm:1053 #, fuzzy, c-format msgid "" "You appear to have an OldWorld or Unknown machine, the yaboot bootloader " @@ -1388,7 +1389,7 @@ msgstr "" "Ons sal voortgaan met die installasie, maar u sal\n" "BootX of 'n ander manier moet gedruik om u rekenaar te selflaai" -#: steps_interactive.pm:1064 +#: steps_interactive.pm:1066 #, c-format msgid "" "In this security level, access to the files in the Windows partition is " @@ -1397,17 +1398,17 @@ msgstr "" "Met hierdie sekuriteitsvlak word toegang na lêers op die Windows partisie " "vernou na slegs die administrateur" -#: steps_interactive.pm:1096 +#: steps_interactive.pm:1098 #, c-format msgid "Insert a blank floppy in drive %s" msgstr "Sit 'n leë floppie in aandrywer %s" -#: steps_interactive.pm:1098 +#: steps_interactive.pm:1100 #, c-format msgid "Creating auto install floppy..." msgstr "Outoinstallasieskyf word geskep." -#: steps_interactive.pm:1109 +#: steps_interactive.pm:1111 #, c-format msgid "" "Some steps are not completed.\n" @@ -1418,12 +1419,12 @@ msgstr "" "\n" "Wil u werklik nou eindig?" -#: steps_interactive.pm:1119 +#: steps_interactive.pm:1121 #, c-format msgid "Congratulations" msgstr "Geluk" -#: steps_interactive.pm:1122 +#: steps_interactive.pm:1124 #, c-format msgid "Reboot" msgstr "Herlaai" diff --git a/perl-install/install/share/po/am.po b/perl-install/install/share/po/am.po index ff998fe9f..2874165ea 100644 --- a/perl-install/install/share/po/am.po +++ b/perl-install/install/share/po/am.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: DrakX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-04-17 22:54+0200\n" +"POT-Creation-Date: 2012-04-18 20:30+0200\n" "PO-Revision-Date: 2004-06-01 03:36+0100\n" "Last-Translator: Alemayehu <alemayehu@gmx.at>\n" "Language-Team: Amharic <am-translate@geez.org>\n" @@ -331,22 +331,22 @@ msgid "" "%s" msgstr "" -#: pkgs.pm:360 +#: pkgs.pm:369 #, fuzzy, c-format msgid "An error occurred:" msgstr "ስህተት ተፈጥሯል" -#: pkgs.pm:833 +#: pkgs.pm:843 pkgs.pm:880 #, c-format msgid "Do not ask again" msgstr "" -#: pkgs.pm:849 +#: pkgs.pm:859 #, fuzzy, c-format msgid "%d installation transactions failed" msgstr "%s አልተገኘም" -#: pkgs.pm:850 +#: pkgs.pm:860 #, fuzzy, c-format msgid "Installation of packages failed:" msgstr "የ%s ጥቅል በመትከል ላይ" @@ -1302,17 +1302,18 @@ msgstr "" msgid "Preparing bootloader..." msgstr "አስጀማሪ በማዘጋጀት ላይ..." -#: steps_interactive.pm:1039 +#. -PO: This is NOT the boot loader!!!! +#: steps_interactive.pm:1041 #, fuzzy, c-format msgid "Preparing initial startup program..." msgstr "ተከላ በማዘጋጀት ላይ" -#: steps_interactive.pm:1040 +#: steps_interactive.pm:1042 #, c-format msgid "Be patient, this may take a while..." msgstr "" -#: steps_interactive.pm:1051 +#: steps_interactive.pm:1053 #, c-format msgid "" "You appear to have an OldWorld or Unknown machine, the yaboot bootloader " @@ -1321,24 +1322,24 @@ msgid "" "root fs is: root=%s" msgstr "" -#: steps_interactive.pm:1064 +#: steps_interactive.pm:1066 #, c-format msgid "" "In this security level, access to the files in the Windows partition is " "restricted to the administrator." msgstr "" -#: steps_interactive.pm:1096 +#: steps_interactive.pm:1098 #, c-format msgid "Insert a blank floppy in drive %s" msgstr "" -#: steps_interactive.pm:1098 +#: steps_interactive.pm:1100 #, c-format msgid "Creating auto install floppy..." msgstr "" -#: steps_interactive.pm:1109 +#: steps_interactive.pm:1111 #, c-format msgid "" "Some steps are not completed.\n" @@ -1346,12 +1347,12 @@ msgid "" "Do you really want to quit now?" msgstr "" -#: steps_interactive.pm:1119 +#: steps_interactive.pm:1121 #, c-format msgid "Congratulations" msgstr "እንኳን ደስ ያለዎ!" -#: steps_interactive.pm:1122 +#: steps_interactive.pm:1124 #, c-format msgid "Reboot" msgstr "እንደገና ጀምር" diff --git a/perl-install/install/share/po/ar.po b/perl-install/install/share/po/ar.po index 178b4f0eb..2308d39cb 100644 --- a/perl-install/install/share/po/ar.po +++ b/perl-install/install/share/po/ar.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: drakx_install\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-04-17 22:54+0200\n" +"POT-Creation-Date: 2012-04-18 20:30+0200\n" "PO-Revision-Date: 2011-05-19 13:12+0000\n" "Last-Translator: salim salim <almusalimalmusalimah@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -346,22 +346,22 @@ msgstr "" "بعض الحزم التي يتطلبها %s لا يمكن تثبيتها:\n" "%s" -#: pkgs.pm:360 +#: pkgs.pm:369 #, c-format msgid "An error occurred:" msgstr "حدث خطأ:" -#: pkgs.pm:833 +#: pkgs.pm:843 pkgs.pm:880 #, c-format msgid "Do not ask again" msgstr "" -#: pkgs.pm:849 +#: pkgs.pm:859 #, c-format msgid "%d installation transactions failed" msgstr "فشلت عملية تثبيت %d" -#: pkgs.pm:850 +#: pkgs.pm:860 #, c-format msgid "Installation of packages failed:" msgstr "فشل تثبيت الحزمة:" @@ -1366,17 +1366,18 @@ msgstr "لم تقم بضبط خادم س (X). هل أنت متأكد أنك تر msgid "Preparing bootloader..." msgstr "محمّل الإقلاع يُحضَّر..." -#: steps_interactive.pm:1039 +#. -PO: This is NOT the boot loader!!!! +#: steps_interactive.pm:1041 #, fuzzy, c-format msgid "Preparing initial startup program..." msgstr "التثبيت يُحضَّر" -#: steps_interactive.pm:1040 +#: steps_interactive.pm:1042 #, c-format msgid "Be patient, this may take a while..." msgstr "كن صبورا ، سيأخذ هذا بعض الوقت" -#: steps_interactive.pm:1051 +#: steps_interactive.pm:1053 #, c-format msgid "" "You appear to have an OldWorld or Unknown machine, the yaboot bootloader " @@ -1388,7 +1389,7 @@ msgstr "" "نظامك. ستكمل عملية التثبيت، ولكنك بحاجة إلى استخدام BootX أو طريقة ما أخرى " "لإقلاع نظامك. مُعطى النواة لنظام الملفات الجذر هو: root=%s" -#: steps_interactive.pm:1064 +#: steps_interactive.pm:1066 #, c-format msgid "" "In this security level, access to the files in the Windows partition is " @@ -1397,17 +1398,17 @@ msgstr "" "في هذا المستوى الأمني، الوصول إلى الملفّات في قسم وندوز سيكون مقصوراً على " "المدير." -#: steps_interactive.pm:1096 +#: steps_interactive.pm:1098 #, c-format msgid "Insert a blank floppy in drive %s" msgstr "أدخل قرصًا مرنًا فارغًا في محرك الأقراص %s" -#: steps_interactive.pm:1098 +#: steps_interactive.pm:1100 #, c-format msgid "Creating auto install floppy..." msgstr "إنشاء قرص مرن للتثبيت الآلي..." -#: steps_interactive.pm:1109 +#: steps_interactive.pm:1111 #, c-format msgid "" "Some steps are not completed.\n" @@ -1418,12 +1419,12 @@ msgstr "" "\n" "هل تريد الخروج الآن حقاً؟" -#: steps_interactive.pm:1119 +#: steps_interactive.pm:1121 #, c-format msgid "Congratulations" msgstr "تهانينا" -#: steps_interactive.pm:1122 +#: steps_interactive.pm:1124 #, c-format msgid "Reboot" msgstr "إعادة اﻹقلاع" diff --git a/perl-install/install/share/po/ast.po b/perl-install/install/share/po/ast.po index c4a5fd07f..c1d14c88f 100644 --- a/perl-install/install/share/po/ast.po +++ b/perl-install/install/share/po/ast.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: DrakX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-04-17 22:54+0200\n" +"POT-Creation-Date: 2012-04-18 20:30+0200\n" "PO-Revision-Date: 2009-11-04 19:22+0100\n" "Last-Translator: astur <malditoastur@gmail.com>\n" "Language-Team: Asturian <alministradores@softastur.org>\n" @@ -355,22 +355,22 @@ msgstr "" "Dalgunos paquetes que necesites %s nun pueden instalase:\n" "%s" -#: pkgs.pm:360 +#: pkgs.pm:369 #, c-format msgid "An error occurred:" msgstr "Hebo un fallu:" -#: pkgs.pm:833 +#: pkgs.pm:843 pkgs.pm:880 #, c-format msgid "Do not ask again" msgstr "" -#: pkgs.pm:849 +#: pkgs.pm:859 #, c-format msgid "%d installation transactions failed" msgstr "Fallaron %d tresaiciones d'instalación" -#: pkgs.pm:850 +#: pkgs.pm:860 #, c-format msgid "Installation of packages failed:" msgstr "Falló la instalación de paquetes:" @@ -1389,17 +1389,18 @@ msgstr "X Ensin configurar ¿De xuru que quies esto daveres?" msgid "Preparing bootloader..." msgstr "Tresnando'l cargador d'arranque" -#: steps_interactive.pm:1039 +#. -PO: This is NOT the boot loader!!!! +#: steps_interactive.pm:1041 #, fuzzy, c-format msgid "Preparing initial startup program..." msgstr "Tresnando la instalación" -#: steps_interactive.pm:1040 +#: steps_interactive.pm:1042 #, c-format msgid "Be patient, this may take a while..." msgstr "Aposenta por favor, pues esto puede llevar un ratu." -#: steps_interactive.pm:1051 +#: steps_interactive.pm:1053 #, c-format msgid "" "You appear to have an OldWorld or Unknown machine, the yaboot bootloader " @@ -1412,7 +1413,7 @@ msgstr "" "necesitará usar BootX o dalguna otra manera p'arrancar la to máquina. El " "parámetru del kernel pal sistema de ficheros raíz ye: root=%s" -#: steps_interactive.pm:1064 +#: steps_interactive.pm:1066 #, c-format msgid "" "In this security level, access to the files in the Windows partition is " @@ -1421,17 +1422,17 @@ msgstr "" "Nesti nivel de seguridá, l'accesu a los ficheros na partición Windows ta " "restrinxíu sólo al alministrador." -#: steps_interactive.pm:1096 +#: steps_interactive.pm:1098 #, c-format msgid "Insert a blank floppy in drive %s" msgstr "Inxerta un disquete en blancu na unidá %s" -#: steps_interactive.pm:1098 +#: steps_interactive.pm:1100 #, c-format msgid "Creating auto install floppy..." msgstr "Criando'l disquete d'instalación automática" -#: steps_interactive.pm:1109 +#: steps_interactive.pm:1111 #, c-format msgid "" "Some steps are not completed.\n" @@ -1442,12 +1443,12 @@ msgstr "" "\n" "¿De xuru quies colar agora?" -#: steps_interactive.pm:1119 +#: steps_interactive.pm:1121 #, c-format msgid "Congratulations" msgstr "Felicidaes" -#: steps_interactive.pm:1122 +#: steps_interactive.pm:1124 #, c-format msgid "Reboot" msgstr "Reaniciar" diff --git a/perl-install/install/share/po/az.po b/perl-install/install/share/po/az.po index e97945412..964a405d1 100644 --- a/perl-install/install/share/po/az.po +++ b/perl-install/install/share/po/az.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: DrakX-az\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-04-17 22:54+0200\n" +"POT-Creation-Date: 2012-04-18 20:30+0200\n" "PO-Revision-Date: 2005-03-31 14:21+0200\n" "Last-Translator: Mətin Əmirov <metin@karegen.com>\n" "Language-Team: Azerbaijani <translation-team-az@lists.sourceforge.net>\n" @@ -344,22 +344,22 @@ msgid "" "%s" msgstr "" -#: pkgs.pm:360 +#: pkgs.pm:369 #, fuzzy, c-format msgid "An error occurred:" msgstr "Bir xəta oldu" -#: pkgs.pm:833 +#: pkgs.pm:843 pkgs.pm:880 #, c-format msgid "Do not ask again" msgstr "" -#: pkgs.pm:849 +#: pkgs.pm:859 #, fuzzy, c-format msgid "%d installation transactions failed" msgstr "Qurulum bacarılmadı" -#: pkgs.pm:850 +#: pkgs.pm:860 #, fuzzy, c-format msgid "Installation of packages failed:" msgstr "%s paketi qurulur" @@ -1355,17 +1355,18 @@ msgstr "Siz X-i quraşdırmadınız. Bundan əminsinizmi?" msgid "Preparing bootloader..." msgstr "Açılış yükləyici hazırlanır" -#: steps_interactive.pm:1039 +#. -PO: This is NOT the boot loader!!!! +#: steps_interactive.pm:1041 #, fuzzy, c-format msgid "Preparing initial startup program..." msgstr "Qurulum hazırlanır" -#: steps_interactive.pm:1040 +#: steps_interactive.pm:1042 #, c-format msgid "Be patient, this may take a while..." msgstr "" -#: steps_interactive.pm:1051 +#: steps_interactive.pm:1053 #, fuzzy, c-format msgid "" "You appear to have an OldWorld or Unknown machine, the yaboot bootloader " @@ -1378,24 +1379,24 @@ msgstr "" "Qurulum davam edəcək ancaq kompüterinizi aça bilmək üçün\n" " BootX ya da başqa vasitədən istifadə etməlisiniz" -#: steps_interactive.pm:1064 +#: steps_interactive.pm:1066 #, c-format msgid "" "In this security level, access to the files in the Windows partition is " "restricted to the administrator." msgstr "" -#: steps_interactive.pm:1096 +#: steps_interactive.pm:1098 #, c-format msgid "Insert a blank floppy in drive %s" msgstr "%s sürücüsünə boş bir disket yerləşdirin" -#: steps_interactive.pm:1098 +#: steps_interactive.pm:1100 #, c-format msgid "Creating auto install floppy..." msgstr "Avtomatik qurulum disketi hazırlanır" -#: steps_interactive.pm:1109 +#: steps_interactive.pm:1111 #, c-format msgid "" "Some steps are not completed.\n" @@ -1406,12 +1407,12 @@ msgstr "" "\n" "Həqiqətən də çıxmaq istəyirsiniz?" -#: steps_interactive.pm:1119 +#: steps_interactive.pm:1121 #, c-format msgid "Congratulations" msgstr "Təbriklər" -#: steps_interactive.pm:1122 +#: steps_interactive.pm:1124 #, c-format msgid "Reboot" msgstr "Yenidən başlat" diff --git a/perl-install/install/share/po/be.po b/perl-install/install/share/po/be.po index d8b77e7b1..a83d279c4 100644 --- a/perl-install/install/share/po/be.po +++ b/perl-install/install/share/po/be.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: DrakX VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-04-17 22:54+0200\n" +"POT-Creation-Date: 2012-04-18 20:30+0200\n" "PO-Revision-Date: 2000-09-24 12:30 +0100\n" "Last-Translator: Alexander Bokovoy <ab@avilink.net>\n" "Language-Team: be\n" @@ -333,22 +333,22 @@ msgid "" "%s" msgstr "" -#: pkgs.pm:360 +#: pkgs.pm:369 #, fuzzy, c-format msgid "An error occurred:" msgstr "Адбылася памылка" -#: pkgs.pm:833 +#: pkgs.pm:843 pkgs.pm:880 #, c-format msgid "Do not ask again" msgstr "" -#: pkgs.pm:849 +#: pkgs.pm:859 #, fuzzy, c-format msgid "%d installation transactions failed" msgstr "Усталяванне SILO" -#: pkgs.pm:850 +#: pkgs.pm:860 #, fuzzy, c-format msgid "Installation of packages failed:" msgstr "Усталяванне пакету %s" @@ -1329,17 +1329,18 @@ msgstr "Меню не было захавана. Ці сапраўды вы жа msgid "Preparing bootloader..." msgstr "Падрыхтоўка загрузчыка" -#: steps_interactive.pm:1039 +#. -PO: This is NOT the boot loader!!!! +#: steps_interactive.pm:1041 #, fuzzy, c-format msgid "Preparing initial startup program..." msgstr "Падрыхтоўка ўсталяваньня" -#: steps_interactive.pm:1040 +#: steps_interactive.pm:1042 #, c-format msgid "Be patient, this may take a while..." msgstr "" -#: steps_interactive.pm:1051 +#: steps_interactive.pm:1053 #, c-format msgid "" "You appear to have an OldWorld or Unknown machine, the yaboot bootloader " @@ -1348,24 +1349,24 @@ msgid "" "root fs is: root=%s" msgstr "" -#: steps_interactive.pm:1064 +#: steps_interactive.pm:1066 #, c-format msgid "" "In this security level, access to the files in the Windows partition is " "restricted to the administrator." msgstr "" -#: steps_interactive.pm:1096 +#: steps_interactive.pm:1098 #, c-format msgid "Insert a blank floppy in drive %s" msgstr "Устаўце дыскету ў дыскавод %s" -#: steps_interactive.pm:1098 +#: steps_interactive.pm:1100 #, c-format msgid "Creating auto install floppy..." msgstr "Стварэнне дыскеты для ўсталявання" -#: steps_interactive.pm:1109 +#: steps_interactive.pm:1111 #, c-format msgid "" "Some steps are not completed.\n" @@ -1375,12 +1376,12 @@ msgstr "" "Некаторыя крокі не завершаны.\n" "Вы сапраўды жадаеце выйсці зараз?" -#: steps_interactive.pm:1119 +#: steps_interactive.pm:1121 #, fuzzy, c-format msgid "Congratulations" msgstr "Прыміце віншаванні!" -#: steps_interactive.pm:1122 +#: steps_interactive.pm:1124 #, c-format msgid "Reboot" msgstr "Перазагрузка" diff --git a/perl-install/install/share/po/bg.po b/perl-install/install/share/po/bg.po index 90786508e..aeef2b70f 100644 --- a/perl-install/install/share/po/bg.po +++ b/perl-install/install/share/po/bg.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: DrakX-bg\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-04-17 22:54+0200\n" +"POT-Creation-Date: 2012-04-18 20:30+0200\n" "PO-Revision-Date: 2009-03-20 23:42+0200\n" "Last-Translator: Kolio Kolev <kolio_kolev@biotronica.net>\n" "Language-Team: Bulgarian <Mageia User Group - Bulgaria <mandriva-" @@ -351,22 +351,22 @@ msgid "" "%s" msgstr "" -#: pkgs.pm:360 +#: pkgs.pm:369 #, fuzzy, c-format msgid "An error occurred:" msgstr "Появи се грешка" -#: pkgs.pm:833 +#: pkgs.pm:843 pkgs.pm:880 #, c-format msgid "Do not ask again" msgstr "Без въпроси отново" -#: pkgs.pm:849 +#: pkgs.pm:859 #, c-format msgid "%d installation transactions failed" msgstr "%d инсталационни транзакции пропаднаха" -#: pkgs.pm:850 +#: pkgs.pm:860 #, fuzzy, c-format msgid "Installation of packages failed:" msgstr "Инсталиране на пакета %s" @@ -1359,17 +1359,18 @@ msgstr "Вие не сте конфигурирали X. Сигурни ли с msgid "Preparing bootloader..." msgstr "Подготовка на bootloader" -#: steps_interactive.pm:1039 +#. -PO: This is NOT the boot loader!!!! +#: steps_interactive.pm:1041 #, fuzzy, c-format msgid "Preparing initial startup program..." msgstr "Подготвям инсталацията" -#: steps_interactive.pm:1040 +#: steps_interactive.pm:1042 #, c-format msgid "Be patient, this may take a while..." msgstr "" -#: steps_interactive.pm:1051 +#: steps_interactive.pm:1053 #, fuzzy, c-format msgid "" "You appear to have an OldWorld or Unknown machine, the yaboot bootloader " @@ -1382,24 +1383,24 @@ msgstr "" "Инсталацията ще продължи, но ще трябва\n" "да иползвате BootX, за да стартирате машината си" -#: steps_interactive.pm:1064 +#: steps_interactive.pm:1066 #, c-format msgid "" "In this security level, access to the files in the Windows partition is " "restricted to the administrator." msgstr "" -#: steps_interactive.pm:1096 +#: steps_interactive.pm:1098 #, c-format msgid "Insert a blank floppy in drive %s" msgstr "Сложете празна дискета в устройство %s" -#: steps_interactive.pm:1098 +#: steps_interactive.pm:1100 #, c-format msgid "Creating auto install floppy..." msgstr "Подготвям дискета с автоматична инсталация" -#: steps_interactive.pm:1109 +#: steps_interactive.pm:1111 #, c-format msgid "" "Some steps are not completed.\n" @@ -1410,12 +1411,12 @@ msgstr "" "\n" "Наистина ли искате да излезете сега ?" -#: steps_interactive.pm:1119 +#: steps_interactive.pm:1121 #, c-format msgid "Congratulations" msgstr "Поздравления" -#: steps_interactive.pm:1122 +#: steps_interactive.pm:1124 #, c-format msgid "Reboot" msgstr "Престартира" diff --git a/perl-install/install/share/po/bn.po b/perl-install/install/share/po/bn.po index ea9a35915..a6bebe22d 100644 --- a/perl-install/install/share/po/bn.po +++ b/perl-install/install/share/po/bn.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: DrakX HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-04-17 22:54+0200\n" +"POT-Creation-Date: 2012-04-18 20:30+0200\n" "PO-Revision-Date: 2007-02-19 00:44+0600\n" "Last-Translator: Tisa Nafisa <tisa_nafisa@yahoo.com>\n" "Language-Team: Bangla <mdk-translation@bengalinux.org>\n" @@ -346,22 +346,22 @@ msgid "" "%s" msgstr "" -#: pkgs.pm:360 +#: pkgs.pm:369 #, fuzzy, c-format msgid "An error occurred:" msgstr "একটি ত্রুটি সম্পাদিত হয়েছে" -#: pkgs.pm:833 +#: pkgs.pm:843 pkgs.pm:880 #, c-format msgid "Do not ask again" msgstr "" -#: pkgs.pm:849 +#: pkgs.pm:859 #, fuzzy, c-format msgid "%d installation transactions failed" msgstr "ইনস্টলেশন বিফল হয়েছে" -#: pkgs.pm:850 +#: pkgs.pm:860 #, fuzzy, c-format msgid "Installation of packages failed:" msgstr "%s প্যাকেজ সমূহ ইনস্টল করা হচ্ছে" @@ -1366,17 +1366,18 @@ msgstr "আপনি X কনফিগার করেননি। আপনি msgid "Preparing bootloader..." msgstr "Bootloader প্রস্তুত করা হচ্ছে..." -#: steps_interactive.pm:1039 +#. -PO: This is NOT the boot loader!!!! +#: steps_interactive.pm:1041 #, fuzzy, c-format msgid "Preparing initial startup program..." msgstr "ইনস্টলেশনের প্রস্তুতি চলছে" -#: steps_interactive.pm:1040 +#: steps_interactive.pm:1042 #, c-format msgid "Be patient, this may take a while..." msgstr "" -#: steps_interactive.pm:1051 +#: steps_interactive.pm:1053 #, c-format msgid "" "You appear to have an OldWorld or Unknown machine, the yaboot bootloader " @@ -1389,7 +1390,7 @@ msgstr "" "BootX বা অন্য কোন কিছু ব্যবহার করতে হবে। root fs এর জন্য কার্নেল প্রেরিত মান হবে: " "root=%s" -#: steps_interactive.pm:1064 +#: steps_interactive.pm:1066 #, c-format msgid "" "In this security level, access to the files in the Windows partition is " @@ -1397,17 +1398,17 @@ msgid "" msgstr "" "এই নিরাপত্তা লেভেলে, উইন্ডোজ পার্টিশনের ফাইলে প্রবেশ শুধুমাত্র অ্যাডমিনিস্ট্রেটরের আছে।" -#: steps_interactive.pm:1096 +#: steps_interactive.pm:1098 #, c-format msgid "Insert a blank floppy in drive %s" msgstr "%s ড্রাইভে একটি ফাঁকা ফ্লপি ঢোকান" -#: steps_interactive.pm:1098 +#: steps_interactive.pm:1100 #, c-format msgid "Creating auto install floppy..." msgstr "সয়ং ইনস্টল ফ্লপি তৈরী করা হচ্ছে..." -#: steps_interactive.pm:1109 +#: steps_interactive.pm:1111 #, c-format msgid "" "Some steps are not completed.\n" @@ -1418,12 +1419,12 @@ msgstr "" "\n" "আপনি কি এখন বের হতে চান?" -#: steps_interactive.pm:1119 +#: steps_interactive.pm:1121 #, c-format msgid "Congratulations" msgstr "স্বাগতম" -#: steps_interactive.pm:1122 +#: steps_interactive.pm:1124 #, c-format msgid "Reboot" msgstr "রিবুট" |