diff options
author | Yaohan Chen <yaohan.chen@gmail.com> | 2007-11-14 09:16:08 +0000 |
---|---|---|
committer | Yaohan Chen <yaohan.chen@gmail.com> | 2007-11-14 09:16:08 +0000 |
commit | e4f4b9bcf98b930af915352a695b04585800f89d (patch) | |
tree | 21bd4b3dbfdf9fac1c2a9989b890277786937adc /data | |
parent | 7c5c0101174090565bc079863fe3980e9f7752ee (diff) |
translator.rb: use "help <translator>" instead of "help translator <translator>" to show
translator information
Diffstat (limited to 'data')
-rw-r--r-- | data/rbot/plugins/translator.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/data/rbot/plugins/translator.rb b/data/rbot/plugins/translator.rb index 2150fcb2..2bda65cf 100644 --- a/data/rbot/plugins/translator.rb +++ b/data/rbot/plugins/translator.rb @@ -293,8 +293,8 @@ class TranslatorPlugin < Plugin end def help(plugin, topic=nil) - if @translators.has_key?(topic) - translator = @translators[topic] + if @translators.has_key?(plugin) + translator = @translators[plugin] _('%{info}, supported directions of translation: %{directions}') % { :info => translator.class::INFO, :directions => translator.directions.map do |source, targets| @@ -303,7 +303,7 @@ class TranslatorPlugin < Plugin end.join(' | ') } else - _('Command: <translator> <from> <to> <phrase>, where <translator> is one of: %{translators}. If "translator" is used in place of the translator name, the first translator in translator.default_list which supports the specified direction will be picked automatically. Use "help translator <translator>" to look up supported from and to languages') % + _('Command: <translator> <from> <to> <phrase>, where <translator> is one of: %{translators}. If "translator" is used in place of the translator name, the first translator in translator.default_list which supports the specified direction will be picked automatically. Use "help <translator>" to look up supported from and to languages') % {:translators => @translators.keys.join(', ')} end end |