From 65121ec90c213b503d2448e8bc815289fb915099 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Tue, 31 Jul 2001 22:18:31 +0000 Subject: (translate): empty string translation is an empty string --- perl-install/common.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- cgit v1.2.1