From 842ab2d952143d0e275e25a96648b8ad950d782e Mon Sep 17 00:00:00 2001 From: Yurii Motov Date: Wed, 17 Dec 2025 11:16:44 +0100 Subject: [PATCH] Skip languages that are not ready yet in `scripts/docs.py update-languages` --- scripts/docs.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/docs.py b/scripts/docs.py index 75583a1cb..e27b89c31 100644 --- a/scripts/docs.py +++ b/scripts/docs.py @@ -340,6 +340,9 @@ def get_updated_config_content() -> Dict[str, Any]: for lang_path in get_lang_paths(): if lang_path.name in {"en", "em"} or not lang_path.is_dir(): continue + if lang_path.name not in ("de", "es", "pt", "ru"): + # Skip languages that are not yet ready + continue code = lang_path.name languages.append({code: f"/{code}/"}) for lang_dict in languages: