Added Babelfish.languages (which we should've had long ago)

This commit is contained in:
James Vega 2004-02-07 04:24:37 +00:00
parent ede140bcde
commit aa6e663768
1 changed files with 8 additions and 0 deletions

View File

@ -58,6 +58,14 @@ class Babelfish(callbacks.Privmsg):
_abbrevs['zh'] = 'chinese'
for language in babelfish.available_languages:
_abbrevs[language] = language
def languages(self, irc, msg, args):
"""takes no arguments
Returns the languages that Babelfish can translate to/from.
"""
irc.reply(utils.commaAndify(babelfish.available_languages))
def translate(self, irc, msg, args):
"""<from-language> [to] <to-language> <text>