From 80b837173c4b6e9c5fc00f16d522a21b217af4d6 Mon Sep 17 00:00:00 2001 From: Nicola Benaglia Date: Sat, 7 Jun 2025 17:35:00 +0200 Subject: [PATCH] Specify chinese lang --- scripts/i18n_translate_json.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/i18n_translate_json.py b/scripts/i18n_translate_json.py index a339d84..c43ec4a 100644 --- a/scripts/i18n_translate_json.py +++ b/scripts/i18n_translate_json.py @@ -8,7 +8,7 @@ from concurrent.futures import ThreadPoolExecutor, as_completed base_folder = "./src/i18n/locales" source_lang = "en" filenames = ["auth.json", "core.json", "group.json", "question.json", "tutorial.json"] -all_target_langs = ["de", "es", "fr", "it", "ja", "ru", "zh"] +all_target_langs = ["de", "es", "fr", "it", "ja", "ru", "zh-CN"] # === SAFE TRANSLATION ===