From e6bf1a6d86508cf56fa448c88ab55b3c9607fb4e Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 29 Nov 2024 09:08:15 +0530 Subject: [PATCH] ... --- manual/custom.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/manual/custom.py b/manual/custom.py index 4b79c72234..55c5d43632 100644 --- a/manual/custom.py +++ b/manual/custom.py @@ -57,6 +57,7 @@ def ffdoc(language, m): if language in ('en', 'eng'): raise warn(f'Failed to process template language docs for in the {language} language with error: {e}') + return 'INVALID TRANSLATION' def ffsum(language, m): @@ -67,6 +68,7 @@ def ffsum(language, m): if language in ('en', 'eng'): raise warn(f'Failed to process template language summary docs for in the {language} language with error: {e}') + return 'INVALID TRANSLATION' def source_read_handler(app, docname, source):