diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-07-23 18:48:32 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-07-23 18:48:32 +0000 |
commit | e58875f801fa0703cef9138df2ed456b34462969 (patch) | |
tree | a19cb45c9223771542847b0bb6de18c16ac4f5fb /perl-install/standalone.pm | |
parent | db1ceba674784dfd8ffaacbff6446e6a6102b448 (diff) | |
download | drakx-e58875f801fa0703cef9138df2ed456b34462969.tar drakx-e58875f801fa0703cef9138df2ed456b34462969.tar.gz drakx-e58875f801fa0703cef9138df2ed456b34462969.tar.bz2 drakx-e58875f801fa0703cef9138df2ed456b34462969.tar.xz drakx-e58875f801fa0703cef9138df2ed456b34462969.zip |
do not use the po's directly. Use mo's through gettext
Diffstat (limited to 'perl-install/standalone.pm')
-rw-r--r-- | perl-install/standalone.pm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/perl-install/standalone.pm b/perl-install/standalone.pm index 2b403d567..b74253f72 100644 --- a/perl-install/standalone.pm +++ b/perl-install/standalone.pm @@ -1,9 +1,14 @@ package standalone; # $Id$ +use c; + $::isStandalone = 1; $ENV{SHARE_PATH} ||= "/usr/share"; +c::setlocale(); +c::bindtextdomain('libDrakX', "/usr/share/locale"); + sub pkgs_install { my ($in, @l) = @_; |