diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2012-09-21 13:39:41 +0200 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2012-09-21 13:39:41 +0200 |
commit | 88d6fabb42b368a2f2ead801fb1773cdd1c710c3 (patch) | |
tree | 01f9f1a654e2dc9d9c134139ce0c465840b1253a /data/rbot | |
parent | 983ad7a177ddb05519ff09b68d7bbf03bf9830a5 (diff) |
poll: oopsie in the gettext string for poll status
Diffstat (limited to 'data/rbot')
-rw-r--r-- | data/rbot/plugins/poll.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/rbot/plugins/poll.rb b/data/rbot/plugins/poll.rb index 814b2673..33e2b4d8 100644 --- a/data/rbot/plugins/poll.rb +++ b/data/rbot/plugins/poll.rb @@ -321,7 +321,7 @@ class PollPlugin < Plugin if poll.voters.has_key? m.sourcenick to_reply << _(" Be patient, it'll end %{end}") else - to_reply << _(" You have until %{poll.ends_at} to vote if you haven't!") + to_reply << _(" You have until %{end} to vote if you haven't!") options << " #{poll.options}" end else |