24 class DeepLEngine(TranslationEngine): |
24 class DeepLEngine(TranslationEngine): |
25 """ |
25 """ |
26 Class implementing the translation engine for the DeepL |
26 Class implementing the translation engine for the DeepL |
27 translation service. |
27 translation service. |
28 """ |
28 """ |
29 TranslatorUrl = "https://deepl.com/jsonrpc" |
29 TranslatorUrl = "https://www.deepl.com/jsonrpc" |
30 MaxTranslationTextLen = 5000 |
30 MaxTranslationTextLen = 5000 |
31 |
31 |
32 def __init__(self, plugin, parent=None): |
32 def __init__(self, plugin, parent=None): |
33 """ |
33 """ |
34 Constructor |
34 Constructor |