diff options
-rw-r--r-- | data/rbot/plugins/dictclient.rb | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/data/rbot/plugins/dictclient.rb b/data/rbot/plugins/dictclient.rb index 2fcdf05a..48bb7ed3 100644 --- a/data/rbot/plugins/dictclient.rb +++ b/data/rbot/plugins/dictclient.rb @@ -181,7 +181,16 @@ class DictClientPlugin < Plugin end def help(plugin, topic='') - _("define <phrase> [from <database>] => Show definition of a phrase; match <phrase> [using <strategy>] [from <database>] => Show matching phrases; dictclient databases => List databases; dictclient strategies => List strategies") + case topic + when 'define' + _('define <phrase> [from <database>] => Show definition of a phrase') + when 'match' + _('match <phrase> [using <strategy>] [from <database>] => Show phrases matching the given pattern') + when 'server information' + _('dictclient databases => List databases; dictclient strategies => List strategies') + else + _('look up phrases on the configured DICT server. topics: define, match, server information') + end end end |