diff options
author | Robby <robby@chatbelgie.be> | 2015-09-18 04:53:49 +0200 |
---|---|---|
committer | Robby <robby@chatbelgie.be> | 2015-09-18 04:53:49 +0200 |
commit | 9810da9829e03aa7501b2afe183ff25da83679e8 (patch) | |
tree | 8d6a972c6f611e76dea5e41edd644489a641ce03 /modules/commands/bs_bot.cpp | |
parent | 5692abb316647e4780e91c82bfe09007efd50243 (diff) |
Fix some sentences to be more correct.
Diffstat (limited to 'modules/commands/bs_bot.cpp')
-rw-r--r-- | modules/commands/bs_bot.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/commands/bs_bot.cpp b/modules/commands/bs_bot.cpp index 6a4f0344a..fc5f84863 100644 --- a/modules/commands/bs_bot.cpp +++ b/modules/commands/bs_bot.cpp @@ -78,7 +78,7 @@ class CommandBSBot : public Command User *u = User::Find(nick, true); if (u) { - source.Reply(_("User \2%s\2 is already in use."), u->nick.c_str()); + source.Reply(_("Nick \2%s\2 is currently in use."), u->nick.c_str()); return; } @@ -178,7 +178,7 @@ class CommandBSBot : public Command if (User::Find(nick, true)) { - source.Reply(_("User \2%s\2 is already in use."), nick.c_str()); + source.Reply(_("Nick \2%s\2 is currently in use."), nick.c_str()); return; } } |