diff options
author | Pablo Saratxaga <pablo@mandriva.com> | 2004-08-11 12:38:52 +0000 |
---|---|---|
committer | Pablo Saratxaga <pablo@mandriva.com> | 2004-08-11 12:38:52 +0000 |
commit | bdbfcf19a5896cf99890b97f7c6b0758785240d8 (patch) | |
tree | aa3f80910f98cca8ccea8a49f74a8d5c1d116d1c /scripts/splash.sh | |
parent | eeab40ff7e62d74841df53dc8b593af238b2b77b (diff) | |
download | bootsplash-bdbfcf19a5896cf99890b97f7c6b0758785240d8.tar bootsplash-bdbfcf19a5896cf99890b97f7c6b0758785240d8.tar.gz bootsplash-bdbfcf19a5896cf99890b97f7c6b0758785240d8.tar.bz2 bootsplash-bdbfcf19a5896cf99890b97f7c6b0758785240d8.tar.xz bootsplash-bdbfcf19a5896cf99890b97f7c6b0758785240d8.zip |
default locale should be defined by environment
Diffstat (limited to 'scripts/splash.sh')
-rw-r--r-- | scripts/splash.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/splash.sh b/scripts/splash.sh index e044594..e7c4c68 100644 --- a/scripts/splash.sh +++ b/scripts/splash.sh @@ -31,7 +31,7 @@ gprintf() { if [ -n "$GP_LANG" ]; then TEXT=`OUTPUT_CHARSET=UTF-8 LANGUAGE=$GP_LANG LANG=$GP_LANG gettext -e --domain=$TEXTDOMAIN "$1"` else - TEXT=`OUTPUT_CHARSET=UTF-8 LANG=$(echo $LANGUAGE | cut -d: -f1) gettext -e --domain=$TEXTDOMAIN "$1"` + TEXT=`OUTPUT_CHARSET=UTF-8 gettext -e --domain=$TEXTDOMAIN "$1"` fi else TEXT=$1 |