fix: a little typo in normalize_lang_files.py

res/lang/normalize_lang_files.py:18: occurence ==> occurrence
This commit is contained in:
rezky_nightky 2025-12-02 01:34:09 +07:00 committed by GitHub
parent d82fa82a87
commit 3ebef7fe8d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ def process_lang_file(path: Path, lang_keys: list[str]) -> None:
except ValueError: # line does not contain '='
continue
# re-write current lang file with entries in order of occurence in `lang_keys`
# re-write current lang file with entries in order of occurrence in `lang_keys`
# and with empty lines for missing translations
with open(path, "w", encoding="UTF-8") as fh:
for item in lang_keys: