diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-08-23 12:37:26 +0000 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-08-23 12:37:26 +0000 |
commit | dd70deb0d58761d4aa2c6f508105bdb867510a6a (patch) | |
tree | 03da10c636e0bb1674675021dacaba795b6571ed | |
parent | d2cd565d48bc38cba05fa311b8e57d7c93499d50 (diff) |
auth core module: misplaced ) prevented gettext replacement
-rw-r--r-- | lib/rbot/core/auth.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rbot/core/auth.rb b/lib/rbot/core/auth.rb index 82fd1aa4..cb54c057 100644 --- a/lib/rbot/core/auth.rb +++ b/lib/rbot/core/auth.rb @@ -352,8 +352,8 @@ class AuthModule < CoreBotModule return m.reply(_("you can't ask for someone else's password"))
end
return m.reply(_("c'mon, you can't be asking me seriously to tell you the password in public!")) if m.public?
- return m.reply(_("the password for %{user} is %{password}")) %
- { :user => butarget.username, :password => butarget.password }
+ return m.reply(_("the password for %{user} is %{password}") %
+ { :user => butarget.username, :password => butarget.password })
else
props = splits[1..-1]
end
|