/etc/profile.d
NameSizeModeActions
bash_timestamps.sh690644editdlrm
colorls.csh11500644editdlrm
colorls.sh11720644editdlrm
cpanel-php-composer.sh5480755editdlrm
cpanel-user-commands.sh3580644editdlrm
cvs.csh920644editdlrm
cvs.sh780644editdlrm
glib2.csh1920644editdlrm
glib2.sh1920644editdlrm
lang.csh17450644editdlrm
lang.sh27060644editdlrm
less.csh1230644editdlrm
less.sh1210644editdlrm
locallib.csh2400755editdlrm
locallib.sh2330755editdlrm
vim.csh1050644editdlrm
vim.sh2690644editdlrm
which2.sh1690644editdlrm
Edit: /etc/profile.d/lang.csh (1745B)
# /etc/profile.d/lang.csh - set i18n stuff set sourced=0 if ($?LANG) then set saved_lang=$LANG if ( -f "$HOME/.i18n" ) then eval `grep -v '^[[:blank:]]*#' "$HOME/.i18n" | sed 's|\([^=]*\)=\([^=]*\)|setenv \1 \2|g' | sed 's|$|;|'` set sourced=1 endif setenv LANG $saved_lang unset saved_lang else foreach file (/etc/sysconfig/i18n "$HOME/.i18n") if ( -f $file ) then eval `grep -v '^[[:blank:]]*#' $file | sed 's|\([^=]*\)=\([^=]*\)|setenv \1 \2|g' | sed 's|$|;|'` set sourced=1 endif end endif if ($sourced == 1) then if ($?LC_ALL && $?LANG) then if ($LC_ALL == $LANG) then unsetenv LC_ALL endif endif set consoletype=`/sbin/consoletype stdout` if ($?LANG) then switch ($LANG) case *.utf8*: case *.UTF-8*: if ( $?TERM ) then if ( "$TERM" == "linux" ) then if ( "$consoletype" == "vt" ) then switch ($LANG) case en_IN*: breaksw case ja*: case ko*: case si*: case zh*: case ar*: case fa*: case he*: case *_IN*: setenv LANG en_US.UTF-8 breaksw endsw endif endif endif breaksw case *: if ( $?TERM ) then if ( "$TERM" == "linux" ) then if ( "$consoletype" == "vt" ) then switch ($LANG) case en_IN*: breaksw case ja*: case ko*: case si*: case zh*: case ar*: case fa*: case he*: case *_IN*: setenv LANG en_US breaksw endsw endif endif endif breaksw endsw endif unsetenv SYSFONTACM unsetenv SYSFONT unsetenv consoletype endif