From df9772e7f1a3599721afcefaabb6baba36b3bcf3 Mon Sep 17 00:00:00 2001 From: Danstiv <50794055+Danstiv@users.noreply.github.com> Date: Sun, 15 Sep 2024 04:21:50 +0700 Subject: [PATCH] Fix lng processing --- scripts/process_translations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/process_translations.py b/scripts/process_translations.py index 90b0afb..05330b1 100644 --- a/scripts/process_translations.py +++ b/scripts/process_translations.py @@ -133,7 +133,7 @@ def process_lng_files(project_path): for file in project_path.glob("*.lng"): if not file_updated(file): logger.info(f"File {file.name} is not changed") - return + continue if not LNG_FILE_REGEX.match(file.name): errors.append(f"lng file {file} have incorrect name.") continue