diff options
author | Thierry Vignaud <tv@mandriva.org> | 2006-06-06 16:26:41 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2006-06-06 16:26:41 +0000 |
commit | 6accbe69a06fbeb8a4c10fbcb043fc4f141360e4 (patch) | |
tree | 4db83b8aa43b9fe41cd10ce634121e7f1aef60fa | |
parent | 9da7f78972b07cb8cc1e2a1543b6ef4d92c48e86 (diff) | |
download | urpmi-6accbe69a06fbeb8a4c10fbcb043fc4f141360e4.tar urpmi-6accbe69a06fbeb8a4c10fbcb043fc4f141360e4.tar.gz urpmi-6accbe69a06fbeb8a4c10fbcb043fc4f141360e4.tar.bz2 urpmi-6accbe69a06fbeb8a4c10fbcb043fc4f141360e4.tar.xz urpmi-6accbe69a06fbeb8a4c10fbcb043fc4f141360e4.zip |
let be nicer with translators (we should never concatenate strings that way which break both localized typography rules and RTL languages)
-rwxr-xr-x | urpmi | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -726,7 +726,7 @@ foreach my $set (@{$state->{transaction} || []}) { ); if (@l) { #- Warning : the following message is parsed in urpm::parallel_* - print N("Installation failed") . ":\n" . join("\n", map { "\t$_" } @l), "\n"; + print N("Installation failed:") . "\n" . join("\n", map { "\t$_" } @l), "\n"; if ($urpm->{options}{auto} || !$urpm->{options}{'allow-nodeps'} && !$urpm->{options}{'allow-force'}) { ++$nok; ++$urpm->{logger_id}; |