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 | |
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
-rw-r--r-- | po/ca.po | 1 | ||||
-rw-r--r-- | po/es.po | 1 | ||||
-rw-r--r-- | po/fa.po | 1 | ||||
-rw-r--r-- | po/he.po | 1 | ||||
-rw-r--r-- | po/sk.po | 1 | ||||
-rw-r--r-- | po/ta.po | 1 | ||||
-rw-r--r-- | po/ur.po | 1 | ||||
-rw-r--r-- | scripts/splash.sh | 2 |
8 files changed, 1 insertions, 8 deletions
@@ -26,4 +26,3 @@ msgstr "Prem Esc pel mode detallat." #: tmp/splash.sh:162 msgid "Shutting down the system..." msgstr "S'està aturant el sistema..." - @@ -34,4 +34,3 @@ msgstr "Deteniendo el sistema..." #~ msgid "cC" #~ msgstr "cC" - @@ -34,4 +34,3 @@ msgstr "در حال خاموش کردن سیستم..." #~ msgid "cC" #~ msgstr "cC" - @@ -27,4 +27,3 @@ msgstr "תוטרופמ תועדוה תגצהל Esc שקמ לע ץוחלל שי" #: tmp/splash.sh:162 msgid "Shutting down the system..." msgstr "...תכרעמה תא הבכמ" - @@ -22,4 +22,3 @@ msgstr "Stlačte Esc ak chcete vidieť výpisy." #: tmp/splash.sh:162 msgid "Shutting down the system..." msgstr "Systém sa ukončuje..." - @@ -24,4 +24,3 @@ msgstr "விளக்கமான உரையாடலுக்கு Esc ப #: tmp/splash.sh:162 msgid "Shutting down the system..." msgstr "இயங்குதளம் நிறுத்தப்படுகிறது..." - @@ -25,4 +25,3 @@ msgstr "اسکیپ (\"Esc\" ) دباے وربوز موڈ کیلے" #: tmp/splash.sh:162 msgid "Shutting down the system..." msgstr "سیسٹم شٹڈاون ھو رھا ھے " - 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 |