summaryrefslogtreecommitdiffstats
path: root/urpmi
diff options
context:
space:
mode:
authorPablo Saratxaga <pablo@mandriva.com>2007-02-21 11:18:49 +0000
committerPablo Saratxaga <pablo@mandriva.com>2007-02-21 11:18:49 +0000
commit92659faaef5e37e511d3ccdb45254fd8ac80c11d (patch)
tree11b7d8ae97665e673bb82250bfb5fd23a8c4ee32 /urpmi
parentfa79312b2c92cc9b6ee3663fe8effb8508e4ad0a (diff)
downloadurpmi-92659faaef5e37e511d3ccdb45254fd8ac80c11d.tar
urpmi-92659faaef5e37e511d3ccdb45254fd8ac80c11d.tar.gz
urpmi-92659faaef5e37e511d3ccdb45254fd8ac80c11d.tar.bz2
urpmi-92659faaef5e37e511d3ccdb45254fd8ac80c11d.tar.xz
urpmi-92659faaef5e37e511d3ccdb45254fd8ac80c11d.zip
fixed ngettext use
Diffstat (limited to 'urpmi')
-rwxr-xr-xurpmi2
1 files changed, 1 insertions, 1 deletions
diff --git a/urpmi b/urpmi
index a883b858..d47bc60b 100755
--- a/urpmi
+++ b/urpmi
@@ -595,7 +595,7 @@ if (@root_only) {
$msg = "$msg\n" . N("(test only, installation will not be actually done)");
}
my $msg2 = ($urpm->{nb_install} == 1) ?
- N("Proceed with the installation of 1 package? (%2\$d MB)",toMb($sum))
+ N("Proceed with the installation of 1 package? (%d MB)",toMb($sum))
: P("Proceed with the installation of the %d package? (%d MB)",
"Proceed with the installation of the %d packages? (%d MB)", $urpm->{nb_install}, $urpm->{nb_install}, toMb($sum));
my $p = join "\n", @to_install;