diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-10-31 19:15:04 +0000 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-10-31 19:15:04 +0000 |
commit | 3a085ac7a0a3be24fe097e7284970fc7c48f57f0 (patch) | |
tree | d141b9386441b87ce2f758619fc7245cfd4ed31f /data | |
parent | fb9e43097cf0fb0de48bee654663970d2d5ef01c (diff) |
azgame: another missing parenthesis
Diffstat (limited to 'data')
-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 77521450..f84fa159 100644 --- a/data/rbot/plugins/games/azgame.rb +++ b/data/rbot/plugins/games/azgame.rb @@ -243,7 +243,7 @@ class AzGamePlugin < Plugin :invalid_tries => n_("%{count} invalid try", "%{count} invalid tries", tr) %
{:count => f_tr} }
else
- tr_msg = _(" (after %{total_tries}") %
+ tr_msg = _(" (after %{total_tries})") %
{ :total_tries => n_("%{count} try", "%{count} tries", tr) %
{:count => tr}}
end
|