Skip to content

Instantly share code, notes, and snippets.

@moguno
Created January 19, 2016 15:42
Show Gist options
  • Save moguno/b3e986a2d95a21436133 to your computer and use it in GitHub Desktop.
Save moguno/b3e986a2d95a21436133 to your computer and use it in GitHub Desktop.
mikutterでTLをGoogle翻訳するやつ。
#coding: utf-8
Plugin.create(:"translate_query_to_google") {
require "cgi"
command(:translate_query_to_google,
name: _('グーグルで翻訳'),
condition: Plugin::Command[:HasOneMessage],
visible: true,
role: :timeline) { |opt|
Gtk::openurl("https://translate.google.co.jp/#auto/ja/#{CGI::escape(opt.messages.first.message.to_s)}")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment