From 0842cea68e21afebf39e4442743c999164cc5233 Mon Sep 17 00:00:00 2001 From: Pablo Saratxaga Date: Wed, 3 Sep 2003 16:29:31 +0000 Subject: fixed use of OUTPUT_CHARSET=UTF-8 --- scripts/splash.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'scripts') diff --git a/scripts/splash.sh b/scripts/splash.sh index a6ccf2a..2417e7a 100644 --- a/scripts/splash.sh +++ b/scripts/splash.sh @@ -26,13 +26,12 @@ else fi gprintf() { - # request translations to be always in UTF-8 - OUTPUT_CHARSET=UTF-8 + # request translations to be always in UTF-8 with OUTPUT_CHARSET=UTF-8 if [ -x /bin/gettext -a -n "$1" ]; then if [ -n "$GP_LANG" ]; then - TEXT=`LANGUAGE=$GP_LANG gettext -e --domain=$TEXTDOMAIN "$1"` + TEXT=`OUTPUT_CHARSET=UTF-8 LANGUAGE=$GP_LANG gettext -e --domain=$TEXTDOMAIN "$1"` else - TEXT=`gettext -e --domain=$TEXTDOMAIN "$1"` + TEXT=`OUTPUT_CHARSET=UTF-8 gettext -e --domain=$TEXTDOMAIN "$1"` fi else TEXT=$1 -- cgit v1.2.1