www.fgks.org   »   [go: up one dir, main page]

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>2023-02-13 20:06:45 -0500
committerMark H Weaver <mhw@netris.org>2023-02-14 15:30:59 -0500
commitf9cb9795f7ed0e983166a28a353022a5e3ca88b3 (patch)
tree5facc7431f0120c7b52bf1f99d59fa2574aee52f
parent725be23ef0e1b484f9ae19c9c9cac1835c138a1b (diff)
downloadgnuzilla-f9cb9795f7ed0e983166a28a353022a5e3ca88b3.tar.gz
settings: Set intl.locale.requested to the empty string.
This causes IceCat to honor the locale used by the system. * data/settings.js: Replace the obsolete "intl.locale.matchOS" option with "intl.locale.requested", set to the empty string. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Signed-off-by: Mark H Weaver <mhw@netris.org>
-rw-r--r--data/settings.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/data/settings.js b/data/settings.js
index 0fe5956..1c13b80 100644
--- a/data/settings.js
+++ b/data/settings.js
@@ -30,8 +30,10 @@ pref("privacy.firstparty.isolate", true);
// Extensions cannot be updated without permission
pref("extensions.update.enabled", false);
-// Use LANG environment variable to choose locale
-pref("intl.locale.matchOS", true);
+
+// Set the default locale to that of the operating system.
+pref("intl.locale.requested", "");
+
// Allow unsigned langpacks
pref("extensions.langpacks.signatures.required", false);
// Disable default browser checking.