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 | 6ad710cf3b3b6b719ab0625bac318898e1759590 (patch) | |
tree | 6e6f06b1e8ad0a11514bc04aee95cd89d48fbf87 /perl-install/install/any.pm | |
parent | e0d0347f266ae545f0b1b6ec3d638e1c41a74a38 (diff) | |
download | drakx-6ad710cf3b3b6b719ab0625bac318898e1759590.tar drakx-6ad710cf3b3b6b719ab0625bac318898e1759590.tar.gz drakx-6ad710cf3b3b6b719ab0625bac318898e1759590.tar.bz2 drakx-6ad710cf3b3b6b719ab0625bac318898e1759590.tar.xz drakx-6ad710cf3b3b6b719ab0625bac318898e1759590.zip |
fix some missing Mageia occurences after bogus s/mdv/mga/ cleaning on importing
(spot by perl_checker)
Diffstat (limited to 'perl-install/install/any.pm')
-rw-r--r-- | perl-install/install/any.pm | 4 |
1 files changed, 2 insertions, 2 deletions
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); } |