aboutsummaryrefslogtreecommitdiffstats
path: root/Rpmdrake/gui.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Rpmdrake/gui.pm')
-rw-r--r--Rpmdrake/gui.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/Rpmdrake/gui.pm b/Rpmdrake/gui.pm
index 1cd246d2..1c072d09 100644
--- a/Rpmdrake/gui.pm
+++ b/Rpmdrake/gui.pm
@@ -158,7 +158,7 @@ sub get_string_from_keywords {
my @media_types = split(':', $distribconf->getvalue($medium_name, 'media_type'));
- my $unsupported = N("It is <b>not supported</b> by Mandriva.");
+ my $unsupported = N("It is <b>not supported</b> by Mageia.");
my $dangerous = N("It may <b>break</b> your system.");
my $s;
$s .= N("This package is not free software") . "\n" if member('non-free', @media_types);
@@ -173,12 +173,12 @@ sub get_string_from_keywords {
} elsif (member('updates', @media_types)) {
return join("\n",
(member('official', @media_types) ?
- N("This is an offical update which is supported by Mandriva.")
+ N("This is an offical update which is supported by Mageia.")
: (N("This is an unoffical update."), $unsupported))
,
$s);
} else {
- $s .= N("This is an official package supported by Mandriva") . "\n" if member('official', @media_types);
+ $s .= N("This is an official package supported by Mageia") . "\n" if member('official', @media_types);
return $s;
}
}