--- a/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/TranslationEngine.py Sat Jul 07 12:58:50 2018 +0200 +++ b/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/TranslationEngine.py Sat Jul 07 14:38:13 2018 +0200 @@ -44,6 +44,18 @@ """ return [] + def supportedTargetLanguages(self, original): + """ + Public method to get a list of supported target languages for an + original language. + + @param original original language + @type str + @return list of supported target languages for the given original + @rtype None, if function is not supported; list of str otherwise + """ + return None + def hasTTS(self): """ Public method indicating the Text-to-Speech capability.