1
0
mirror of https://github.com/anope/anope.git synced 2026-07-10 03:23:13 +02:00

Fix places where "user modes" is written as usermodes.

This commit is contained in:
Sadie Powell
2026-07-09 18:23:26 +01:00
parent 58e278410d
commit eb37dd0af1
4 changed files with 13 additions and 13 deletions
+2 -2
View File
@@ -164,9 +164,9 @@ public:
else
{
u2->SetModes(source.service, modes);
source.Reply(_("Changed usermodes of \002%s\002 to %s."), u2->nick.c_str(), modes.c_str());
source.Reply(_("Changed user modes of \002%s\002 to %s."), u2->nick.c_str(), modes.c_str());
u2->SendMessage(source.service, _("\002%s\002 changed your usermodes to %s."), source.GetNick().c_str(), modes.c_str());
u2->SendMessage(source.service, _("\002%s\002 changed your user modes to %s."), source.GetNick().c_str(), modes.c_str());
Log(LOG_ADMIN, source, this) << modes << " on " << target;
}