summaryrefslogtreecommitdiff
path: root/firefox.sh.in
diff options
context:
space:
mode:
authorJan Horak <xhorak@fedoraproject.org>2009-01-07 15:49:05 +0000
committerJan Horak <xhorak@fedoraproject.org>2009-01-07 15:49:05 +0000
commita31088e9f34b5df2df067bee7e6e2579436915a0 (patch)
treef88b0f2922c9a857989d5cfd475d5f8634fd0be2 /firefox.sh.in
parent- 3.1 beta 2 (diff)
downloadlibrewolf-fedora-ff-a31088e9f34b5df2df067bee7e6e2579436915a0.tar.gz
librewolf-fedora-ff-a31088e9f34b5df2df067bee7e6e2579436915a0.tar.bz2
librewolf-fedora-ff-a31088e9f34b5df2df067bee7e6e2579436915a0.zip
Fixed wrong LANG and LC_MESSAGES variables interpretation (#441973)\nin
startup script.
Diffstat (limited to 'firefox.sh.in')
-rw-r--r--firefox.sh.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/firefox.sh.in b/firefox.sh.in
index e8f5048..6994e0b 100644
--- a/firefox.sh.in
+++ b/firefox.sh.in
@@ -140,10 +140,10 @@ export GNOME_DISABLE_CRASH_DIALOG
MOZARGS=
# Try without a local variant first, then with a local variant
# So that pt-BR doesn't try to use pt for example
-SHORTMOZLOCALE=`echo $LANG | sed "s|_\([^.]*\).*||g"`
+SHORTMOZLOCALE=`echo $LC_MESSAGES | sed "s|_\([^.]*\).*||g"`
[ -f $MOZ_EXTENSIONS_DIR/langpack-${SHORTMOZLOCALE}@firefox.mozilla.org/chrome/$SHORTMOZLOCALE.jar ] && MOZARGS="-UILocale $SHORTMOZLOCALE"
-MOZLOCALE=`echo $LANG | sed "s|_\([^.]*\).*|-\1|g"`
+MOZLOCALE=`echo $LC_MESSAGES | sed "s|_\([^.]*\).*|-\1|g"`
[ -f $MOZ_EXTENSIONS_DIR/langpack-${MOZLOCALE}@firefox.mozilla.org/chrome/$MOZLOCALE.jar ] && MOZARGS="-UILocale $MOZLOCALE"
# Prepare command line arguments
bgstack15