1
0
mirror of https://github.com/anope/anope.git synced 2026-07-06 01:33:14 +02:00

Bold code 2 -> 002.

This commit is contained in:
Robby
2015-09-18 05:25:20 +02:00
parent 9810da9829
commit 96d7797134
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -78,7 +78,7 @@ class CommandBSBot : public Command
User *u = User::Find(nick, true);
if (u)
{
source.Reply(_("Nick \2%s\2 is currently in use."), u->nick.c_str());
source.Reply(_("Nick \002%s\002 is currently in use."), u->nick.c_str());
return;
}
@@ -178,7 +178,7 @@ class CommandBSBot : public Command
if (User::Find(nick, true))
{
source.Reply(_("Nick \2%s\2 is currently in use."), nick.c_str());
source.Reply(_("Nick \002%s\002 is currently in use."), nick.c_str());
return;
}
}
+1 -1
View File
@@ -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 already reached the maximum number of simultaneous logins (%u)."), na->nc->display.c_str(), maxlogins);
source.Reply(_("Account \002%s\002 has already reached the maximum number of simultaneous logins (%u)."), na->nc->display.c_str(), maxlogins);
return;
}