We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2381318 commit 89c716fCopy full SHA for 89c716f
src/translator.py
@@ -79,7 +79,7 @@ def translate_content(post: str) -> tuple[bool, str]:
79
return True, post
80
81
translation = get_translation(post).strip()
82
- if not translation or len(translation.split()) < 2:
+ if not translation or len(translation.split()) < 2 or "understand" in translation.lower():
83
raise ValueError("Empty or malformed translation")
84
85
return False, translation
0 commit comments