diff options
author | Christophe Fergeau <cfergeau@mandriva.com> | 2009-02-16 10:56:32 +0000 |
---|---|---|
committer | Christophe Fergeau <cfergeau@mandriva.com> | 2009-02-16 10:56:32 +0000 |
commit | 4a690543a2440255001d62bf90edb492ad6e020b (patch) | |
tree | b08965d292e5dc32d74a6f9d9d58011d31236cd2 /urpm/orphans.pm | |
parent | 1ccef5faf63cd2028865b020fefa3200418cf26b (diff) | |
download | urpmi-4a690543a2440255001d62bf90edb492ad6e020b.tar urpmi-4a690543a2440255001d62bf90edb492ad6e020b.tar.gz urpmi-4a690543a2440255001d62bf90edb492ad6e020b.tar.bz2 urpmi-4a690543a2440255001d62bf90edb492ad6e020b.tar.xz urpmi-4a690543a2440255001d62bf90edb492ad6e020b.zip |
Improve wording of the message telling orphans can be removed
Diffstat (limited to 'urpm/orphans.pm')
-rw-r--r-- | urpm/orphans.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/urpm/orphans.pm b/urpm/orphans.pm index 4f574d84..8c85528f 100644 --- a/urpm/orphans.pm +++ b/urpm/orphans.pm @@ -359,8 +359,8 @@ sub get_now_orphans_msg { my $orphans = get_orphans($urpm); my @orphans = map { scalar $_->fullname } @$orphans or return ''; - P("The following package is now orphan, use \"urpme --auto-orphans\" to remove it.", - "The following packages are now orphans, use \"urpme --auto-orphans\" to remove them.", scalar(@orphans)) + P("The following package is now orphan, if you wish to remove it, you can use \"urpme --auto-orphans\".", + "The following packages are now orphans, if you wish to remove it, you can use \"urpme --auto-orphans\".", scalar(@orphans)) . "\n" . add_leading_spaces(join("\n", sort @orphans) . "\n"); } |