From 9810da9829e03aa7501b2afe183ff25da83679e8 Mon Sep 17 00:00:00 2001 From: Robby Date: Fri, 18 Sep 2015 04:53:49 +0200 Subject: [PATCH] Fix some sentences to be more correct. --- modules/commands/bs_bot.cpp | 4 ++-- modules/commands/ns_identify.cpp | 2 +- 2 files changed, 3 insertions(+), 3 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; } } diff --git a/modules/commands/ns_identify.cpp b/modules/commands/ns_identify.cpp index 4aa361a0a..c2b8d1479 100644 --- a/modules/commands/ns_identify.cpp +++ b/modules/commands/ns_identify.cpp @@ -91,7 +91,7 @@ class CommandNSIdentify : public Command unsigned int maxlogins = Config->GetModule(this->owner)->Get("maxlogins"); if (na && maxlogins && na->nc->users.size() >= maxlogins) { - source.Reply(_("Account \2%s\2 has exceeeded the maximum number of simultaneous logins (%u)."), na->nc->display.c_str(), maxlogins); + source.Reply(_("Account \2%s\2 has already reached the maximum number of simultaneous logins (%u)."), na->nc->display.c_str(), maxlogins); return; }