diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-07-31 22:18:31 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-07-31 22:18:31 +0000 |
commit | 65121ec90c213b503d2448e8bc815289fb915099 (patch) | |
tree | 4d596d230a11c55ee2645df2d2f3eb14aff7b23e | |
parent | e1972b91c4d37f8c57573e982aced0e33ada86b2 (diff) | |
download | drakx-65121ec90c213b503d2448e8bc815289fb915099.tar drakx-65121ec90c213b503d2448e8bc815289fb915099.tar.gz drakx-65121ec90c213b503d2448e8bc815289fb915099.tar.bz2 drakx-65121ec90c213b503d2448e8bc815289fb915099.tar.xz drakx-65121ec90c213b503d2448e8bc815289fb915099.zip |
(translate): empty string translation is an empty string
-rw-r--r-- | perl-install/common.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/common.pm b/perl-install/common.pm index a4848f84e..2b4ce4eac 100644 --- a/perl-install/common.pm +++ b/perl-install/common.pm @@ -58,7 +58,7 @@ sub unmakedev { $_[0] >> 8, $_[0] & 0xff } sub translate { my ($s) = @_; - c::dgettext('libDrakX', $s); + $s ? c::dgettext('libDrakX', $s) : ''; } sub untranslate { |