diff options
Diffstat (limited to 'perl-install/install/any.pm')
-rw-r--r-- | perl-install/install/any.pm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/perl-install/install/any.pm b/perl-install/install/any.pm index ea31266ba..76ac3d561 100644 --- a/perl-install/install/any.pm +++ b/perl-install/install/any.pm @@ -1,4 +1,4 @@ -package install::any; # $Id$ +package install::any; # $Id: any.pm 259898 2009-09-03 14:05:46Z tv $ use strict; @@ -179,12 +179,12 @@ sub ask_mirror { require mirror; my $mirrors = eval { - my $_w = $o->wait_message('', N("Contacting Mandriva Linux 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...")); mirror::list($o->{product_id}, $type); }; my $err = $@; if (!$mirrors) { - $o->ask_warn('', N("Failed contacting Mandriva Linux 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$err"); return ask_url($o, $o_url); } @@ -923,7 +923,7 @@ sub generate_automatic_stage1_params { sub find_root_parts { my ($fstab, $prefix) = @_; - grep { $_->{release} =~ /\b(mandrake|mandrakelinux|mandriva|conectiva)\b/i } + grep { $_->{release} =~ /\b(mandrake|mandrakelinux|mandriva|conectiva|mageia)\b/i } _find_root_parts($fstab, $prefix); } |