summaryrefslogtreecommitdiff
path: root/pcr/filesystem-nosystemd/locale.sh
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2018-01-06 02:36:12 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2018-01-06 02:36:12 -0500
commita88f46f60144321454de3d3d7f310f89b4d6ec24 (patch)
tree20f2e70a736bb0c25b2deb4b91d15d6d289609ae /pcr/filesystem-nosystemd/locale.sh
parent1db00cf986b54d932643f262395a7e628746801c (diff)
downloadabslibre-a88f46f60144321454de3d3d7f310f89b4d6ec24.tar.gz
abslibre-a88f46f60144321454de3d3d7f310f89b4d6ec24.tar.bz2
abslibre-a88f46f60144321454de3d3d7f310f89b4d6ec24.zip
Add filesystem-nosystemd
Diffstat (limited to 'pcr/filesystem-nosystemd/locale.sh')
-rw-r--r--pcr/filesystem-nosystemd/locale.sh26
1 files changed, 26 insertions, 0 deletions
diff --git a/pcr/filesystem-nosystemd/locale.sh b/pcr/filesystem-nosystemd/locale.sh
new file mode 100644
index 000000000..11b7dc9ec
--- /dev/null
+++ b/pcr/filesystem-nosystemd/locale.sh
@@ -0,0 +1,26 @@
+#!/bin/sh
+
+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
+
+LANG=${LANG:-C}
+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