42 |
42 |
43 @return list of supported language codes (list of string) |
43 @return list of supported language codes (list of string) |
44 """ |
44 """ |
45 return [] |
45 return [] |
46 |
46 |
|
47 def supportedTargetLanguages(self, original): |
|
48 """ |
|
49 Public method to get a list of supported target languages for an |
|
50 original language. |
|
51 |
|
52 @param original original language |
|
53 @type str |
|
54 @return list of supported target languages for the given original |
|
55 @rtype None, if function is not supported; list of str otherwise |
|
56 """ |
|
57 return None |
|
58 |
47 def hasTTS(self): |
59 def hasTTS(self): |
48 """ |
60 """ |
49 Public method indicating the Text-to-Speech capability. |
61 Public method indicating the Text-to-Speech capability. |
50 |
62 |
51 @return flag indicating the Text-to-Speech capability (boolean) |
63 @return flag indicating the Text-to-Speech capability (boolean) |