diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-12-15 08:48:51 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-12-15 08:48:51 +0000 |
commit | 226bc14e18ffe6c106d28680ea935cad227a9e05 (patch) | |
tree | 170f4b1a3214a90592075fd3e42ff07e21134d31 /perl-install/standalone.pm | |
parent | d78b368c177b069dc2a157f6a094df272a385eab (diff) | |
download | drakx-226bc14e18ffe6c106d28680ea935cad227a9e05.tar drakx-226bc14e18ffe6c106d28680ea935cad227a9e05.tar.gz drakx-226bc14e18ffe6c106d28680ea935cad227a9e05.tar.bz2 drakx-226bc14e18ffe6c106d28680ea935cad227a9e05.tar.xz drakx-226bc14e18ffe6c106d28680ea935cad227a9e05.zip |
use Locale::gettext for dgettext, bindtextdomain and bind_textdomain_codeset instead of module c
(that way we can also use dngettext, and it's more modular)
Diffstat (limited to 'perl-install/standalone.pm')
-rw-r--r-- | perl-install/standalone.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone.pm b/perl-install/standalone.pm index 02ee34bdb..320b336e1 100644 --- a/perl-install/standalone.pm +++ b/perl-install/standalone.pm @@ -16,7 +16,7 @@ $::isStandalone = 1; $ENV{SHARE_PATH} ||= "/usr/share"; c::init_setlocale(); -c::bindtextdomain('libDrakX', "/usr/share/locale"); +Locale::gettext::bindtextdomain('libDrakX', "/usr/share/locale"); $::license = N_("This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by |