diff options
author | Olivier Blin <oblin@mandriva.org> | 2005-12-27 16:26:30 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2005-12-27 16:26:30 +0000 |
commit | 07f0da40e08b7d3f5d143513a7b924e415af5a51 (patch) | |
tree | df94e880801bc2b5fc674de541267a6aacd82e9b | |
parent | 2135da541717f31c20033d2f7a17ed5e7d55a400 (diff) | |
download | drakx-07f0da40e08b7d3f5d143513a7b924e415af5a51.tar drakx-07f0da40e08b7d3f5d143513a7b924e415af5a51.tar.gz drakx-07f0da40e08b7d3f5d143513a7b924e415af5a51.tar.bz2 drakx-07f0da40e08b7d3f5d143513a7b924e415af5a51.tar.xz drakx-07f0da40e08b7d3f5d143513a7b924e415af5a51.zip |
fix for localedrake in text mode (backport of patch from Pixel)
-rw-r--r-- | perl-install/any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index 0f6d6ac5e..e4784a0f2 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -830,7 +830,7 @@ sub selectLanguage_standalone { { val => \$locale->{utf8}, type => 'bool', text => N("Use Unicode by default"), advanced => 1 }, ]); lang::set($locale); - Gtk2->set_locale; + Gtk2->set_locale if $in->isa('interactive::gtk'); } sub selectLanguage_and_more_standalone { |