diff options
-rwxr-xr-x | clock.pl | 2 | ||||
-rwxr-xr-x | control-center | 2 | ||||
-rwxr-xr-x | menus_launcher.pl | 2 | ||||
-rwxr-xr-x | print_launcher.pl | 2 |
4 files changed, 4 insertions, 4 deletions
@@ -11,7 +11,7 @@ use timezone; #------------------------------------------------------------- # i18n : IMPORTANT to get correct namespace (drakconf instead of libDrakX) -push @::textdomains, 'drakconf'; +unshift @::textdomains, 'drakconf'; my $in = interactive->vnew('su'); my $pixmap; diff --git a/control-center b/control-center index 1ffb1e9f..187d01ad 100755 --- a/control-center +++ b/control-center @@ -38,7 +38,7 @@ use ugtk2 qw(:create :helpers :wrappers); #------------------------------------------------------------- # i18n : IMPORTANT to get correct namespace (drakconf instead of libDrakX) -push @::textdomains, 'drakconf'; +unshift @::textdomains, 'drakconf'; my ($version, $conffile, $class_install) = ("9.1", "/etc/mcc.conf", "/etc/sysconfig/system"); diff --git a/menus_launcher.pl b/menus_launcher.pl index 1de58f61..cc50e1f3 100755 --- a/menus_launcher.pl +++ b/menus_launcher.pl @@ -13,7 +13,7 @@ use standalone; # (This version is now UTF8 compliant - Sg 2001-08-18) #------------------------------------------------------------- -push @::textdomains, 'drakconf'; +unshift @::textdomains, 'drakconf'; my $bindir = "/usr/bin/"; my $my_win = ugtk2->new('print_launcher'); diff --git a/print_launcher.pl b/print_launcher.pl index ae25660e..fca534b0 100755 --- a/print_launcher.pl +++ b/print_launcher.pl @@ -13,7 +13,7 @@ use standalone; # (This version is now UTF8 compliant - Sg 2001-08-18) #------------------------------------------------------------- -push @::textdomains, 'drakconf'; +unshift @::textdomains, 'drakconf'; my $sbindir = "/usr/sbin/"; my $my_win = ugtk2->new('print_launcher'); |