mirror of
https://github.com/LibreTranslate/LibreTranslate.git
synced 2024-11-21 23:41:01 +00:00
Minor refactor
This commit is contained in:
parent
37bd2365b9
commit
8427f86275
1 changed files with 1 additions and 1 deletions
|
@ -578,7 +578,7 @@ def create_app(args):
|
|||
try:
|
||||
if batch:
|
||||
results = []
|
||||
for _idx, text in enumerate(q):
|
||||
for text in q:
|
||||
translator = src_lang.get_translation(tgt_lang)
|
||||
if translator is None:
|
||||
abort(400, description=_("%(tname)s (%(tcode)s) is not available as a target language from %(sname)s (%(scode)s)", tname=_lazy(tgt_lang.name), tcode=tgt_lang.code, sname=_lazy(src_lang.name), scode=src_lang.code))
|
||||
|
|
Loading…
Reference in a new issue