From 921b3f87ef3e2470fe27a9851add13c433bdee57 Mon Sep 17 00:00:00 2001 From: Yukihiro Nakai Date: Mon, 13 Aug 2001 22:36:52 +0000 Subject: Korean and Chinese fix --- rc.d/init.d/functions | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'rc.d/init.d/functions') diff --git a/rc.d/init.d/functions b/rc.d/init.d/functions index 3b147f5b..bd368ee5 100755 --- a/rc.d/init.d/functions +++ b/rc.d/init.d/functions @@ -27,6 +27,12 @@ if [ -f /etc/sysconfig/i18n -a -z "${NOLOCALE:-}" ] ; then . /etc/sysconfig/i18n if [ "${LANG:-}" = "ja_JP.eucJP" -a "`/sbin/consoletype`" != "pty" ]; then unset LANG + elif [ "${LANG:-}" = "ko_KR.eucKR" -a "`/sbin/consoletype`" != "pty" ]; then + unset LANG + elif [ "${LANG:-}" = "zh_CN.GB2312" -a "`/sbin/consoletype`" != "pty" ]; then + unset LANG + elif [ "${LANG:-}" = "zh_TW.Big5" -a "`/sbin/consoletype`" != "pty" ]; then + unset LANG else export LANG fi -- cgit v1.2.1