diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-10-21 23:25:55 +0000 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-10-21 23:25:55 +0000 |
commit | 38fe66ef163b584656f5728d3db3a2e3ea9fd59d (patch) | |
tree | 78609657825033292470879e18cd36ce0434a1db /data/rbot | |
parent | f770e0f1a7a340adf5dbc7c44e6593e7debf0522 (diff) |
azgame: missing closing parenthesis in message
Diffstat (limited to 'data/rbot')
-rw-r--r-- | data/rbot/plugins/games/azgame.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/rbot/plugins/games/azgame.rb b/data/rbot/plugins/games/azgame.rb index f5e677e9..7a4aa256 100644 --- a/data/rbot/plugins/games/azgame.rb +++ b/data/rbot/plugins/games/azgame.rb @@ -232,7 +232,7 @@ class AzGamePlugin < Plugin else
f_tr = @games[k].total_failed
if f_tr > 0
- tr_msg = _(" (after %{total_tries} and %{invalid_tries}") %
+ tr_msg = _(" (after %{total_tries} and %{invalid_tries})") %
{ :total_tries => n_("%{count} try", "%{count} tries", tr) %
{:count => tr},
:invalid_tries => n_("%{count} invalid try", "%{count} invalid tries", tr) %
|