From eec6a651aa70f124e05fb3e7b7fabb5a1b3bd6b4 Mon Sep 17 00:00:00 2001 From: Raine Virta Date: Sat, 18 Sep 2010 11:24:50 +0300 Subject: time: use "time zone" consistently in replies --- data/rbot/plugins/time.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'data/rbot') diff --git a/data/rbot/plugins/time.rb b/data/rbot/plugins/time.rb index 4a1effd7..b623d390 100644 --- a/data/rbot/plugins/time.rb +++ b/data/rbot/plugins/time.rb @@ -83,7 +83,7 @@ class TimePlugin < Plugin zone = @registry[ m.sourcenick ] m.reply "#{m.sourcenick}: #{getTime( m, zone )}" else - m.reply "#{m.sourcenick}: use time set to set your timezone." + m.reply "#{m.sourcenick}: use time set to set your time zone." end end end @@ -120,16 +120,16 @@ class TimePlugin < Plugin begin getTime( m, zone ) rescue TZInfo::InvalidTimezoneIdentifier - m.reply "#{zone} is an invalid timezone. Format is Continent/City or a two character country code." + m.reply "#{zone} is an invalid time zone. Format is Continent/City or a two character country code." return end @registry[ user ] = zone - m.reply "Ok, I'll remember that #{user} is on the #{zone} timezone" + m.reply "Ok, I'll remember that #{user} is on the #{zone} time zone" end def resetZone( m, user ) @registry.delete(user) - m.reply "Ok, I've forgotten #{user}'s timezone" + m.reply "Ok, I've forgotten #{user}'s time zone" end def parse(m, params) -- cgit v1.2.3