20 class PromtEngine(TranslationEngine): |
20 class PromtEngine(TranslationEngine): |
21 """ |
21 """ |
22 Class implementing the translation engine for the Promt |
22 Class implementing the translation engine for the Promt |
23 translation service. |
23 translation service. |
24 """ |
24 """ |
25 TranslatorUrl = \ |
25 TranslatorUrl = ( |
26 "http://www.online-translator.com/services/"\ |
26 "http://www.online-translator.com/services/" |
27 "TranslationService.asmx/GetTranslation" |
27 "TranslationService.asmx/GetTranslation" |
|
28 ) |
28 |
29 |
29 def __init__(self, plugin, parent=None): |
30 def __init__(self, plugin, parent=None): |
30 """ |
31 """ |
31 Constructor |
32 Constructor |
32 |
33 |