PKGBUILDs/core/filesystem/locale.sh

23 lines
766 B
Bash
Raw Normal View History

2012-09-14 01:03:58 +00:00
#!/bin/sh
2018-03-11 18:56:59 +00:00
# load locale.conf in XDG paths.
# /etc/locale.conf loads and overrides by kernel command line is done by systemd
# But we override it here, see FS#56688
2014-10-29 13:52:08 +00:00
if [ -z "$LANG" ]; then
if [ -n "$XDG_CONFIG_HOME" ] && [ -r "$XDG_CONFIG_HOME/locale.conf" ]; then
. "$XDG_CONFIG_HOME/locale.conf"
2015-02-24 14:19:21 +00:00
elif [ -n "$HOME" ] && [ -r "$HOME/.config/locale.conf" ]; then
2014-10-29 13:52:08 +00:00
. "$HOME/.config/locale.conf"
elif [ -r /etc/locale.conf ]; then
. /etc/locale.conf
fi
2012-09-14 01:03:58 +00:00
fi
2018-03-11 18:56:59 +00:00
# define default LANG to C if not already defined
LANG=${LANG:-C}
2018-03-11 18:56:59 +00:00
# export all locale (7) variables when they exist
export LANG LANGUAGE LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY \
LC_MESSAGES LC_PAPER LC_NAME LC_ADDRESS LC_TELEPHONE LC_MEASUREMENT \
LC_IDENTIFICATION