From 3ebef7fe8d00fbf0488d7e3cb46a224643b877ed Mon Sep 17 00:00:00 2001 From: rezky_nightky <130107241+oxyzenQ@users.noreply.github.com> Date: Tue, 2 Dec 2025 01:34:09 +0700 Subject: [PATCH] fix: a little typo in normalize_lang_files.py res/lang/normalize_lang_files.py:18: occurence ==> occurrence --- res/lang/normalize_lang_files.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/res/lang/normalize_lang_files.py b/res/lang/normalize_lang_files.py index 3904737..2d084db 100755 --- a/res/lang/normalize_lang_files.py +++ b/res/lang/normalize_lang_files.py @@ -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: