From a441d8a7e9f9e7cd791118c7562749cf1abd8d3c Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Wed, 1 Sep 2004 04:39:38 +0000 Subject: typo fix --- perl-install/lang.pm | 92 ++++++++++++++++++++++++++-------------------------- 1 file changed, 46 insertions(+), 46 deletions(-) diff --git a/perl-install/lang.pm b/perl-install/lang.pm index 8e301c867..163625e20 100644 --- a/perl-install/lang.pm +++ b/perl-install/lang.pm @@ -570,50 +570,50 @@ sub get_ims() { keys %gtkqt_im } #- ENC is used by some versions or rxvt my %xim = ( -'ja_JP' => { -ENC => 'eucj', -}, -'ja_JP.UTF-8' => { -ENC => 'utf8', -}, -'ko_KR' => { -ENC => 'kr', -}, -'ko_KR.UTF-8' => { -ENC => 'utf8', -}, -'zh_TW' => { -ENC => 'big5', -}, -'zh_TW.UTF-8' => { -ENC => 'utf8', -}, -'zh_CN' => { -ENC => 'gb', -}, -'zh_CN.UTF-8' => { -ENC => 'utf8', -}, -'zh_HK' => { -ENC => 'big5', -}, -'zh_HK.UTF-8' => { -ENC => 'utf8', -}, -'zh_SG' => { -ENC => 'gb', -}, -'zh_SG.UTF-8' => { -ENC => 'utf8', -}, -#-XFree86 has an internal XIM for Thai that enables syntax checking etc. -#-'Passthroug' is no check at all, 'BasicCheck' accepts bad sequences -#-and convert them to right ones, 'Strict' refuses bad sequences -'th_TH' => { -XIM_PROGRAM => '/bin/true', #- it's an internal module -XMODIFIERS => '"@im=BasicCheck"', -}, -); + 'ja_JP' => { + ENC => 'eucj', + }, + 'ja_JP.UTF-8' => { + ENC => 'utf8', + }, + 'ko_KR' => { + ENC => 'kr', + }, + 'ko_KR.UTF-8' => { + ENC => 'utf8', + }, + 'zh_TW' => { + ENC => 'big5', + }, + 'zh_TW.UTF-8' => { + ENC => 'utf8', + }, + 'zh_CN' => { + ENC => 'gb', + }, + 'zh_CN.UTF-8' => { + ENC => 'utf8', + }, + 'zh_HK' => { + ENC => 'big5', + }, + 'zh_HK.UTF-8' => { + ENC => 'utf8', + }, + 'zh_SG' => { + ENC => 'gb', + }, + 'zh_SG.UTF-8' => { + ENC => 'utf8', + }, + #-XFree86 has an internal XIM for Thai that enables syntax checking etc. + #-'Passthroug' is no check at all, 'BasicCheck' accepts bad sequences + #-and convert them to right ones, 'Strict' refuses bad sequences + 'th_TH' => { + XIM_PROGRAM => '/bin/true', #- it's an internal module + XMODIFIERS => '"@im=BasicCheck"', + }, + ); my %default_im; @@ -1041,10 +1041,10 @@ sub write { } #- deactivate translations on console for RTL languages - if (member($locale->{lang}}, qw(ar bn fa he hi ko ur yi zh_TW zh_CN)) { + if (member($locale->{lang}, qw(ar bn fa he hi ko ur yi zh_TW zh_CN))) { #- CONSOLE_NOT_LOCALIZED if defined to yes, disables translations on console #- it is needed for languages not supported by the linux console - add2hash $h, { CONSOLE_NOT_LOCALIZED => 'yes' } + add2hash($h, { CONSOLE_NOT_LOCALIZED => 'yes' }); } setVarsInSh($prefix . ($b_user_only ? "$ENV{HOME}/.i18n" : '/etc/sysconfig/i18n'), $h); -- cgit v1.2.1