From ea5307de1a0f2fdea3ea7d793559408f665a2bfe Mon Sep 17 00:00:00 2001 From: Martin Stransky Date: Fri, 4 Jan 2019 13:49:06 +0100 Subject: Changed locale detector to handle Esperanto (rhbz#1656900) --- firefox.sh.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'firefox.sh.in') diff --git a/firefox.sh.in b/firefox.sh.in index adf98e9..4ad7237 100644 --- a/firefox.sh.in +++ b/firefox.sh.in @@ -191,8 +191,8 @@ if [ $MOZILLA_DOWN -ne 0 ]; then CURRENT_LOCALE=${CURRENT_LOCALE:-$LANG} # Try with a local variant first, then without a local variant - SHORTMOZLOCALE=`echo $CURRENT_LOCALE | sed "s|_\([^.]*\).*||g"` - MOZLOCALE=`echo $CURRENT_LOCALE | sed "s|_\([^.]*\).*|-\1|g"` + SHORTMOZLOCALE=`echo $CURRENT_LOCALE | sed "s|_\([^.]*\).*||g" | sed "s|\..*||g"` + MOZLOCALE=`echo $CURRENT_LOCALE | sed "s|_\([^.]*\).*|-\1|g" | sed "s|\..*||g"` function create_langpack_link() { local language=$* -- cgit