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/ns_identify.cpp | |
parent | 5692abb316647e4780e91c82bfe09007efd50243 (diff) |
Fix some sentences to be more correct.
Diffstat (limited to 'modules/commands/ns_identify.cpp')
-rw-r--r-- | modules/commands/ns_identify.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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<unsigned int>("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; } |