package lvm; # $Id$ use diagnostics; use strict; #-###################################################################################### #- misc imports #-###################################################################################### use common; use modules; use devices; use fs::type; use run_program; #- for partition_table_xxx emulation sub new { my ($class, $name) = @_; $name =~ s/[^\w-]/_/g; $name = substr($name, 0, 63); # max length must be < NAME_LEN / 2 where NAME_LEN is 128 bless { disks => [], VG_name => $name }, $class; } sub use_pt_type { 0 } sub hasExtended { 0 } sub adjustStart {} sub adjustEnd {} sub write {} sub cylinder_size { my ($hd) = @_; $hd->{extent_size}; } init() or log::l("lvm::init failed"); sub init() { devices::init_device_mapper(); if ($::isInstall) { run_program::run('lvm2', 'vgscan'); run_program::run('lvm2', 'vgchange', '-a', 'y'); } 1; } sub lvm_cmd { if (my $r = run_program::run('lvm2', @_)) { $r; } else { $? >> 8 == 98 or return; #- sometimes, it needs running vgscan again, doing so: run_program::run('lvm2', 'vgscan'); run_program::run('lvm2', @_); } } sub lvm_cmd_or_die { my ($prog, @para) = @_; lvm_cmd($prog, @para) or die "$prog failed\n"; } sub check { my ($do_pkgs) = @_; $do_pkgs->ensure_binary_is_installed('lvm2', 'lvm2') or return; init(); 1; } sub get_pv_field { my ($pv, $field) = @_; my $dev = expand_symlinks(devices::make($pv->{device})); run_program::get_stdout('lvm2', 'pvs', '--noheadings', '--nosuffix', '-o', $field, $dev); } sub pv_physical_extents { my ($pv) = @_; split(' ', lvm::get_pv_field($pv, 'pv_pe_alloc_count,pv_pe_count')); } sub pv_to_vg { my ($pv) = @_; get_pv_field($pv, 'vg_name') =~ /(\S+)/ && $1; } sub pv_move { my ($pv) = @_; my $dev = expand_symlinks(devices::make($pv->{device})); lvm_cmd('pvmove', '-v', $dev) or die N("Moving used physical extents to other physical volumes failed"); } sub update_size { my ($lvm) = @_; $lvm->{extent_size} = to_int(run_program::get_stdout('lvm2', 'vgs', '--noheadings', '--nosuffix', '--units', 's', '-o', 'vg_extent_size', $lvm->{VG_name})); $lvm->{totalsectors} = to_int(run_program::get_stdout('lvm2', 'vgs', '--noheadings', '--nosuffix', '--units', 's', '-o', 'vg_size', $lvm->{VG_name})); } sub get_lv_size { my ($lvm_device) = @_; to_int(run_program::get_stdout('lvm2', 'lvs', '--noheadings', '--nosuffix', '--units', 's', '-o', 'lv_size', "/dev/$lvm_device")); } sub lv_to_pvs { my ($lv) = @_; map { m!(\S+)\(! } run_program::get_stdout('lvm2', 'lvs', '--noheadings', '-o', 'devices', "/dev/$lv->{device}"); } sub lv_nb_pvs { my ($lv) = @_; listlength(lv_to_pvs($lv)); } sub get_lvs { my ($lvm) = @_; my @l = run_program::get_stdout('lvm2', 'lvs', '--noheadings', '--nosuffix', '--units', 's', '-o', 'lv_name', $lvm->{VG_name}) =~ /(\S+)/g; $lvm->{primary}{normal} = [ map { my $device = "$lvm->{VG_name}/$_"; my $part = { device => $device, lv_name => $_, rootDevice => $lvm->{VG_name}, size => get_lv_size($device) }; if (my $type = -e "/dev/$device" && fs::type::type_subpart_from_magic($part)) { put_in_hash($part, $type); } else { $part->{fs_type} = 'ext2'; } $part; } @l ]; } sub vg_add { my ($part) = @_; my $dev = expand_symlinks(devices::make($part->{device})); output($dev, '\0' x 512); #- help pvcreate lvm_cmd_or_die('pvcreate', '-y', '-ff', $dev); my $prog = lvm_cmd('vgs', $part->{lvm}) ? 'vgextend' : 'vgcreate'; lvm_cmd_or_die($prog, $part->{lvm}, $dev); } sub vg_reduce { my ($lvm_vg, $part_pv) = @_; lvm_cmd('vgreduce', $lvm_vg->{VG_name}, devices::make($part_pv->{device})) or die N("Physical volume %s is still in use", $part_pv->{device}); @{$lvm_vg->{disks}} = difference2($lvm_vg->{disks}, [ $part_pv ]); update_size($lvm_vg); delete $part_pv->{lvm}; set_isFormatted($part_pv, 0); } sub vg_destroy { my ($lvm) = @_; is_empty_array_ref($lvm->{primary}{normal}) or die N("Remove the logical volumes first\n"); lvm_cmd('vgchange', '-a', 'n', $lvm->{VG_name}); lvm_cmd_or_die('vgremove', $lvm->{VG_name}); foreach (@{$lvm->{disks}}) { lvm_cmd_or_die('pvremove', devices::make($_->{device})); delete $_->{lvm}; set_isFormatted($_, 0); } } sub lv_delete { my ($lvm, $lv) = @_; lvm_cmd_or_die('lvremove', '-f', "/dev/$lv->{device}"); my $list = $lvm->{primary}{normal}; @$list = grep { $_ != $lv } @$list; } sub suggest_lv_name { my ($lvm, $lv) = @_; my $list = $lvm->{primary}{normal} ||= []; $lv->{lv_name} ||= 1 + max(map { if_($_->{device} =~ /(\d+)$/, $1) } @$list); } sub lv_create { my ($lvm, $lv) = @_; suggest_lv_name($lvm, $lv); $lv->{device} = "$lvm->{VG_name}/$lv->{lv_name}"; lvm_cmd_or_die('lvcreate', '--size', int($lv->{size} / 2) . 'k', '-n', $lv->{lv_name}, $lvm->{VG_name}); if ($lv->{mntpoint} eq '/boot' && lv_nb_pvs($lv) > 1) { lvm_cmd_or_die('lvremove', '-f', "/dev/$lv->{device}"); die N("The bootloader can't handle /boot on multiple physical volumes"); } $lv->{size} = get_lv_size($lv->{device}); #- the created size is smaller than asked size set_isFormatted($lv, 0); my $list = $lvm->{primary}{normal} ||= []; push @$list, $lv; } sub lv_resize { my ($lv, $oldsize) = @_; lvm_cmd_or_die($oldsize > $lv->{size} ? ('lvreduce', '-f') : 'lvextend', '--size', int($lv->{size} / 2) . 'k', "/dev/$lv->{device}"); $lv->{size} = get_lv_size($lv->{device}); #- the resized partition may not be the exact asked size } sub add_to_VG { my ($part, $lvm) = @_; $part->{lvm} = $lvm->{VG_name}; push @{$lvm->{disks}}, $part; delete $part->{mntpoint}; vg_add($part); update_size($lvm); } sub create_singleton_vg { my ($lvms, $part) = @_; my %existing = map { $_->{VG_name} => 1 } @$lvms; my $VG_name = find { !$existing{$_} } map { "VG$_" } 1 .. 100 or internal_error(); my $lvm = new lvm($VG_name); push @$lvms, $lvm; add_to_VG($part, $lvm); } 1; class='ctrl'>
author | Thierry Vignaud <tvignaud@mandriva.org> | 2005-03-10 17:18:36 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2005-03-10 17:18:36 +0000 |
commit | fd47416a279e8e76108049016c6db50c99279cac (patch) | |
tree | 8052657cbf6833e703caaec3ede2b00b266868aa /perl-install/share | |
parent | f83ad87da1a3a2aceb22550524d0070e36c591df (diff) | |
download | drakx-fd47416a279e8e76108049016c6db50c99279cac.tar drakx-fd47416a279e8e76108049016c6db50c99279cac.tar.gz drakx-fd47416a279e8e76108049016c6db50c99279cac.tar.bz2 drakx-fd47416a279e8e76108049016c6db50c99279cac.tar.xz drakx-fd47416a279e8e76108049016c6db50c99279cac.zip |
diff --git a/perl-install/share/po/af.po b/perl-install/share/po/af.po index 62a5d77f8..cadd7cc6f 100644 --- a/perl-install/share/po/af.po +++ b/perl-install/share/po/af.po @@ -11152,7 +11152,7 @@ msgstr "moontlik" #: pkgs.pm:474 #, fuzzy, c-format -msgid "Downloading file %s..." +msgid "Downloading file %1..." msgstr "Stuur lêers..." #: printer/cups.pm:103 diff --git a/perl-install/share/po/am.po b/perl-install/share/po/am.po index b4c5f7beb..cda8b44cd 100644 --- a/perl-install/share/po/am.po +++ b/perl-install/share/po/am.po @@ -9835,7 +9835,7 @@ msgstr "ምናልባት" #: pkgs.pm:474 #, fuzzy, c-format -msgid "Downloading file %s..." +msgid "Downloading file %1..." msgstr "የቅርብ ጊዜ ፋይሎች" #: printer/cups.pm:103 diff --git a/perl-install/share/po/ar.po b/perl-install/share/po/ar.po index 10dcb06dc..11f97ce42 100644 --- a/perl-install/share/po/ar.po +++ b/perl-install/share/po/ar.po @@ -11305,7 +11305,7 @@ msgstr "ربما" #: pkgs.pm:474 #, fuzzy, c-format -msgid "Downloading file %s..." +msgid "Downloading file %1..." msgstr "جاري ارسال الملفات..." #: printer/cups.pm:103 diff --git a/perl-install/share/po/az.po b/perl-install/share/po/az.po index 2513be7ec..15ee181be 100644 --- a/perl-install/share/po/az.po +++ b/perl-install/share/po/az.po @@ -11247,7 +11247,7 @@ msgstr "bəlkə" #: pkgs.pm:474 #, fuzzy, c-format -msgid "Downloading file %s..." +msgid "Downloading file %1..." msgstr "Fayllar göndərilir..." #: printer/cups.pm:103 @@ -24204,9 +24204,9 @@ msgid "Password:" msgstr "Şifrə:" #: standalone/harddrake2:532 -#, fuzzy, c-format +#, c-format msgid "Hostname:" -msgstr "Ev sahibi adı:" +msgstr "Qovşaq adı:" #: standalone/keyboarddrake:29 #, c-format diff --git a/perl-install/share/po/be.po b/perl-install/share/po/be.po index f3551a6e3..90066a736 100644 --- a/perl-install/share/po/be.po +++ b/perl-install/share/po/be.po @@ -9947,7 +9947,7 @@ msgstr "можа быць" #: pkgs.pm:474 #, fuzzy, c-format -msgid "Downloading file %s..." +msgid "Downloading file %1..." msgstr "Вызначэнне прыладаў..." #: printer/cups.pm:103 diff --git a/perl-install/share/po/bg.po b/perl-install/share/po/bg.po index efe348332..7eb71606c 100644 --- a/perl-install/share/po/bg.po +++ b/perl-install/share/po/bg.po @@ -10830,7 +10830,7 @@ msgstr "става" #: pkgs.pm:474 #, fuzzy, c-format -msgid "Downloading file %s..." +msgid "Downloading file %1..." msgstr "Изпращам файлове..." #: printer/cups.pm:103 diff --git a/perl-install/share/po/bn.po b/perl-install/share/po/bn.po index 83b3eff99..a24729fa2 100644 --- a/perl-install/share/po/bn.po +++ b/perl-install/share/po/bn.po @@ -10689,7 +10689,7 @@ msgstr "হয়তোবা" #: pkgs.pm:474 #, fuzzy, c-format -msgid "Downloading file %s..." +msgid "Downloading file %1..." msgstr "ফাইল প্রেরণ করা হচ্ছে..." #: printer/cups.pm:103 diff --git a/perl-install/share/po/br.po b/perl-install/share/po/br.po index 995ed071d..26943104f 100644 --- a/perl-install/share/po/br.po +++ b/perl-install/share/po/br.po @@ -10002,7 +10002,7 @@ msgstr "marteze" #: pkgs.pm:474 #, c-format -msgid "Downloading file %s..." +msgid "Downloading file %1..." msgstr "Emaon oc'h enkargañ ar restr %s ..." #: printer/cups.pm:103 diff --git a/perl-install/share/po/bs.po b/perl-install/share/po/bs.po index 602ae73f8..2af5e66ca 100644 --- a/perl-install/share/po/bs.po +++ b/perl-install/share/po/bs.po @@ -11433,7 +11433,7 @@ msgstr "možda" #: pkgs.pm:474 #, fuzzy, c-format -msgid "Downloading file %s..." +msgid "Downloading file %1..." msgstr "Šaljem datoteke..." #: printer/cups.pm:103 diff --git a/perl-install/share/po/ca.po b/perl-install/share/po/ca.po index fdb076c16..97ace9fe0 100644 --- a/perl-install/share/po/ca.po +++ b/perl-install/share/po/ca.po @@ -11492,11 +11492,10 @@ msgstr "bonic" msgid "maybe" msgstr "potser" -# #: pkgs.pm:474 -#, fuzzy, c-format -msgid "Downloading file %s..." -msgstr "S'estan enviant els fitxers..." +#, c-format +msgid "Downloading file %1..." +msgstr "S'està descarregant el fitxer %1..." #: printer/cups.pm:103 #, c-format diff --git a/perl-install/share/po/cs.po b/perl-install/share/po/cs.po index aeae9c8f8..b4cc01ce5 100644 --- a/perl-install/share/po/cs.po +++ b/perl-install/share/po/cs.po @@ -11412,7 +11412,7 @@ msgstr "může se hodit" #: pkgs.pm:474 #, fuzzy, c-format -msgid "Downloading file %s..." +msgid "Downloading file %1..." msgstr "Posílám soubory..." #: printer/cups.pm:103 diff --git a/perl-install/share/po/cy.po b/perl-install/share/po/cy.po index 2881d6f01..c2b1e47f7 100644 --- a/perl-install/share/po/cy.po +++ b/perl-install/share/po/cy.po @@ -11406,7 +11406,7 @@ msgstr "efallai" #: pkgs.pm:474 #, fuzzy, c-format -msgid "Downloading file %s..." +msgid "Downloading file %1..." msgstr "Anfon ffeiliau..." #: printer/cups.pm:103 @@ -25103,19 +25103,19 @@ msgstr "" #: standalone/harddrake2:530 -#, fuzzy, c-format +#, c-format msgid "Account:" -msgstr "Gosod" +msgstr "Cyfrif:" #: standalone/harddrake2:531 -#, fuzzy, c-format +#, c-format msgid "Password:" -msgstr "Cyfrinair" +msgstr "Cyfrinair:" #: standalone/harddrake2:532 -#, fuzzy, c-format +#, c-format msgid "Hostname:" -msgstr "Enw gwesteiwr:" +msgstr "Enw Gwesteiwr:" #: standalone/keyboarddrake:29 #, c-format diff --git a/perl-install/share/po/da.po b/perl-install/share/po/da.po index b225acc38..57b6c8223 100644 --- a/perl-install/share/po/da.po +++ b/perl-install/share/po/da.po @@ -11345,9 +11345,9 @@ msgid "maybe" msgstr "måske" #: pkgs.pm:474 -#, fuzzy, c-format -msgid "Downloading file %s..." -msgstr "Sender filer..." +#, c-format +msgid "Downloading file %1..." +msgstr "Henter filen %1..." #: printer/cups.pm:103 #, c-format diff --git a/perl-install/share/po/de.po b/perl-install/share/po/de.po index c13a7e0c0..bfb0cd8a1 100644 --- a/perl-install/share/po/de.po +++ b/perl-install/share/po/de.po @@ -11574,9 +11574,9 @@ msgid "maybe" msgstr "eventuell" #: pkgs.pm:474 -#, fuzzy, c-format -msgid "Downloading file %s..." -msgstr "Sende Dateien ..." +#, c-format +msgid "Downloading file %1..." +msgstr "Lade Datei %1 herunter..." #: printer/cups.pm:103 #, c-format diff --git a/perl-install/share/po/el.po b/perl-install/share/po/el.po index 2fa746ae8..ccdba823e 100644 --- a/perl-install/share/po/el.po +++ b/perl-install/share/po/el.po @@ -11053,7 +11053,7 @@ msgstr "ίσως" #: pkgs.pm:474 #, fuzzy, c-format -msgid "Downloading file %s..." +msgid "Downloading file %1..." msgstr "Αποστολή αρχείων..." #: printer/cups.pm:103 diff --git a/perl-install/share/po/eo.po b/perl-install/share/po/eo.po index 28781ec37..caa202402 100644 --- a/perl-install/share/po/eo.po +++ b/perl-install/share/po/eo.po @@ -10237,7 +10237,7 @@ msgstr "elbe" #: pkgs.pm:474 #, fuzzy, c-format -msgid "Downloading file %s..." +msgid "Downloading file %1..." msgstr "Konservu en dosiero" #: printer/cups.pm:103 diff --git a/perl-install/share/po/es.po b/perl-install/share/po/es.po index 563cdcb44..afe358b59 100644 --- a/perl-install/share/po/es.po +++ b/perl-install/share/po/es.po @@ -11575,9 +11575,9 @@ msgid "maybe" msgstr "quizás" #: pkgs.pm:474 -#, fuzzy, c-format -msgid "Downloading file %s..." -msgstr "Enviando archivos..." +#, c-format +msgid "Downloading file %1..." +msgstr "Descargando el fichero %1..." #: printer/cups.pm:103 #, c-format diff --git a/perl-install/share/po/et.po b/perl-install/share/po/et.po index 8ebcac272..48aa6c681 100644 --- a/perl-install/share/po/et.po +++ b/perl-install/share/po/et.po @@ -11393,9 +11393,9 @@ msgid "maybe" msgstr "võib olla" #: pkgs.pm:474 -#, fuzzy, c-format -msgid "Downloading file %s..." -msgstr "Failide saatmine..." +#, c-format +msgid "Downloading file %1..." +msgstr "Faili %1 allalaadimine..." #: printer/cups.pm:103 #, c-format diff --git a/perl-install/share/po/eu.po b/perl-install/share/po/eu.po index 437efe887..0a951c694 100644 --- a/perl-install/share/po/eu.po +++ b/perl-install/share/po/eu.po @@ -11494,7 +11494,7 @@ msgstr "beharbada" #: pkgs.pm:474 #, fuzzy, c-format -msgid "Downloading file %s..." +msgid "Downloading file %1..." msgstr "Fitxategiak bidaltzen..." #: printer/cups.pm:103 diff --git a/perl-install/share/po/fa.po b/perl-install/share/po/fa.po index 3e898598f..48ddad982 100644 --- a/perl-install/share/po/fa.po +++ b/perl-install/share/po/fa.po @@ -11368,7 +11368,7 @@ msgstr "شاید" #: pkgs.pm:474 #, fuzzy, c-format -msgid "Downloading file %s..." +msgid "Downloading file %1..." msgstr "فرستادن پروندهها..." #: printer/cups.pm:103 diff --git a/perl-install/share/po/fi.po b/perl-install/share/po/fi.po index bd721ff7a..4cff55cd9 100644 --- a/perl-install/share/po/fi.po +++ b/perl-install/share/po/fi.po @@ -11534,7 +11534,7 @@ msgstr "ehkä" #: pkgs.pm:474 #, fuzzy, c-format -msgid "Downloading file %s..." +msgid "Downloading file %1..." msgstr "Lähetetään tiedostoja..." #: printer/cups.pm:103 diff --git a/perl-install/share/po/fr.po b/perl-install/share/po/fr.po index eed886a04..f1df8ec37 100644 --- a/perl-install/share/po/fr.po +++ b/perl-install/share/po/fr.po @@ -11632,7 +11632,7 @@ msgstr "éventuellement" #: pkgs.pm:474 #, c-format -msgid "Downloading file %s..." +msgid "Downloading file %1..." msgstr "Téléchargment du fichier %s ..." #: printer/cups.pm:103 diff --git a/perl-install/share/po/fur.po b/perl-install/share/po/fur.po index 97a524afa..ec0d49e26 100644 --- a/perl-install/share/po/fur.po +++ b/perl-install/share/po/fur.po @@ -9862,7 +9862,7 @@ msgstr "" #: pkgs.pm:474 #, c-format -msgid "Downloading file %s..." +msgid "Downloading file %1..." msgstr "" #: printer/cups.pm:103 diff --git a/perl-install/share/po/ga.po b/perl-install/share/po/ga.po index 4d2ac5233..435375e76 100644 --- a/perl-install/share/po/ga.po +++ b/perl-install/share/po/ga.po @@ -9903,7 +9903,7 @@ msgstr "b'fhéidir" #: pkgs.pm:474 #, fuzzy, c-format -msgid "Downloading file %s..." +msgid "Downloading file %1..." msgstr "Sabháil i gcomhad" #: printer/cups.pm:103 diff --git a/perl-install/share/po/gl.po b/perl-install/share/po/gl.po index 88a5f0d13..091afe800 100644 --- a/perl-install/share/po/gl.po +++ b/perl-install/share/po/gl.po @@ -10375,7 +10375,7 @@ msgstr "indiferente" #: pkgs.pm:474 #, fuzzy, c-format -msgid "Downloading file %s..." +msgid "Downloading file %1..." msgstr "Enviando ficheiros..." #: printer/cups.pm:103 diff --git a/perl-install/share/po/he.po b/perl-install/share/po/he.po index f76b5bfe2..9989e1b7f 100644 --- a/perl-install/share/po/he.po +++ b/perl-install/share/po/he.po @@ -10718,9 +10718,9 @@ msgid "maybe" msgstr "לא הכרחי" #: pkgs.pm:474 -#, fuzzy, c-format -msgid "Downloading file %s..." -msgstr "שולח קבצים..." +#, c-format +msgid "Downloading file %1..." +msgstr "מוריד קובץ %1..." #: printer/cups.pm:103 #, c-format diff --git a/perl-install/share/po/hi.po b/perl-install/share/po/hi.po index 18c030386..e1d9fead3 100644 --- a/perl-install/share/po/hi.po +++ b/perl-install/share/po/hi.po @@ -10859,7 +10859,7 @@ msgstr "हो सकता है" #: pkgs.pm:474 #, fuzzy, c-format -msgid "Downloading file %s..." +msgid "Downloading file %1..." msgstr "संचिकायें प्रेषित की जा रही..." #: printer/cups.pm:103 diff --git a/perl-install/share/po/hr.po b/perl-install/share/po/hr.po index f34fc7fbf..3daec7832 100644 --- a/perl-install/share/po/hr.po +++ b/perl-install/share/po/hr.po @@ -11005,7 +11005,7 @@ msgstr "možda" #: pkgs.pm:474 #, fuzzy, c-format -msgid "Downloading file %s..." +msgid "Downloading file %1..." msgstr "Šaljem datoteke..." #: printer/cups.pm:103 diff --git a/perl-install/share/po/hu.po b/perl-install/share/po/hu.po index e97d46158..094c0e38a 100644 --- a/perl-install/share/po/hu.po +++ b/perl-install/share/po/hu.po @@ -11513,7 +11513,7 @@ msgstr "opcionális" #: pkgs.pm:474 #, fuzzy, c-format -msgid "Downloading file %s..." +msgid "Downloading file %1..." msgstr "Fájlok küldése..." #: printer/cups.pm:103 diff --git a/perl-install/share/po/id.po b/perl-install/share/po/id.po index 085d312f5..6d338ee8b 100644 --- a/perl-install/share/po/id.po +++ b/perl-install/share/po/id.po @@ -11015,7 +11015,7 @@ msgstr "hmm.." #: pkgs.pm:474 #, fuzzy, c-format -msgid "Downloading file %s..." +msgid "Downloading file %1..." msgstr "Kirim file..." #: printer/cups.pm:103 @@ -23835,9 +23835,9 @@ msgid "Password:" msgstr "Password:" #: standalone/harddrake2:532 -#, fuzzy, c-format +#, c-format msgid "Hostname:" -msgstr "Nama Host: " +msgstr "Namahost:" #: standalone/keyboarddrake:29 #, c-format diff --git a/perl-install/share/po/is.po b/perl-install/share/po/is.po index e73465029..40073d602 100644 --- a/perl-install/share/po/is.po +++ b/perl-install/share/po/is.po @@ -10707,7 +10707,7 @@ msgstr "kannski" #: pkgs.pm:474 #, fuzzy, c-format -msgid "Downloading file %s..." +msgid "Downloading file %1..." msgstr "Sendi skrár..." #: printer/cups.pm:103 diff --git a/perl-install/share/po/it.po b/perl-install/share/po/it.po index 6e892367c..8d7287a9d 100644 --- a/perl-install/share/po/it.po +++ b/perl-install/share/po/it.po @@ -11554,9 +11554,9 @@ msgid "maybe" msgstr "forse" #: pkgs.pm:474 -#, fuzzy, c-format -msgid "Downloading file %s..." -msgstr "Invio dei file in corso..." +#, c-format +msgid "Downloading file %1..." +msgstr "Scaricamento del file %1..." #: printer/cups.pm:103 #, c-format diff --git a/perl-install/share/po/ja.po b/perl-install/share/po/ja.po index 4b7bcd35e..20d5e5094 100644 --- a/perl-install/share/po/ja.po +++ b/perl-install/share/po/ja.po @@ -11215,7 +11215,7 @@ msgstr "可" #: pkgs.pm:474 #, fuzzy, c-format -msgid "Downloading file %s..." +msgid "Downloading file %1..." msgstr "ファイルを送信中.." #: printer/cups.pm:103 diff --git a/perl-install/share/po/ko.po b/perl-install/share/po/ko.po index 08d5ca08a..98630e49a 100644 --- a/perl-install/share/po/ko.po +++ b/perl-install/share/po/ko.po @@ -10454,7 +10454,7 @@ msgstr "괜찮은 팩키지" #: pkgs.pm:474 #, fuzzy, c-format -msgid "Downloading file %s..." +msgid "Downloading file %1..." msgstr "파일 전송 중 ..." #: printer/cups.pm:103 diff --git a/perl-install/share/po/ky.po b/perl-install/share/po/ky.po index ffa959f95..9629334cd 100644 --- a/perl-install/share/po/ky.po +++ b/perl-install/share/po/ky.po @@ -10530,7 +10530,7 @@ msgstr "" #: pkgs.pm:474 #, fuzzy, c-format -msgid "Downloading file %s..." +msgid "Downloading file %1..." msgstr "%s файлын окуудагы ката" #: printer/cups.pm:103 diff --git a/perl-install/share/po/lt.po b/perl-install/share/po/lt.po index 37cd1c83e..b61c06db6 100644 --- a/perl-install/share/po/lt.po +++ b/perl-install/share/po/lt.po @@ -10358,7 +10358,7 @@ msgstr "galbūt" #: pkgs.pm:474 #, fuzzy, c-format -msgid "Downloading file %s..." +msgid "Downloading file %1..." msgstr "Išsaugoti į bylą" #: printer/cups.pm:103 diff --git a/perl-install/share/po/ltg.po b/perl-install/share/po/ltg.po index 1372f98d5..9e2cb36e8 100644 --- a/perl-install/share/po/ltg.po +++ b/perl-install/share/po/ltg.po @@ -10554,7 +10554,7 @@ msgstr "varbyut" #: pkgs.pm:474 #, fuzzy, c-format -msgid "Downloading file %s..." +msgid "Downloading file %1..." msgstr "Nūsyutu failus..." #: printer/cups.pm:103 diff --git a/perl-install/share/po/lv.po b/perl-install/share/po/lv.po index 7de7d3a69..1c35db236 100644 --- a/perl-install/share/po/lv.po +++ b/perl-install/share/po/lv.po @@ -10491,7 +10491,7 @@ msgstr "varbūt" #: pkgs.pm:474 #, fuzzy, c-format -msgid "Downloading file %s..." +msgid "Downloading file %1..." msgstr "Nosūtu failus..." #: printer/cups.pm:103 diff --git a/perl-install/share/po/mk.po b/perl-install/share/po/mk.po index d35838562..b13a788db 100644 --- a/perl-install/share/po/mk.po +++ b/perl-install/share/po/mk.po @@ -11213,9 +11213,9 @@ msgid "maybe" msgstr "можеи" #: pkgs.pm:474 -#, fuzzy, c-format -msgid "Downloading file %s..." -msgstr "Праќа датотеки..." +#, c-format +msgid "Downloading file %1..." +msgstr "Снимање на датотека %1..." #: printer/cups.pm:103 #, c-format diff --git a/perl-install/share/po/mn.po b/perl-install/share/po/mn.po index c5cbba569..89ceae968 100644 --- a/perl-install/share/po/mn.po +++ b/perl-install/share/po/mn.po @@ -9952,7 +9952,7 @@ msgstr "магадгүй" #: pkgs.pm:474 #, fuzzy, c-format -msgid "Downloading file %s..." +msgid "Downloading file %1..." msgstr "Файлууд илгээж байна..." #: printer/cups.pm:103 diff --git a/perl-install/share/po/ms.po b/perl-install/share/po/ms.po index 2d8527c09..d240460bf 100644 --- a/perl-install/share/po/ms.po +++ b/perl-install/share/po/ms.po @@ -9964,7 +9964,7 @@ msgstr "" #: pkgs.pm:474 #, fuzzy, c-format -msgid "Downloading file %s..." +msgid "Downloading file %1..." msgstr "Ke Fail" #: printer/cups.pm:103 diff --git a/perl-install/share/po/mt.po b/perl-install/share/po/mt.po index becbf52ea..fa77e569c 100644 --- a/perl-install/share/po/mt.po +++ b/perl-install/share/po/mt.po @@ -11281,7 +11281,7 @@ msgstr "forsi" #: pkgs.pm:474 #, fuzzy, c-format -msgid "Downloading file %s..." +msgid "Downloading file %1..." msgstr "Qed nibgħat fajls..." #: printer/cups.pm:103 diff --git a/perl-install/share/po/nb.po b/perl-install/share/po/nb.po index 355603b89..097b05bbd 100644 --- a/perl-install/share/po/nb.po +++ b/perl-install/share/po/nb.po @@ -11516,7 +11516,7 @@ msgstr "kanskje" #: pkgs.pm:474 #, fuzzy, c-format -msgid "Downloading file %s..." +msgid "Downloading file %1..." msgstr "Sender filer..." #: printer/cups.pm:103 diff --git a/perl-install/share/po/nl.po b/perl-install/share/po/nl.po index f340cc9c0..c92a8509a 100644 --- a/perl-install/share/po/nl.po +++ b/perl-install/share/po/nl.po @@ -11548,9 +11548,9 @@ msgid "maybe" msgstr "misschien" #: pkgs.pm:474 -#, fuzzy, c-format -msgid "Downloading file %s..." -msgstr "Bezig met versturen van bestanden..." +#, c-format +msgid "Downloading file %1..." +msgstr "Bestand %1 wordt gedownload..." #: printer/cups.pm:103 #, c-format diff --git a/perl-install/share/po/nn.po b/perl-install/share/po/nn.po index 5fdb2440e..a89c01b79 100644 --- a/perl-install/share/po/nn.po +++ b/perl-install/share/po/nn.po @@ -10932,9 +10932,9 @@ msgid "maybe" msgstr "kanskje" #: pkgs.pm:474 -#, fuzzy, c-format -msgid "Downloading file %s..." -msgstr "Sender filer ..." +#, c-format +msgid "Downloading file %1..." +msgstr "Lastar ned «%1» ..." #: printer/cups.pm:103 #, c-format diff --git a/perl-install/share/po/pl.po b/perl-install/share/po/pl.po index 71cebddf0..2dfe9c625 100644 --- a/perl-install/share/po/pl.po +++ b/perl-install/share/po/pl.po |