Pier Angelo Vendrame pushed to branch base-browser-115.9.1esr-13.0-1 at The Tor 
Project / Applications / Tor Browser


Commits:
bbff47d9 by Pier Angelo Vendrame at 2024-04-08T17:41:07+02:00
fixup! Bug 41369: Improve Firefox language settings for multi-lingual packages

Bug 42335: Do not localize the order of languages

- - - - -


1 changed file:

- browser/components/preferences/main.js


Changes:

=====================================
browser/components/preferences/main.js
=====================================
@@ -1463,7 +1463,9 @@ var gMainPane = {
         name,
       };
     });
-    locales.sort((a, b) => a.code.localeCompare(b.code));
+    // tor-browser#42335: Sort language codes independently from the locale,
+    // so do not use localeCompare.
+    locales.sort((a, b) => a.code > b.code);
 
     let fragment = document.createDocumentFragment();
     for (let { code, name } of locales) {



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/bbff47d9a1003c7075ff490dd05e7dca390cd6b6

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/bbff47d9a1003c7075ff490dd05e7dca390cd6b6
You're receiving this email because of your account on gitlab.torproject.org.


_______________________________________________
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits

Reply via email to