Load .config/locale.conf if it exists
This commit is contained in:
parent
f863c469fb
commit
5a09a88af4
1 changed files with 3 additions and 0 deletions
|
@ -53,6 +53,9 @@ set -o noclobber
|
||||||
export LC_ALL=''
|
export LC_ALL=''
|
||||||
export TIME_STYLE="long-iso" # Used by GNU 'ls'.
|
export TIME_STYLE="long-iso" # Used by GNU 'ls'.
|
||||||
## Set the default language.
|
## Set the default language.
|
||||||
|
if [ -r "$HOME/.config/locale.conf" ]; then
|
||||||
|
. "$HOME/.config/locale.conf"
|
||||||
|
fi
|
||||||
case "$LANG" in
|
case "$LANG" in
|
||||||
"en_GB.UTF-8")
|
"en_GB.UTF-8")
|
||||||
LANGUAGE="en_GB:en"
|
LANGUAGE="en_GB:en"
|
||||||
|
|
Loading…
Reference in a new issue