-
Notifications
You must be signed in to change notification settings - Fork 29.4k
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
Fix locale and language-dependent code in the product #169114
Comments
Ironically, many parts of the program want to use the application language instead of the system locale. |
app.getPreferredSystemLanguages()
again
|
The language pack recommender, especially on Windows, relies on the
app.getPreferredSystemLanguages()
API in order to properly recommend language packs.The usage of that API has been temporarily reverted to fix the regression #166936. The revert should also incidentally fix #168583 and #167871.
This issue looks into using that API again and the processing needed on the output to ensure that the results do not break any areas outside of the language recommender.
TODO
platform.locale
actually require the system locale, and which ones merely require thelanguage
variable.language
variable is actually set.platform.locale
is set either throughapp.getLocale()
orapp.getPreferredSystemLanguages()[0]
.The text was updated successfully, but these errors were encountered: