diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-03-23 19:50:24 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-03-23 19:50:24 +0000 |
commit | 6e0106254719ab097b11839a80183d8e80e9cd1c (patch) | |
tree | 6e6f06b1e8ad0a11514bc04aee95cd89d48fbf87 /perl-install/install | |
parent | 12a8fac9ff3a98c2dde2b6069eba953c218e4f51 (diff) | |
download | drakx-backup-do-not-use-6e0106254719ab097b11839a80183d8e80e9cd1c.tar drakx-backup-do-not-use-6e0106254719ab097b11839a80183d8e80e9cd1c.tar.gz drakx-backup-do-not-use-6e0106254719ab097b11839a80183d8e80e9cd1c.tar.bz2 drakx-backup-do-not-use-6e0106254719ab097b11839a80183d8e80e9cd1c.tar.xz drakx-backup-do-not-use-6e0106254719ab097b11839a80183d8e80e9cd1c.zip |
fix some missing Mageia occurences after bogus s/mdv/mga/ cleaning on importing
(spot by perl_checker)
Diffstat (limited to 'perl-install/install')
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/install/any.pm | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index f7c9ada70..8e19c1ae0 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,4 +1,5 @@ - better "bootloader" message (mga#484) +- fix displaying "Mageia" in some messages Version 14.0 - 13 March 2012 diff --git a/perl-install/install/any.pm b/perl-install/install/any.pm index d06813f4e..ed5c8b497 100644 --- a/perl-install/install/any.pm +++ b/perl-install/install/any.pm @@ -180,12 +180,12 @@ sub ask_mirror { require mirror; my $mirrors = eval { - my $_w = $o->wait_message('', N("Contacting %s web site to get the list of available mirrors...")); + my $_w = $o->wait_message('', N("Contacting %s web site to get the list of available mirrors...", N("Mageia"))); mirror::list($o->{product_id}, $type); }; my $err = $@; if (!$mirrors) { - $o->ask_warn('', N("Failed contacting %s web site to get the list of available mirrors") . "\n$err"); + $o->ask_warn('', N("Failed contacting %s web site to get the list of available mirrors", N("Mageia")) . "\n$err"); return ask_url($o, $o_url); } |