diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-03-20 23:16:30 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-03-20 23:16:30 +0000 |
commit | 4b21cac097416c7a4994267df8082d78dcf1b0c6 (patch) | |
tree | e283449458cae83e53cfd5873421d8c7afac664d /perl-install/install | |
parent | 5ba23491653c4b5bf1f87eb3603cd03d6033e5d6 (diff) | |
download | drakx-4b21cac097416c7a4994267df8082d78dcf1b0c6.tar drakx-4b21cac097416c7a4994267df8082d78dcf1b0c6.tar.gz drakx-4b21cac097416c7a4994267df8082d78dcf1b0c6.tar.bz2 drakx-4b21cac097416c7a4994267df8082d78dcf1b0c6.tar.xz drakx-4b21cac097416c7a4994267df8082d78dcf1b0c6.zip |
(setupBootloaderBefore) make "Preparing bootloader" less intimidating
(same logic as previous commit, mga#484)
Diffstat (limited to 'perl-install/install')
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/install/steps_interactive.pm | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index ec566848d..dcf7b8320 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,6 +1,7 @@ - disk install: handle bogus ISOs when looking for install image (mga#4919) - step column: hide so called "bootlader" step since we do _not_ actually install bootloader at this stage but later in summary (mga#484) +- make "Preparing bootloader" less intimidating (mga#484) Version 13.95 - 13 March 2012 diff --git a/perl-install/install/steps_interactive.pm b/perl-install/install/steps_interactive.pm index e4926cb09..07662997c 100644 --- a/perl-install/install/steps_interactive.pm +++ b/perl-install/install/steps_interactive.pm @@ -1031,7 +1031,7 @@ sub setRootPassword_addUser { sub setupBootloaderBefore { my ($o) = @_; local $o->{pop_wait_messages} = 1; - my $_w = $o->wait_message(N("Preparing bootloader..."), N("Preparing bootloader...") . "\n" . + my $_w = $o->wait_message(N("Preparing bootloader..."), N("Preparing boot images...") . "\n" . N("Be patient, this may take a while...") ); $o->SUPER::setupBootloaderBefore; |