mozilla-preferences.patch
author Wolfgang Rosenauer <wr@rosenauer.org>
Mon, 17 Apr 2017 09:40:14 +0200
changeset 959 453d34bf1834
parent 881 1268ddc9dc16
permissions -rw-r--r--
53.0b10
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
748
72ba5129e5fd full rebase to Aurora 32
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 718
diff changeset
     8
# Parent 8c1bfc96b05ef1836aad6e9f2af323f63ed1b69c
881
1268ddc9dc16 rebased patches
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 869
diff changeset
     9
# Parent  35b625807600ea4a5a3c49bd1cab22fac5188406
703
c4aab80e472f Firefox 28.0beta1
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 339
diff changeset
    10
779
354c672efefa rebased patches
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 748
diff changeset
    11
diff --git a/modules/libpref/init/all.js b/modules/libpref/init/all.js
354c672efefa rebased patches
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 748
diff changeset
    12
--- a/modules/libpref/init/all.js
354c672efefa rebased patches
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 748
diff changeset
    13
+++ b/modules/libpref/init/all.js
881
1268ddc9dc16 rebased patches
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 869
diff changeset
    14
@@ -1790,17 +1790,17 @@ pref("converter.html2txt.always_include_
748
72ba5129e5fd full rebase to Aurora 32
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 718
diff changeset
    15
 
72ba5129e5fd full rebase to Aurora 32
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 718
diff changeset
    16
 pref("intl.accept_languages",               "chrome://global/locale/intl.properties");
72ba5129e5fd full rebase to Aurora 32
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 718
diff changeset
    17
 pref("intl.menuitems.alwaysappendaccesskeys","chrome://global/locale/intl.properties");
72ba5129e5fd full rebase to Aurora 32
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 718
diff changeset
    18
 pref("intl.menuitems.insertseparatorbeforeaccesskeys","chrome://global/locale/intl.properties");
339
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",      "");
718
6cb1ac7cd223 prepare Aurora 30
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 703
diff changeset
    21
 pref("intl.charset.fallback.tld",           true);
339
db8b891eeb1e locale should always match the system one in a package environment
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    22
 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
    23
-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
    24
+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
    25
 // 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
    26
 // 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
    27
 // for ISO-8859-1
db8b891eeb1e locale should always match the system one in a package environment
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    28
 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
    29
 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
    30
 
881
1268ddc9dc16 rebased patches
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 869
diff changeset
    31
 // Android-specific pref to use key-events-only mode for IME-unaware webapps.
1268ddc9dc16 rebased patches
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 869
diff changeset
    32
 #ifdef MOZ_WIDGET_ANDROID