From fa63a15c540b5d62f02791fad76a7679752f3cb1 Mon Sep 17 00:00:00 2001 From: Yurii Motov Date: Wed, 18 Mar 2026 22:30:13 +0100 Subject: [PATCH] Don't fail when translation doesn't pass check by translation fixer --- scripts/translate.py | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/translate.py b/scripts/translate.py index ddcfa311d6..1bfa92f887 100644 --- a/scripts/translate.py +++ b/scripts/translate.py @@ -142,7 +142,6 @@ def translate_page( continue # Retry if not reached max attempts else: # Max retry attempts reached print(f"Translation failed for {out_path} after {MAX_ATTEMPTS} attempts") - raise typer.Exit(code=1) print(f"Saving translation to {out_path}") out_path.write_text(out_content, encoding="utf-8", newline="\n")