diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-02-18 16:34:55 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-02-18 16:34:55 +0000 |
commit | 42e86d1b511388bf65ea0896951b976e04f2c77b (patch) | |
tree | 8e2a1149063c0fcc8bdb38e9a88ddb2c2e482226 /perl-install/install_steps_interactive.pm | |
parent | 09957aa88b3060a60e563844c0fd2dabe5aec414 (diff) | |
download | drakx-backup-do-not-use-42e86d1b511388bf65ea0896951b976e04f2c77b.tar drakx-backup-do-not-use-42e86d1b511388bf65ea0896951b976e04f2c77b.tar.gz drakx-backup-do-not-use-42e86d1b511388bf65ea0896951b976e04f2c77b.tar.bz2 drakx-backup-do-not-use-42e86d1b511388bf65ea0896951b976e04f2c77b.tar.xz drakx-backup-do-not-use-42e86d1b511388bf65ea0896951b976e04f2c77b.zip |
display the release even when there is only one system to upgrade
(asked by flepied & warly)
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index f296fde2c..86c9a2ded 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -141,9 +141,7 @@ sub selectInstallClass { interactive_help_id => 'selectInstallClass', }, sub { - ref($_[0]) ? (@l > 1 ? - N("Upgrade %s", $_[0]{release}) : - N("Upgrade")) : + ref($_[0]) ? N("Upgrade %s", $_[0]{release}) : translate($_[0]); }, [ @l, N_("Install") ]); if (ref $p) { |