#!/bin/sh # 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 if [ -z "$LANG" ]; then if [ -n "$XDG_CONFIG_HOME" ] && [ -r "$XDG_CONFIG_HOME/locale.conf" ]; then . "$XDG_CONFIG_HOME/locale.conf" elif [ -n "$HOME" ] && [ -r "$HOME/.config/locale.conf" ]; then . "$HOME/.config/locale.conf" elif [ -r /etc/locale.conf ]; then . /etc/locale.conf fi fi # define default LANG to C if not already defined LANG=${LANG:-C} # export all locale (7) variables when they exist export LANG [ -n "$LC_CTYPE" ] && export LC_CTYPE [ -n "$LC_NUMERIC" ] && export LC_NUMERIC [ -n "$LC_TIME" ] && export LC_TIME [ -n "$LC_COLLATE" ] && export LC_COLLATE [ -n "$LC_MONETARY" ] && export LC_MONETARY [ -n "$LC_MESSAGES" ] && export LC_MESSAGES [ -n "$LC_PAPER" ] && export LC_PAPER [ -n "$LC_NAME" ] && export LC_NAME [ -n "$LC_ADDRESS" ] && export LC_ADDRESS [ -n "$LC_TELEPHONE" ] && export LC_TELEPHONE [ -n "$LC_MEASUREMENT" ] && export LC_MEASUREMENT [ -n "$LC_IDENTIFICATION" ] && export LC_IDENTIFICATION [ -n "$LANGUAGE" ] && export LANGUAGE