diff options
author | Pablo Saratxaga <pablo@mandriva.com> | 2007-02-21 11:18:49 +0000 |
---|---|---|
committer | Pablo Saratxaga <pablo@mandriva.com> | 2007-02-21 11:18:49 +0000 |
commit | 92659faaef5e37e511d3ccdb45254fd8ac80c11d (patch) | |
tree | 11b7d8ae97665e673bb82250bfb5fd23a8c4ee32 | |
parent | fa79312b2c92cc9b6ee3663fe8effb8508e4ad0a (diff) | |
download | urpmi-92659faaef5e37e511d3ccdb45254fd8ac80c11d.tar urpmi-92659faaef5e37e511d3ccdb45254fd8ac80c11d.tar.gz urpmi-92659faaef5e37e511d3ccdb45254fd8ac80c11d.tar.bz2 urpmi-92659faaef5e37e511d3ccdb45254fd8ac80c11d.tar.xz urpmi-92659faaef5e37e511d3ccdb45254fd8ac80c11d.zip |
fixed ngettext use
-rwxr-xr-x | urpmi | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |