From 89ae709d5c2207c6d2348f310428b32e2bf815bc Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Fri, 9 Jan 2004 16:10:24 +0000 Subject: enable other packages to override libDrakx translations with those from their own domains (eg: prevent mcc to display "partition de demarrage" instead of "demarrage" in french for "boot" ...) --- 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 014aade79..dafa208dd 100644 --- a/perl-install/common.pm +++ b/perl-install/common.pm @@ -58,7 +58,7 @@ sub unmakedev { $_[0] >> 8, $_[0] & 0xff } sub translate_real { my ($s) = @_; $s or return ''; - foreach ('libDrakX', @::textdomains) { + foreach (@::textdomains, 'libDrakX') { my $s2 = c::dgettext($_, $s); return $s2 if $s ne $s2; } -- cgit v1.2.1