summaryrefslogtreecommitdiffstats
path: root/urpm.pm
diff options
context:
space:
mode:
authorPablo Saratxaga <pablo@mandriva.com>2004-06-29 23:58:04 +0000
committerPablo Saratxaga <pablo@mandriva.com>2004-06-29 23:58:04 +0000
commitbae2289e630c68e7f5d1bae83618f19e1b865157 (patch)
tree76250cda87be02bf77f0b21ee674c0977e95be47 /urpm.pm
parentc532f6376b7dc3513fb7932138e5856cff79d08b (diff)
downloadurpmi-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.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/urpm.pm b/urpm.pm
index 1685a71c..e1dfa561 100644
--- a/urpm.pm
+++ b/urpm.pm
@@ -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;