diff options
author | Raine Virta <rane@kapsi.fi> | 2010-09-12 17:15:43 +0300 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2010-09-23 14:57:29 +0200 |
commit | edd4f0e4f2cc93d8b02047384aa61f2f830b897a (patch) | |
tree | 3d77d22b765fecfd25f6ded7b54212baef339055 /data/rbot | |
parent | 6e385bbdb052e260f3e4a6bd60b57dac394378c2 (diff) |
time: update help
Diffstat (limited to 'data/rbot')
-rw-r--r-- | data/rbot/plugins/time.rb | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/data/rbot/plugins/time.rb b/data/rbot/plugins/time.rb index c89cf195..4a1effd7 100644 --- a/data/rbot/plugins/time.rb +++ b/data/rbot/plugins/time.rb @@ -4,15 +4,24 @@ # :title: Time Zone Plugin for rbot # # Author:: Ian Monroe <ian@monroe.nu> +# Author:: Raine Virta <raine.virta@gmail.com> # Copyright:: (C) 2006 Ian Monroe +# Copyright:: (C) 2010 Raine Virta # License:: MIT license require 'tzinfo' class TimePlugin < Plugin - def help(plugin, topic="") - "time <time zone> to get the local time of a certain location. <time zone> can be <Continent/City> or <two character country code>. time <nick> to see the local time of that person if their time zone is set. time admin set <nick> <time zone> to set the time zone for another user. time [admin] reset [nick] to let the bot forget about the tzinfo about someone" + case topic + when "set" + _("usage: time set <Continent>/<City> -- setting your location allows the bot to calibrate time replies into your time zone, and other people to figure out what time it is for you") + else + _("usage: time <timestamp|time zone|nick> -- %{b}timestamp%{b}: get info about a specific time, relative to your own time zone | %{b}time zone%{b}: get local time of a certain location, <time zone> can be '<Continent>/<City>' or a two character country code | %{b}nick%{b}: get local time of another person, given they have set their location | see `%{prefix}help time set` on how to set your location") % { + :b => Bold, + :prefix => @bot.config['core.address_prefix'].first + } + end end def initialize |