mirror of
https://github.com/anope/anope.git
synced 2026-07-03 14:53:13 +02:00
fixed some typos
This commit is contained in:
@@ -306,7 +306,7 @@ class CommandCSFlags : public Command
|
||||
this->SetDesc(_("Modify the list of privileged users"));
|
||||
this->SetSyntax(_("\037channel\037 MODIFY \037mask\037 \037changes\037"));
|
||||
this->SetSyntax(_("\037channel\037 LIST [\037mask\037 | +\037flags\037]"));
|
||||
this->SetSyntax(_("\037channel\037 CLEAR\002"));
|
||||
this->SetSyntax(_("\037channel\037 CLEAR"));
|
||||
}
|
||||
|
||||
void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) anope_override
|
||||
|
||||
@@ -61,8 +61,8 @@ class CommandCSSetSecureFounder : public Command
|
||||
source.Reply(" ");
|
||||
source.Reply(_("Enables or disables the \002secure founder\002 option for a channel.\n"
|
||||
"When \002secure founder\002 is set, only the real founder will be\n"
|
||||
"able to drop the channel, change its password, its founder and its\n"
|
||||
"successor, and not those who have founder level access through\n"
|
||||
"able to drop the channel, change its founder and its successor,\n"
|
||||
"and not those who have founder level access through\n"
|
||||
"the access/qop command."));
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -120,7 +120,7 @@ class CommandHSSetAll : public Command
|
||||
CommandHSSetAll(Module *creator) : Command(creator, "hostserv/setall", 2, 2)
|
||||
{
|
||||
this->SetDesc(_("Set the vhost for all nicks in a group"));
|
||||
this->SetSyntax(_("\037nick\037 \037hostmask>\037"));
|
||||
this->SetSyntax(_("\037nick\037 \037hostmask\037"));
|
||||
}
|
||||
|
||||
void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) anope_override
|
||||
|
||||
@@ -156,7 +156,7 @@ class CommandMSInfo : public Command
|
||||
if (!mi->memomax)
|
||||
{
|
||||
if (!u->IsServicesOper() && hardmax)
|
||||
source.Reply(_("Your memo limit is \0020\002; you will not receive any new memos. You cannot change this limit."));
|
||||
source.Reply(_("Your memo limit is \0020\002; you will not receive any new memos. You cannot change this limit."));
|
||||
else
|
||||
source.Reply(_("Your memo limit is \0020\002; you will not receive any new memos."));
|
||||
}
|
||||
|
||||
@@ -91,7 +91,7 @@ class CommandNSGhost : public Command
|
||||
{
|
||||
this->SendSyntax(source);
|
||||
source.Reply(" ");
|
||||
source.Reply(_("itermminates a \"ghost\" IRC session using your nick. A\n"
|
||||
source.Reply(_("Terminates a \"ghost\" IRC session using your nick. A\n"
|
||||
"ghost\" session is one which is not actually connected,\n"
|
||||
"but which the IRC server believes is still online for one\n"
|
||||
"reason or another. Typically, this happens if your\n"
|
||||
|
||||
@@ -37,7 +37,7 @@ class CommandOSReload : public Command
|
||||
{
|
||||
Config = old_config;
|
||||
Log() << "Error reloading configuration file: " << ex.GetReason();
|
||||
source.Reply(_("Error reloading confguration file: ") + ex.GetReason());
|
||||
source.Reply(_("Error reloading configuration file: ") + ex.GetReason());
|
||||
}
|
||||
|
||||
return;
|
||||
|
||||
@@ -83,7 +83,7 @@ class GlobalCore : public Module
|
||||
{
|
||||
if (!params.empty() || source.owner->nick != Config->Global)
|
||||
return EVENT_CONTINUE;
|
||||
source.Reply(_("%s commands:\n"), Config->Global.c_str());
|
||||
source.Reply(_("%s commands:"), Config->Global.c_str());
|
||||
return EVENT_CONTINUE;
|
||||
}
|
||||
};
|
||||
|
||||
@@ -70,7 +70,7 @@ class HostServCore : public Module
|
||||
{
|
||||
if (!params.empty() || source.owner->nick != Config->HostServ)
|
||||
return EVENT_CONTINUE;
|
||||
source.Reply(_("%s commands:\n"), Config->HostServ.c_str());
|
||||
source.Reply(_("%s commands:"), Config->HostServ.c_str());
|
||||
return EVENT_CONTINUE;
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user