Skip to content

Commit

Permalink
chore: loop in alphabetical order
Browse files Browse the repository at this point in the history
  • Loading branch information
pfeerick committed May 11, 2023
1 parent c156872 commit 8566ccd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/charset.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def is_special_char(c):

def get_special_chars():
result = {}
for lang in["en", "fr", "da", "de", "cz", "nl", "es", "fi", "it", "pl", "pt", "se", "cn", "tw", "jp", "he"]:
for lang in["cn", "cz", "da", "de", "en", "es", "fi", "fr", "he", "it", "jp", "nl", "pl", "pt", "se", "tw"]:
charset = set()
tools_path = os.path.dirname(os.path.realpath(__file__))
with open(os.path.join(tools_path, "../radio/src/translations/%s.h" % lang), encoding='utf-8') as f:
Expand Down

0 comments on commit 8566ccd

Please sign in to comment.