mozilla-preferences.patch
author Wolfgang Rosenauer <wr@rosenauer.org>
Mon, 14 Apr 2014 09:09:11 +0200
changeset 716 cef565f1c325
parent 703 c4aab80e472f
child 718 6cb1ac7cd223
permissions -rw-r--r--
update to Firefox 29.0b7
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
703
c4aab80e472f Firefox 28.0beta1
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 339
diff changeset
     8
# Parent bf7f0353aa8e00b1deaa05b7cb84bb7ea4c9ce8f
c4aab80e472f Firefox 28.0beta1
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 339
diff changeset
     9
339
db8b891eeb1e locale should always match the system one in a package environment
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    10
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
    11
--- 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
    12
+++ b/modules/libpref/src/init/all.js
703
c4aab80e472f Firefox 28.0beta1
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 339
diff changeset
    13
@@ -1554,17 +1554,17 @@ pref("intl.charsetmenu.browser.more5",  
339
db8b891eeb1e locale should always match the system one in a package environment
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    14
 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
    15
 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
    16
 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
    17
 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
    18
 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
    19
 pref("intl.charset.detector",               "chrome://global/locale/intl.properties");
703
c4aab80e472f Firefox 28.0beta1
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 339
diff changeset
    20
 pref("intl.charset.fallback.override",      "");
339
db8b891eeb1e locale should always match the system one in a package environment
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    21
 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
    22
-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
    23
+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
    24
 // 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
    25
 // 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
    26
 // for ISO-8859-1
db8b891eeb1e locale should always match the system one in a package environment
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    27
 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
    28
 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
    29
 
db8b891eeb1e locale should always match the system one in a package environment
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    30
 // 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
    31
 pref("intl.uidirection.ar", "rtl");