summaryrefslogtreecommitdiff
path: root/libre-testing/filesystem/locale.sh
diff options
context:
space:
mode:
authorNicolás Reynolds <apoyosis@correo.inta.gob.ar>2012-09-04 12:32:46 -0300
committerNicolás Reynolds <apoyosis@correo.inta.gob.ar>2012-09-04 12:32:46 -0300
commite85af5281f53c90932c7fe78660d3cabd14e8033 (patch)
treecdf504fce94bdc5791a2dde9ca928c2ef9dd1cae /libre-testing/filesystem/locale.sh
parent1bd9d9093ce91658bb3ac0ad3d4d0cf0ba1f9223 (diff)
parent6110ce46051a4079d110268965fff1df7a73e770 (diff)
Merge branch 'master' of ssh://gparabola/srv/git/abslibre
Diffstat (limited to 'libre-testing/filesystem/locale.sh')
-rw-r--r--libre-testing/filesystem/locale.sh28
1 files changed, 0 insertions, 28 deletions
diff --git a/libre-testing/filesystem/locale.sh b/libre-testing/filesystem/locale.sh
deleted file mode 100644
index 5fd4174d5..000000000
--- a/libre-testing/filesystem/locale.sh
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/sh
-
-unset LANG LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY LC_MESSAGES \
- LC_PAPER LC_NAME LC_ADDRESS LC_TELEPHONE LC_MEASUREMENT LC_IDENTIFICATION
-
-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
-elif [ -r /etc/rc.conf ]; then
- LANG=$(. /etc/rc.conf 2>/dev/null; echo "$LOCALE")
-fi
-
-export LANG="${LANG:-C}"
-[ -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