diff options
Diffstat (limited to 'lib/rbot/ircbot.rb')
-rw-r--r-- | lib/rbot/ircbot.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/rbot/ircbot.rb b/lib/rbot/ircbot.rb index 7a021fb5..6279cfe2 100644 --- a/lib/rbot/ircbot.rb +++ b/lib/rbot/ircbot.rb @@ -1241,7 +1241,9 @@ class Bot # totally shutdown and respawn the bot def restart(message=nil) - message = "restarting, back in #{@config['server.reconnect_wait']}..." if (!message || message.empty?) + message = _("restarting, back in %{wait}...") % { + :wait => @config['server.reconnect_wait'] + } if (!message || message.empty?) shutdown(message) sleep @config['server.reconnect_wait'] begin |