summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2006-02-28 13:58:15 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2006-02-28 13:58:15 +0000
commit08a95749b1a29a763e3d824e9a517af068769792 (patch)
treec0914823d5fbcaf935aa575f99c4253e38d70cff /perl-install
parent31ea30a4ffe9cebb506c2b4ec27e3a8d25f2c68d (diff)
downloaddrakx-backup-do-not-use-08a95749b1a29a763e3d824e9a517af068769792.tar
drakx-backup-do-not-use-08a95749b1a29a763e3d824e9a517af068769792.tar.gz
drakx-backup-do-not-use-08a95749b1a29a763e3d824e9a517af068769792.tar.bz2
drakx-backup-do-not-use-08a95749b1a29a763e3d824e9a517af068769792.tar.xz
drakx-backup-do-not-use-08a95749b1a29a763e3d824e9a517af068769792.zip
(need_migration) fix untranslated messages (#21326)
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/diskdrake/interactive.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/diskdrake/interactive.pm b/perl-install/diskdrake/interactive.pm
index 47d5873b2..1f311105e 100644
--- a/perl-install/diskdrake/interactive.pm
+++ b/perl-install/diskdrake/interactive.pm
@@ -1163,7 +1163,7 @@ sub need_migration {
my $choice;
my @choices = (N_("Move files to the new partition"), N_("Hide files"));
$in->ask_from('', N("Directory %s already contains data\n(%s)", $mntpoint, formatList(5, @l)),
- [ { val => \$choice, list => \@choices, type => 'list' } ]) or return;
+ [ { val => \$choice, list => \@choices, type => 'list', format => sub { translate($_[0]) } } ]) or return;
$choice eq $choices[0] ? 'migrate' : 'hide';
} else {
'hide';