mozilla-preferences.patch
author Wolfgang Rosenauer <wr@rosenauer.org>
Sat, 14 Sep 2013 20:56:00 +0200
branchfirefox24
changeset 664 1276f5ff4bcb
parent 339 db8b891eeb1e
child 703 c4aab80e472f
permissions -rw-r--r--
24.0rc
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
339
db8b891eeb1e locale should always match the system one in a package environment
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
     1
From: Wolfgang Rosenauer <wr@rosenauer.org>
db8b891eeb1e locale should always match the system one in a package environment
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
     2
Subject: use system locale if available
db8b891eeb1e locale should always match the system one in a package environment
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
     3
This setting used to live in the branding-openSUSE package but this is causing too much
db8b891eeb1e locale should always match the system one in a package environment
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
     4
confusion and therefore is currently the only setting we switch in the unbranded
db8b891eeb1e locale should always match the system one in a package environment
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
     5
package unconditionally.
db8b891eeb1e locale should always match the system one in a package environment
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
     6
db8b891eeb1e locale should always match the system one in a package environment
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
     7
# HG changeset patch
db8b891eeb1e locale should always match the system one in a package environment
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
     8
# Parent 020571ebc3766a68f1e50780b910c51d1bb76087
db8b891eeb1e locale should always match the system one in a package environment
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
     9
diff --git a/modules/libpref/src/init/all.js b/modules/libpref/src/init/all.js
db8b891eeb1e locale should always match the system one in a package environment
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    10
--- a/modules/libpref/src/init/all.js
db8b891eeb1e locale should always match the system one in a package environment
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    11
+++ b/modules/libpref/src/init/all.js
db8b891eeb1e locale should always match the system one in a package environment
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    12
@@ -1085,17 +1085,17 @@ pref("intl.charsetmenu.browser.unicode",
db8b891eeb1e locale should always match the system one in a package environment
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    13
 pref("intl.charsetmenu.mailedit",           "chrome://global/locale/intl.properties");
db8b891eeb1e locale should always match the system one in a package environment
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    14
 pref("intl.charsetmenu.browser.cache",      "");
db8b891eeb1e locale should always match the system one in a package environment
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    15
 pref("intl.charsetmenu.mailview.cache",     "");
db8b891eeb1e locale should always match the system one in a package environment
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    16
 pref("intl.charsetmenu.composer.cache",     "");
db8b891eeb1e locale should always match the system one in a package environment
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    17
 pref("intl.charsetmenu.browser.cache.size", 5);
db8b891eeb1e locale should always match the system one in a package environment
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    18
 pref("intl.charset.detector",               "chrome://global/locale/intl.properties");
db8b891eeb1e locale should always match the system one in a package environment
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    19
 pref("intl.charset.default",                "chrome://global-platform/locale/intl.properties");
db8b891eeb1e locale should always match the system one in a package environment
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    20
 pref("intl.ellipsis",                       "chrome://global-platform/locale/intl.properties");
db8b891eeb1e locale should always match the system one in a package environment
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    21
-pref("intl.locale.matchOS",                 false);
db8b891eeb1e locale should always match the system one in a package environment
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    22
+pref("intl.locale.matchOS",                 true);
db8b891eeb1e locale should always match the system one in a package environment
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    23
 // fallback charset list for Unicode conversion (converting from Unicode)
db8b891eeb1e locale should always match the system one in a package environment
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    24
 // currently used for mail send only to handle symbol characters (e.g Euro, trademark, smartquotes)
db8b891eeb1e locale should always match the system one in a package environment
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    25
 // for ISO-8859-1
db8b891eeb1e locale should always match the system one in a package environment
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    26
 pref("intl.fallbackCharsetList.ISO-8859-1", "windows-1252");
db8b891eeb1e locale should always match the system one in a package environment
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    27
 pref("font.language.group",                 "chrome://global/locale/intl.properties");
db8b891eeb1e locale should always match the system one in a package environment
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    28
 
db8b891eeb1e locale should always match the system one in a package environment
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    29
 // these locales have right-to-left UI
db8b891eeb1e locale should always match the system one in a package environment
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    30
 pref("intl.uidirection.ar", "rtl");