mirror of
https://github.com/lllyasviel/Fooocus.git
synced 2026-08-16 13:13:16 +02:00
fix: only import translator when needed
This commit is contained in:
@@ -1,15 +1,16 @@
|
||||
import translators
|
||||
from functools import lru_cache
|
||||
|
||||
|
||||
@lru_cache(maxsize=32, typed=False)
|
||||
def translate2en(text, element):
|
||||
if not text:
|
||||
return text
|
||||
|
||||
try:
|
||||
result = translators.translate_text(text,to_language='en')
|
||||
result = translators.translate_text(text, to_language='en')
|
||||
print(f'[Parameters] Translated {element}: {result}')
|
||||
return result
|
||||
except Exception as e:
|
||||
print(f'[Parameters] Error during translation of {element}: {e}')
|
||||
return text
|
||||
return text
|
||||
|
||||
Reference in New Issue
Block a user