diff options
author | Pablo Saratxaga <pablo@mandriva.com> | 2004-06-29 23:58:04 +0000 |
---|---|---|
committer | Pablo Saratxaga <pablo@mandriva.com> | 2004-06-29 23:58:04 +0000 |
commit | bae2289e630c68e7f5d1bae83618f19e1b865157 (patch) | |
tree | 76250cda87be02bf77f0b21ee674c0977e95be47 /urpm.pm | |
parent | c532f6376b7dc3513fb7932138e5856cff79d08b (diff) | |
download | urpmi-bae2289e630c68e7f5d1bae83618f19e1b865157.tar urpmi-bae2289e630c68e7f5d1bae83618f19e1b865157.tar.gz urpmi-bae2289e630c68e7f5d1bae83618f19e1b865157.tar.bz2 urpmi-bae2289e630c68e7f5d1bae83618f19e1b865157.tar.xz urpmi-bae2289e630c68e7f5d1bae83618f19e1b865157.zip |
put N( ) around strings
Diffstat (limited to 'urpm.pm')
-rw-r--r-- | urpm.pm | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -173,9 +173,9 @@ sub read_config { exists($filelists{$filetype}{$_->{$filetype}}) and $_->{ignore} = 1, $urpm->{error}( - N($filetype eq 'hdlist' - ? "medium \"%s\" trying to use an already used hdlist, medium ignored" - : "medium \"%s\" trying to use an already used list, medium ignored", + ($filetype eq 'hdlist' + ? N("medium \"%s\" trying to use an already used hdlist, medium ignored") + : N("medium \"%s\" trying to use an already used list, medium ignored"), $_->{name}) ); $filelists{$filetype}{$_->{$filetype}} = undef; |