forked from pool/MozillaFirefox
8834f8ff8e
* MFSA 2011-47/CVE-2011-3648 (bmo#690225) Potential XSS against sites using Shift-JIS * MFSA 2011-48/CVE-2011-3651/CVE-2011-3652/CVE-2011-3654 Miscellaneous memory safety hazards * MFSA 2011-49/CVE-2011-3650 (bmo#674776) Memory corruption while profiling using Firebug * MFSA 2011-52/CVE-2011-3655 (bmo#672182) Code execution via NoWaiverWrapper - rebased patches - enable telemetry prompt - set intl.locale.matchOS=true in the base package as it causes too much confusion when it's only available with branding-openSUSE OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaFirefox?expand=0&rev=237
31 lines
1.6 KiB
Diff
31 lines
1.6 KiB
Diff
From: Wolfgang Rosenauer <wr@rosenauer.org>
|
|
Subject: use system locale if available
|
|
This setting used to live in the branding-openSUSE package but this is causing too much
|
|
confusion and therefore is currently the only setting we switch in the unbranded
|
|
package unconditionally.
|
|
|
|
# HG changeset patch
|
|
# Parent 020571ebc3766a68f1e50780b910c51d1bb76087
|
|
diff --git a/modules/libpref/src/init/all.js b/modules/libpref/src/init/all.js
|
|
--- a/modules/libpref/src/init/all.js
|
|
+++ b/modules/libpref/src/init/all.js
|
|
@@ -1085,17 +1085,17 @@ pref("intl.charsetmenu.browser.unicode",
|
|
pref("intl.charsetmenu.mailedit", "chrome://global/locale/intl.properties");
|
|
pref("intl.charsetmenu.browser.cache", "");
|
|
pref("intl.charsetmenu.mailview.cache", "");
|
|
pref("intl.charsetmenu.composer.cache", "");
|
|
pref("intl.charsetmenu.browser.cache.size", 5);
|
|
pref("intl.charset.detector", "chrome://global/locale/intl.properties");
|
|
pref("intl.charset.default", "chrome://global-platform/locale/intl.properties");
|
|
pref("intl.ellipsis", "chrome://global-platform/locale/intl.properties");
|
|
-pref("intl.locale.matchOS", false);
|
|
+pref("intl.locale.matchOS", true);
|
|
// fallback charset list for Unicode conversion (converting from Unicode)
|
|
// currently used for mail send only to handle symbol characters (e.g Euro, trademark, smartquotes)
|
|
// for ISO-8859-1
|
|
pref("intl.fallbackCharsetList.ISO-8859-1", "windows-1252");
|
|
pref("font.language.group", "chrome://global/locale/intl.properties");
|
|
|
|
// these locales have right-to-left UI
|
|
pref("intl.uidirection.ar", "rtl");
|