mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 11:09:23 +01:00
Google: restore translate
This commit is contained in:
parent
451ec28163
commit
a6d1909bd6
@ -240,6 +240,44 @@ class Google(callbacks.PluginRegexp):
|
|||||||
s = ', '.join([format('%s: %i', bold(s), i) for (i, s) in results])
|
s = ', '.join([format('%s: %i', bold(s), i) for (i, s) in results])
|
||||||
irc.reply(s)
|
irc.reply(s)
|
||||||
|
|
||||||
|
@internationalizeDocstring
|
||||||
|
def translate(self, irc, msg, args, sourceLang, targetLang, text):
|
||||||
|
"""<source language> [to] <target language> <text>
|
||||||
|
|
||||||
|
Returns <text> translated from <source language> into <target
|
||||||
|
language>.
|
||||||
|
"""
|
||||||
|
|
||||||
|
channel = msg.args[0]
|
||||||
|
|
||||||
|
headers = dict(utils.web.defaultHeaders)
|
||||||
|
headers['User-Agent'] = ('Mozilla/5.0 (X11; U; Linux i686) '
|
||||||
|
'Gecko/20071127 Firefox/2.0.0.11')
|
||||||
|
|
||||||
|
sourceLang = urllib.quote(sourceLang)
|
||||||
|
targetLang = urllib.quote(targetLang)
|
||||||
|
|
||||||
|
text = urllib.quote(text)
|
||||||
|
|
||||||
|
result = utils.web.getUrlFd('http://translate.googleapis.com/translate_a/single'
|
||||||
|
'?client=gtx&dt=t&sl=%s&tl=%s&q='
|
||||||
|
'%s' % (sourceLang, targetLang, text),
|
||||||
|
headers).read().decode('utf8')
|
||||||
|
|
||||||
|
while ',,' in result:
|
||||||
|
result = result.replace(',,', ',null,')
|
||||||
|
while '[,' in result:
|
||||||
|
result = result.replace('[,', '[')
|
||||||
|
data = json.loads(result)
|
||||||
|
|
||||||
|
try:
|
||||||
|
language = data[2]
|
||||||
|
except:
|
||||||
|
language = 'unknown'
|
||||||
|
|
||||||
|
irc.reply(''.join(x[0] for x in data[0]), language)
|
||||||
|
translate = wrap(translate, ['something', 'to', 'something', 'text'])
|
||||||
|
|
||||||
def googleSnarfer(self, irc, msg, match):
|
def googleSnarfer(self, irc, msg, match):
|
||||||
r"^google\s+(.*)$"
|
r"^google\s+(.*)$"
|
||||||
if not self.registryValue('searchSnarfer', msg.args[0]):
|
if not self.registryValue('searchSnarfer', msg.args[0]):
|
||||||
|
Loading…
Reference in New Issue
Block a user