This commit is contained in:
Kovid Goyal 2024-11-29 09:08:15 +05:30
parent 262cc42c5a
commit e6bf1a6d86
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -57,6 +57,7 @@ def ffdoc(language, m):
if language in ('en', 'eng'): if language in ('en', 'eng'):
raise raise
warn(f'Failed to process template language docs for in the {language} language with error: {e}') warn(f'Failed to process template language docs for in the {language} language with error: {e}')
return 'INVALID TRANSLATION'
def ffsum(language, m): def ffsum(language, m):
@ -67,6 +68,7 @@ def ffsum(language, m):
if language in ('en', 'eng'): if language in ('en', 'eng'):
raise raise
warn(f'Failed to process template language summary docs for in the {language} language with error: {e}') 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): def source_read_handler(app, docname, source):