Fix string index out of range fault

This commit is contained in:
Piero Toffanin 2023-10-30 13:09:39 -04:00
parent a9bff7929c
commit 2972292fc5
2 changed files with 4 additions and 0 deletions

View file

@ -644,6 +644,7 @@ def create_app(args):
}
)
except Exception as e:
raise e
abort(500, description=_("Cannot translate text: %(text)s", text=str(e)))
@bp.post("/translate_file")

View file

@ -107,6 +107,9 @@ def improve_translation_formatting(source, translation, improve_punctuation=True
if source.isupper():
return translation.upper()
if len(translation) == 0:
return source
if source[0].islower():
return translation[0].lower() + translation[1:]