aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPer Øyvind Karlsen <peroyvind@mandriva.org>2011-05-27 05:54:06 +0000
committerPer Øyvind Karlsen <peroyvind@mandriva.org>2011-05-27 05:54:06 +0000
commitf5f2891bf68d174edb7cbd56b49966400cf028d3 (patch)
tree10025e8fc623fbfb9e426730d3612858c7c45a2e
parent7adb2ff66087d91093c7952000e2d026517365f3 (diff)
downloadrpmdrake-f5f2891bf68d174edb7cbd56b49966400cf028d3.tar
rpmdrake-f5f2891bf68d174edb7cbd56b49966400cf028d3.tar.gz
rpmdrake-f5f2891bf68d174edb7cbd56b49966400cf028d3.tar.bz2
rpmdrake-f5f2891bf68d174edb7cbd56b49966400cf028d3.tar.xz
rpmdrake-f5f2891bf68d174edb7cbd56b49966400cf028d3.zip
more frenglish..
-rw-r--r--Rpmdrake/gui.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/Rpmdrake/gui.pm b/Rpmdrake/gui.pm
index afeebb47..ef62e97c 100644
--- a/Rpmdrake/gui.pm
+++ b/Rpmdrake/gui.pm
@@ -772,7 +772,7 @@ sub toggle_nodes {
foreach (grep { exists $pkgs->{$_}{base} } @remove) {
${$pkgs->{$_}{base}} == 1 ? push @impossible_to_remove, $_ : ${$pkgs->{$_}{base}}--;
}
- @impossible_to_remove and interactive_msg(N("Some packages can't be removed"),
+ @impossible_to_remove and interactive_msg(N("Some packages cannot be removed"),
N("Removing these packages would break your system, sorry:\n\n") .
format_list(@impossible_to_remove));
@nodes_with_deps = difference2(\@nodes_with_deps, \@impossible_to_remove);
@@ -838,7 +838,7 @@ sub toggle_nodes {
} @cant;
my $count = @reasons;
interactive_msg(
- ($count == 1 ? N("One package cannot be installed") : N("Some packages can't be installed")),
+ ($count == 1 ? N("One package cannot be installed") : N("Some packages cannot be installed")),
($count == 1 ?
N("Sorry, the following package cannot be selected:\n\n%s", format_list(@reasons))
: N("Sorry, the following packages cannot be selected:\n\n%s", format_list(@reasons))),
@@ -873,9 +873,9 @@ sub toggle_nodes {
#- some deps may exist on some packages which aren't listed because
#- not upgradable (older than what currently installed)
exists $pkgs->{$_} or next;
- if (!$pkgs->{$_}{pkg}) { #- can't be removed # FIXME; what about next packages in the loop?
+ if (!$pkgs->{$_}{pkg}) { #- cannot be removed # FIXME; what about next packages in the loop?
$pkgs->{$_}{selected} = 0;
- log::explanations("can't be removed: $_");
+ log::explanations("cannot be removed: $_");
} else {
$pkgs->{$_}{selected} = $new_state;
}