diff options
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); } |