17 lines
702 B
PHP
Raw Normal View History

2015-05-30 00:20:55 +08:00
<?php
2015-06-30 15:05:22 +08:00
PluginSet("translate");
$matches = explode(" ", $plugin_text, 2);
2015-05-30 00:20:55 +08:00
if (!isset($matches[1])) {
2015-06-04 17:25:51 +08:00
$to = "en";
$text = urlencode($matches[0]);
}elseif (isset($matches[1]) and strlen($matches[0]) != 2) {
$to = "en";
$text = urlencode($matches[0].$matches[1]);
2015-05-30 00:20:55 +08:00
}else{
$to = $matches[0];
2015-06-04 17:25:51 +08:00
$text = urlencode($matches[1]);
2015-05-30 00:20:55 +08:00
}
2015-06-26 13:19:40 +08:00
$trans = file_get_contents('http://api.microsofttranslator.com/v2/ajax.svc/TranslateArray2?appId=%22TWQET6TO9c7Iw1yXOahFm8zfEzty5DUHuaTHkl5SCrHUPgu3ABP7aflbz8teet6IS%22&to="'.$to.'"&options={}&texts=["'.$text.'"]');
preg_match("/\[{.*?\}]/is", $trans, $trans_json);
$msg = "Result: ".json_decode($trans_json[0],true)[0]["TranslatedText"];
2015-06-30 15:05:22 +08:00
$BOT->msg($from, $msg);