From cd58febabb2c4dea8da49e5ca9d37ad5e77f6864 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Thu, 18 Jan 2007 14:31:08 +0000 Subject: give better control on string to translators (appending ":" isn't nice for quite some languages) and factorize a string --- urpmi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'urpmi') diff --git a/urpmi b/urpmi index b013166e..119a9f0f 100755 --- a/urpmi +++ b/urpmi @@ -575,11 +575,11 @@ foreach my $pkg (sort { $a->name cmp $b->name } @{$urpm->{depslist}}[keys %{$sta } $urpm->{nb_install} = @to_install; if ($env) { - my $msg = P("To satisfy dependencies, the following package is going to be installed", - "To satisfy dependencies, the following packages are going to be installed", $#to_install); + my $msg = P("To satisfy dependencies, the following package is going to be installed:", + "To satisfy dependencies, the following packages are going to be installed:", $#to_install); my $msg2 = N("(%d packages, %d MB)", $urpm->{nb_install}, toMb($sum)); my $p = join "\n", @to_install; - print "$msg:\n$p\n$msg2\n"; + print "$msg\n$p\n$msg2\n"; exit 0; #- exit now for specific environment. } if (@root_only) { -- cgit v1.2.1