forked from pool/MozillaFirefox
4a13134b83
* Default search engine changed to Yahoo! for North America * Default search engine changed to Yandex for Belarusian, Kazakh, and Russian locales * Improved search bar (en-US only) * Firefox Hello real-time communication client * Easily switch themes/personas directly in the Customizing mode * Implementation of HTTP/2 (draft14) and ALPN * Disabled SSLv3 * MFSA 2014-83/CVE-2014-1587/CVE-2014-1588 Miscellaneous memory safety hazards * MFSA 2014-84/CVE-2014-1589 (bmo#1043787) XBL bindings accessible via improper CSS declarations * MFSA 2014-85/CVE-2014-1590 (bmo#1087633) XMLHttpRequest crashes with some input streams * MFSA 2014-86/CVE-2014-1591 (bmo#1069762) CSP leaks redirect data via violation reports * MFSA 2014-87/CVE-2014-1592 (bmo#1088635) Use-after-free during HTML5 parsing * MFSA 2014-88/CVE-2014-1593 (bmo#1085175) Buffer overflow while parsing media content * MFSA 2014-89/CVE-2014-1594 (bmo#1074280) Bad casting from the BasicThebesLayer to BasicContainerLayer - rebased patches - limit linker memory usage for %ix86 OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaFirefox?expand=0&rev=415
32 lines
1.6 KiB
Diff
32 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 8c1bfc96b05ef1836aad6e9f2af323f63ed1b69c
|
|
|
|
diff --git a/modules/libpref/init/all.js b/modules/libpref/init/all.js
|
|
--- a/modules/libpref/init/all.js
|
|
+++ b/modules/libpref/init/all.js
|
|
@@ -1503,17 +1503,17 @@ pref("converter.html2txt.header_strategy
|
|
|
|
pref("intl.accept_languages", "chrome://global/locale/intl.properties");
|
|
pref("intl.menuitems.alwaysappendaccesskeys","chrome://global/locale/intl.properties");
|
|
pref("intl.menuitems.insertseparatorbeforeaccesskeys","chrome://global/locale/intl.properties");
|
|
pref("intl.charset.detector", "chrome://global/locale/intl.properties");
|
|
pref("intl.charset.fallback.override", "");
|
|
pref("intl.charset.fallback.tld", true);
|
|
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");
|