diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2002-04-08 16:25:07 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2002-04-08 16:25:07 +0000 |
commit | b6ab813177bf359fc0d84c9baa11dcbca769c20f (patch) | |
tree | d6334ede3c8c962db5f9ae546fbcfc76d16d12ac /perl-install/diskdrake/interactive.pm | |
parent | dcd3c0c8e7a93d2ac26c86fa6427cd8f8ecf7e4f (diff) | |
download | drakx-b6ab813177bf359fc0d84c9baa11dcbca769c20f.tar drakx-b6ab813177bf359fc0d84c9baa11dcbca769c20f.tar.gz drakx-b6ab813177bf359fc0d84c9baa11dcbca769c20f.tar.bz2 drakx-b6ab813177bf359fc0d84c9baa11dcbca769c20f.tar.xz drakx-b6ab813177bf359fc0d84c9baa11dcbca769c20f.zip |
fix a few english strings
Diffstat (limited to 'perl-install/diskdrake/interactive.pm')
-rw-r--r-- | perl-install/diskdrake/interactive.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/diskdrake/interactive.pm b/perl-install/diskdrake/interactive.pm index ab8cb0e22..72f001d31 100644 --- a/perl-install/diskdrake/interactive.pm +++ b/perl-install/diskdrake/interactive.pm @@ -990,7 +990,7 @@ sub need_migration { if (@l && $::isStandalone) { my $choice; my @choices = (__("Move files to the new partition"), __("Hide files")); - $in->ask_from('', _("Directory %s already contain some data\n(%s)", $mntpoint, formatList(5, @l)), + $in->ask_from('', _("Directory %s already contains data\n(%s)", $mntpoint, formatList(5, @l)), [ { val => \$choice, list => \@choices, type => 'list' } ]) or return; $choice eq $choices[0] ? 'migrate' : 'hide'; } else { |