1
0
Fork 0
mirror of https://github.com/EdgeTX/edgetx.git synced 2025-07-15 04:15:24 +03:00

feat: Hebrew radio translation 🇮🇱 (#3506)

* Hebrew radio translation 🇮🇱

* chore: loop in alphabetical order

* Replace Arial with Arimo

* Add "he" to companion settings
This commit is contained in:
Stav Raviv 2023-05-13 20:36:53 -07:00 committed by GitHub
parent bd14c83b6a
commit dd64aaef2e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
21 changed files with 58669 additions and 4 deletions

View file

@ -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"]:
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: