blob: 3d5c7203e32b5790afea3755cc7edd053ec2f2a8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
--- browser/app/mozilla.in.orig Sat Nov 13 00:54:51 2004
+++ browser/app/mozilla.in Sat Nov 13 00:57:22 2004
@@ -110,6 +110,7 @@
# Check default compile-time libdir
if [ -x "$moz_libdir/run-mozilla.sh" ]; then
dist_bin="$moz_libdir"
+ run_moz="$dist_bin/run-mozilla.sh"
else
echo "Cannot find mozilla runtime directory. Exiting."
exit 1
@@ -207,12 +207,31 @@
script_args="$script_args -d $2"
shift 2
;;
+ -UILocale)
+ moreargs="$moreargs -UILocale $2"
+ _done_locale="YES"
+ shift 2
+ ;;
+ -UIRegion)
+ if [ -n "${_done_locale}" ]; then
+ moreargs="$moreargs -UIRegion $2"
+ fi
+ shift 2
+ ;;
*)
moreargs="$moreargs \"$1\""
shift 1
;;
esac
done
+
+if [ ! -n "${_done_locale}" -a -n "${MOZILLA_UILOCALE}" ]; then
+ if [ -n "${MOZILLA_UIREGION}" ]; then
+ moreargs="-UIRegion ${MOZILLA_UIREGION} $moreargs"
+ fi
+ moreargs="-UILocale ${MOZILLA_UILOCALE} $moreargs"
+fi
+unset _done_locale
export MRE_HOME
eval "set -- $moreargs"
|