diff options
author | DukePyrolator <DukePyrolator@anope.org> | 2012-04-01 20:50:04 +0200 |
---|---|---|
committer | DukePyrolator <DukePyrolator@anope.org> | 2012-04-01 20:50:04 +0200 |
commit | cf3124c06399ed1eba8a33b017893d9bda28494c (patch) | |
tree | 9c23414217b03eed05bdf927b94c7c58d4b80fc0 | |
parent | 12a6a27b52a3520c1f41a1d4d6b8e3ef25fafb23 (diff) |
fixed some typos
-rw-r--r-- | modules/commands/cs_flags.cpp | 2 | ||||
-rw-r--r-- | modules/commands/cs_set_securefounder.cpp | 4 | ||||
-rw-r--r-- | modules/commands/hs_set.cpp | 2 | ||||
-rw-r--r-- | modules/commands/ms_info.cpp | 2 | ||||
-rw-r--r-- | modules/commands/ns_ghost.cpp | 2 | ||||
-rw-r--r-- | modules/commands/os_reload.cpp | 2 | ||||
-rw-r--r-- | modules/pseudoclients/global.cpp | 2 | ||||
-rw-r--r-- | modules/pseudoclients/hostserv.cpp | 2 |
8 files changed, 9 insertions, 9 deletions
diff --git a/modules/commands/cs_flags.cpp b/modules/commands/cs_flags.cpp index 1dd10bbb6..aceb28192 100644 --- a/modules/commands/cs_flags.cpp +++ b/modules/commands/cs_flags.cpp @@ -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 diff --git a/modules/commands/cs_set_securefounder.cpp b/modules/commands/cs_set_securefounder.cpp index ad4a91033..7d1c1a7dc 100644 --- a/modules/commands/cs_set_securefounder.cpp +++ b/modules/commands/cs_set_securefounder.cpp @@ -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; } diff --git a/modules/commands/hs_set.cpp b/modules/commands/hs_set.cpp index 72ec9f07c..5e73fd800 100644 --- a/modules/commands/hs_set.cpp +++ b/modules/commands/hs_set.cpp @@ -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 diff --git a/modules/commands/ms_info.cpp b/modules/commands/ms_info.cpp index 4efac86eb..1cb6199a8 100644 --- a/modules/commands/ms_info.cpp +++ b/modules/commands/ms_info.cpp @@ -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.")); } diff --git a/modules/commands/ns_ghost.cpp b/modules/commands/ns_ghost.cpp index 05b60eacd..8b861e889 100644 --- a/modules/commands/ns_ghost.cpp +++ b/modules/commands/ns_ghost.cpp @@ -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" diff --git a/modules/commands/os_reload.cpp b/modules/commands/os_reload.cpp index eec113c3e..8b7da60f9 100644 --- a/modules/commands/os_reload.cpp +++ b/modules/commands/os_reload.cpp @@ -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; diff --git a/modules/pseudoclients/global.cpp b/modules/pseudoclients/global.cpp index 1d3a2b7b1..363c29a1e 100644 --- a/modules/pseudoclients/global.cpp +++ b/modules/pseudoclients/global.cpp @@ -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; } }; diff --git a/modules/pseudoclients/hostserv.cpp b/modules/pseudoclients/hostserv.cpp index 80f050934..0e7699c5f 100644 --- a/modules/pseudoclients/hostserv.cpp +++ b/modules/pseudoclients/hostserv.cpp @@ -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; } }; |