diff options
author | Thierry Vignaud <tv@mandriva.org> | 2007-07-04 10:39:25 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2007-07-04 10:39:25 +0000 |
commit | f20d8b8e6238eaec27920569e889ef66132eece3 (patch) | |
tree | f2b385e5dbf45a89917f096f5dd30a4f36c834c9 | |
parent | 79fbf3968e215c02dd0bcdbbf246ede35e6e719f (diff) | |
download | rpmdrake-f20d8b8e6238eaec27920569e889ef66132eece3.tar rpmdrake-f20d8b8e6238eaec27920569e889ef66132eece3.tar.gz rpmdrake-f20d8b8e6238eaec27920569e889ef66132eece3.tar.bz2 rpmdrake-f20d8b8e6238eaec27920569e889ef66132eece3.tar.xz rpmdrake-f20d8b8e6238eaec27920569e889ef66132eece3.zip |
(perform_installation) rephrase (#30072)
-rwxr-xr-x | Rpmdrake/pkg.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Rpmdrake/pkg.pm b/Rpmdrake/pkg.pm index df89b534..f800d60b 100755 --- a/Rpmdrake/pkg.pm +++ b/Rpmdrake/pkg.pm @@ -517,7 +517,7 @@ sub perform_installation { #- (partially) duplicated from /usr/sbin/urpmi :-( my $install_count = int(@pkgs); my $to_install = $install_count == 0 ? '' : - ( P("To satisfy dependencies, the following package is going to be installed:", "To satisfy dependencies, the following %d packages are going to be installed:", $install_count, $install_count) + ( P("The following package is going to be installed:", "The following %d packages are going to be installed:", $install_count, $install_count) . "\n" . formatlistpkg(map { s!.*/!!; $_ } @pkgs) . "\n"); my $remove_count = scalar(@to_remove); interactive_msg(($to_install ? N("Confirmation") : N("Some packages need to be removed")), |