forked from mirrors/LibreTranslate
improve translation of punctuation
This commit is contained in:
parent
d5f6276e7a
commit
9831ba88a6
1 changed files with 15 additions and 0 deletions
15
app/app.py
15
app/app.py
|
@ -475,6 +475,21 @@ def create_app(args):
|
||||||
abort(400, description="%s format is not supported" % text_format)
|
abort(400, description="%s format is not supported" % text_format)
|
||||||
|
|
||||||
def improve_translation(source, translation):
|
def improve_translation(source, translation):
|
||||||
|
source = source.strip()
|
||||||
|
|
||||||
|
source_last_char = source[len(source) - 1]
|
||||||
|
translation_last_char = translation[len(translation) - 1]
|
||||||
|
|
||||||
|
punctuation_chars = ['!', '?', '.', ',', ';']
|
||||||
|
if source_last_char in punctuation_chars:
|
||||||
|
if translation_last_char != source_last_char:
|
||||||
|
if translation_last_char in punctuation_chars:
|
||||||
|
translation = translation[:-1]
|
||||||
|
|
||||||
|
translation += source_last_char
|
||||||
|
elif translation_last_char in punctuation_chars:
|
||||||
|
translation = translation[:-1]
|
||||||
|
|
||||||
if source.islower():
|
if source.islower():
|
||||||
return translation.lower()
|
return translation.lower()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue