Skip to content

Commit

Permalink
fix:[Vanilla-OS#329] Don't translate languages
Browse files Browse the repository at this point in the history
  • Loading branch information
jardon committed Sep 30, 2024
1 parent 0c215fb commit 4a6b865
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vanilla_first_setup/core/languages.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@
all_languages = {}

for _locale in all_locale:
all_languages[_locale] = GnomeDesktop.get_language_from_locale(_locale, None)
all_languages[_locale] = GnomeDesktop.get_language_from_locale(_locale, _locale)

all_languages = dict(sorted(all_languages.items(), key=lambda item: item[1]))
current_language = "{}.{}".format(
Expand Down

0 comments on commit 4a6b865

Please sign in to comment.