diff options
author | Bill Nottingham <notting@redhat.com> | 2003-02-21 20:33:03 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2003-02-21 20:33:03 +0000 |
commit | 4e9410b4980f826786479d323c37060bbcb0851f (patch) | |
tree | 6f11a23d9b3b957b35f996a89c67dbf68616687d /lang.csh | |
parent | d7802ae1da34b67a8cef5838562e168f3f6c8c1c (diff) | |
download | initscripts-4e9410b4980f826786479d323c37060bbcb0851f.tar initscripts-4e9410b4980f826786479d323c37060bbcb0851f.tar.gz initscripts-4e9410b4980f826786479d323c37060bbcb0851f.tar.bz2 initscripts-4e9410b4980f826786479d323c37060bbcb0851f.tar.xz initscripts-4e9410b4980f826786479d323c37060bbcb0851f.zip |
handle LANGUAGE specially for zh_CN.GB18030 & gdm (#84773)
Diffstat (limited to 'lang.csh')
-rwxr-xr-x | lang.csh | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -11,6 +11,12 @@ end if ($?GDM_LANG) then set sourced=1 setenv LANG $GDM_LANG + if ($?LANGUAGE) then + unsetenv LANGUAGE + endif + if ("$GDM_LANG" == "zh_CN.GB18030") then + setenv LANGUAGE "zh_CN.GB18030:zh_CN.GB2312:zh_CN" + endif endif if ($sourced == 1) then |