diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2005-01-03 16:45:10 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2005-01-03 16:45:10 +0000 |
commit | 119a7030ac50d358652c0a265695052e5fc54dbb (patch) | |
tree | 4c652d2f6c5216875e60a0f227883cbabd53c3bc /perl-install/install_any.pm | |
parent | a5611f56ca7236902c6828475b8afc57399236fc (diff) | |
download | drakx-backup-do-not-use-119a7030ac50d358652c0a265695052e5fc54dbb.tar drakx-backup-do-not-use-119a7030ac50d358652c0a265695052e5fc54dbb.tar.gz drakx-backup-do-not-use-119a7030ac50d358652c0a265695052e5fc54dbb.tar.bz2 drakx-backup-do-not-use-119a7030ac50d358652c0a265695052e5fc54dbb.tar.xz drakx-backup-do-not-use-119a7030ac50d358652c0a265695052e5fc54dbb.zip |
(migrate_device_names) try to be smarter with translators
Diffstat (limited to 'perl-install/install_any.pm')
-rw-r--r-- | perl-install/install_any.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index cb4077d09..796f48ab2 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -1409,10 +1409,10 @@ sub migrate_device_names { } @from_fstab_not_handled; $o_in->ask_from('', - N("The "), + N("The disk %s was renamed:", $_->{device}), [ map { - { label => N("%s (was %s)", $_->{mntpoint}, $_->{device}), val => \$_->{device}, - format => sub { $_[0] && $_->{device} }, + { label => N("%s (previously named as %s)", $_->{mntpoint}, $_->{device}), + val => \$_->{device}, format => sub { $_[0] && $_->{device} }, list => [ '', $propositions_valid ? @{$_->{propositions}} : fs::get::hds_fstab(@current_hds) ] }; |