Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v119 #1757

Merged
merged 15 commits into from Nov 20, 2023
Prev Previous commit
Next Next commit
make use_us_english inactive
This pref (in FF118 or lower) was applied regardless of 'intl.accept_languages', but only makes sense when it is "en-US, en" (which we used to set)

But we removed 'intl.accept_language' in this release because there is no longer any RFP formatting protection, so we should no longer decide what language users prefer. Removed so users are not constantly reset on prefsCleaner, which could differ from what the user has/wants and be super annoying

If 'use_us_english' were left active for ESR users who insist on using the live version, this would therefore have their language formatting set to en-US regardless of what they request - which would be annoying/confusing if they weren't requesting english

and herein ends my story - make it inactive
  • Loading branch information
Thorin-Oakenpants committed Nov 20, 2023
commit 61ed383e71d0f853ae0f7f2b72526cb1d34f56d8
2 changes: 1 addition & 1 deletion user.js
Expand Up @@ -1206,7 +1206,7 @@ user_pref("security.family_safety.mode", 0);
// [SETUP-WEB] May break some input methods e.g xim/ibus for CJK languages [1]
// [1] https://bugzilla.mozilla.org/buglist.cgi?bug_id=867501,1629630
// [-] https://bugzilla.mozilla.org/1846224
user_pref("javascript.use_us_english_locale", true); // [HIDDEN PREF]
// user_pref("javascript.use_us_english_locale", true); // [HIDDEN PREF]
// 0711: disable skipping DoH when parental controls are enabled [FF70+]
// [-] https://bugzilla.mozilla.org/1586941
user_pref("network.dns.skipTRR-when-parental-control-enabled", false);
Expand Down