diff options
author | Yaohan Chen <yaohan.chen@gmail.com> | 2007-11-05 15:32:13 +0000 |
---|---|---|
committer | Yaohan Chen <yaohan.chen@gmail.com> | 2007-11-05 15:32:13 +0000 |
commit | 0ddcd43400c61d1dcdc07f1c5f6ec1a51714a3f1 (patch) | |
tree | fb08b4ca6e478bac32d24014955a4628aa890864 /data | |
parent | 806e6c9a6b5c58997bacf7981ee3c797878b2e48 (diff) |
translator.rb: display translation provider when it's chosen automatically
Diffstat (limited to 'data')
-rw-r--r-- | data/rbot/plugins/translator.rb | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/data/rbot/plugins/translator.rb b/data/rbot/plugins/translator.rb index 6a842754..2150fcb2 100644 --- a/data/rbot/plugins/translator.rb +++ b/data/rbot/plugins/translator.rb @@ -8,6 +8,11 @@ # License:: GPLv2 # # This plugin allows using rbot to translate text on a few translation services +# +# TODO +# +# * Configuration for whether to show translation engine +# * Optionally sync default translators with karma.rb ranking require 'set' require 'timeout' @@ -311,7 +316,7 @@ class TranslatorPlugin < Plugin from, to = params[:from], params[:to] translator = @default_translators.find {|t| @translators[t].support?(from, to)} if translator - cmd_translate m, params.merge({:translator => translator}) + cmd_translate m, params.merge({:translator => translator, :show_provider => true}) else m.reply _('None of the default translators (translator.default_list) supports translating from %{source} to %{target}') % {:source => from, :target => to} end @@ -327,7 +332,13 @@ class TranslatorPlugin < Plugin translation = Timeout.timeout(@bot.config['translator.timeout']) do translator.translate(phrase, from, to) end - m.reply translation + m.reply(if params[:show_provider] + _('%{translation} (provided by %{translator})') % + {:translation => translation, :translator => tname} + else + translation + end) + rescue Translator::UnsupportedDirectionError m.reply _("%{translator} doesn't support translating from %{source} to %{target}") % {:translator => tname, :source => from, :target => to} @@ -345,4 +356,4 @@ end plugin = TranslatorPlugin.new plugin.map 'translator :from :to *phrase', - :action => :cmd_translator, :thread => true + :action => :cmd_translator, :thread => true |