summaryrefslogtreecommitdiffstats
path: root/urpm/orphans.pm
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@mandriva.com>2009-08-31 15:58:19 +0000
committerChristophe Fergeau <cfergeau@mandriva.com>2009-08-31 15:58:19 +0000
commitc6cf2ecd5589210f62176b40b16a2b5444a1fe7c (patch)
treeda826590bd97734ce65a3f2441b2877dc3ee7348 /urpm/orphans.pm
parentc15b67408a15fdf80a7343804c8de6402a168189 (diff)
downloadurpmi-c6cf2ecd5589210f62176b40b16a2b5444a1fe7c.tar
urpmi-c6cf2ecd5589210f62176b40b16a2b5444a1fe7c.tar.gz
urpmi-c6cf2ecd5589210f62176b40b16a2b5444a1fe7c.tar.bz2
urpmi-c6cf2ecd5589210f62176b40b16a2b5444a1fe7c.tar.xz
urpmi-c6cf2ecd5589210f62176b40b16a2b5444a1fe7c.zip
move "\n" out of translatable string
Diffstat (limited to 'urpm/orphans.pm')
-rw-r--r--urpm/orphans.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/urpm/orphans.pm b/urpm/orphans.pm
index 47356813..ce4cac8c 100644
--- a/urpm/orphans.pm
+++ b/urpm/orphans.pm
@@ -419,8 +419,8 @@ sub get_now_orphans_msg {
my $orphans = get_orphans($urpm);
my @orphans = map { scalar $_->fullname } @$orphans or return '';
- P("The following package:\n%s\nis now orphaned, if you wish to remove it, you can use \"urpme --auto-orphans\"\n",
- "The following packages:\n%s\nare now orphaned, if you wish to remove them, you can use \"urpme --auto-orphans\"\n",scalar(@orphans), add_leading_spaces(join("\n", sort @orphans)));
+ P("The following package:\n%s\nis now orphaned, if you wish to remove it, you can use \"urpme --auto-orphans\"",
+ "The following packages:\n%s\nare now orphaned, if you wish to remove them, you can use \"urpme --auto-orphans\"",scalar(@orphans), add_leading_spaces(join("\n", sort @orphans)))."\n";
}