summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_interactive.pm
diff options
context:
space:
mode:
authorPablo Saratxaga <pablo@mandriva.com>2000-08-30 17:48:46 +0000
committerPablo Saratxaga <pablo@mandriva.com>2000-08-30 17:48:46 +0000
commit14034634f914544f3f5c4ee62c87352055c1b57a (patch)
treef42dea7121194a134d56aa263abc40489958f7c0 /perl-install/install_steps_interactive.pm
parent18aaa8cd39e680fc54116128c24469f7afadb78d (diff)
downloaddrakx-backup-do-not-use-14034634f914544f3f5c4ee62c87352055c1b57a.tar
drakx-backup-do-not-use-14034634f914544f3f5c4ee62c87352055c1b57a.tar.gz
drakx-backup-do-not-use-14034634f914544f3f5c4ee62c87352055c1b57a.tar.bz2
drakx-backup-do-not-use-14034634f914544f3f5c4ee62c87352055c1b57a.tar.xz
drakx-backup-do-not-use-14034634f914544f3f5c4ee62c87352055c1b57a.zip
fixed English typo
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r--perl-install/install_steps_interactive.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm
index 6f5f4d79e..0285fb95e 100644
--- a/perl-install/install_steps_interactive.pm
+++ b/perl-install/install_steps_interactive.pm
@@ -347,7 +347,7 @@ sub choosePackages {
my @l = (300, 700, round_up(min($max_size, $availableC) / sqr(1024), 100));
$l[2] > $l[1] + 200 or splice(@l, 1, 1); #- not worth proposing too alike stuff
$l[1] > $l[0] + 100 or splice(@l, 0, 1);
- my @text = (__("Minimum (%dMB)"), __("Recommanded (%dMB)"), __("Complete (%dMB)"));
+ my @text = (__("Minimum (%dMB)"), __("Recommended (%dMB)"), __("Complete (%dMB)"));
$o->ask_from_listf('', 'TODOMESSAGE', sub { _ ($text[$_[1]], $_[0]) }, \@l) * sqr(1024);
} else {
$o->chooseSizeToInstall($packages, $min_size, $max_size, $availableC, $individual) || goto &choosePackages;