mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-01-07 23:37:58 +08:00
7 lines
191 B
Python
7 lines
191 B
Python
|
from deep_translator.base import BaseTranslator
|
||
|
|
||
|
__engines__ = {
|
||
|
translator.__name__.replace("Translator", "").lower(): translator
|
||
|
for translator in BaseTranslator.__subclasses__()
|
||
|
}
|