aboutsummaryrefslogtreecommitdiffstats
path: root/lang.sh
blob: 5f17639f5bcd9fb2751fb5d9c43ecbf118ade96c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
if [ -f /etc/sysconfig/i18n ]; then
        . /etc/sysconfig/i18n

  if [ -n "$LANG" ]; then
          export LANG
  fi
  
  if [ -n "$LINGUAS" ]; then
          export LINGUAS
  fi
  
  if [ -n "$SYSTERM" ]; then
          export TERM=$SYSTERM
  fi
fi