This repository has been archived on 2021-04-24. You can view files and clone it, but cannot push or open issues or pull requests.
Mikubot-2/plugins/translate.lua

41 lines
865 B
Lua
Raw Normal View History

local doc = [[
/translate [text]
Translates input or the replied-to message into the bot's language.
2015-07-21 01:29:40 +02:00
]]
local triggers = {
'^/translate[@'..bot.username..']*'
}
2015-07-21 01:29:40 +02:00
local action = function(msg)
2015-07-21 01:29:40 +02:00
local input = msg.text:input()
if not input then
if msg.reply_to_message and msg.reply_to_message.text then
input = msg.reply_to_message.text
else
sendReply(msg, doc)
return
end
2015-07-21 01:29:40 +02:00
end
local url = 'https://translate.google.com/translate_a/single?client=t&ie=UTF-8&oe=UTF-8&hl=en&dt=t&sl=auto&tl=' .. config.lang .. '&text=' .. URL.escape(input)
2015-07-21 01:29:40 +02:00
local str, res = HTTPS.request(url)
2015-07-21 01:29:40 +02:00
if res ~= 200 then
sendReply(msg, config.errors.connection)
return
2015-07-21 01:29:40 +02:00
end
local output = latcyr(str:gmatch("%[%[%[\"(.*)\"")():gsub("\"(.*)", ""))
2015-07-21 01:29:40 +02:00
sendReply(msg.reply_to_message or msg, output)
2015-07-21 01:29:40 +02:00
end
return {
action = action,
triggers = triggers,
doc = doc
}