aboutsummaryrefslogtreecommitdiffstats
path: root/lang.sh
diff options
context:
space:
mode:
Diffstat (limited to 'lang.sh')
-rwxr-xr-xlang.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/lang.sh b/lang.sh
index a41820e0..8ece9ac9 100755
--- a/lang.sh
+++ b/lang.sh
@@ -21,7 +21,7 @@ fi
# only source one of the possible files, and in that order;
# if system wide and user config are mixed and different, umpredictable
# things will happen...
-for langfile in "$HOME/.i18n" /etc/sysconfig/i18n ; do
+for langfile in "$HOME/.i18n" /etc/locale.conf /etc/sysconfig/i18n ; do
[ -f $langfile -a "$LC_SOURCED" != 1 ] && . $langfile && LC_SOURCED=1 && export LC_SOURCED
done