diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-09-07 08:51:37 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-09-07 08:51:37 +0000 |
commit | d4c9c02a053b920628c507c203cd907fe7f3f26a (patch) | |
tree | 36344d4e9d3490e53e64c3f3f4c9a93e0aac6953 /perl-install | |
parent | 6e2f0bf3a95c6bdf7714a8b6c8d07f838c766517 (diff) | |
download | drakx-d4c9c02a053b920628c507c203cd907fe7f3f26a.tar drakx-d4c9c02a053b920628c507c203cd907fe7f3f26a.tar.gz drakx-d4c9c02a053b920628c507c203cd907fe7f3f26a.tar.bz2 drakx-d4c9c02a053b920628c507c203cd907fe7f3f26a.tar.xz drakx-d4c9c02a053b920628c507c203cd907fe7f3f26a.zip |
(selectLanguage) set default IM (else IM was only set if one click on
"Country / Region" in summary)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install_steps.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index e143d53c5..cb5e879e6 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -107,6 +107,7 @@ sub selectLanguage { if (!exists $o->{locale}{country}) { my $h = lang::analyse_locale_name(lang::l2locale($o->{locale}{lang})); $o->{locale}{country} = $h->{country} if $h->{country}; + $o->{locale}{IM} = lang::get_default_im($o->{locale}{lang}); } lang::set($o->{locale}, !$o->isa('interactive::gtk')); |