summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2010-11-30 13:24:20 -0500
committerAdam <Adam@anope.org>2010-12-24 20:00:17 -0500
commit667419a4607f55233b706da1d6d9f6ffd4d3495e (patch)
treea3a234628745cd5012aefc34a43b5998fb39f567 /src
parent82e588a790a9b6034d56256b2977886a23a55d1f (diff)
Document that /cs owner and deowner allow nick args
(cherry picked from commit 5fe41fb8a056efd14ecdb1079813b23d83821193)
Diffstat (limited to 'src')
-rw-r--r--src/language.cpp14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/language.cpp b/src/language.cpp
index ce53c0fe6..2cfb9183e 100644
--- a/src/language.cpp
+++ b/src/language.cpp
@@ -1366,7 +1366,7 @@ Anope::string language_strings[LANG_STRING_COUNT] = {
/* CHAN_PROTECT_SYNTAX */
_("PROTECT #channel [nick]"),
/* CHAN_OWNER_SYNTAX */
- _("OWNER #channel"),
+ _("OWNER #channel [\037nick\037]"),
/* CHAN_DEOP_SYNTAX */
_("DEOP #channel [nick]"),
/* CHAN_DEHALFOP_SYNTAX */
@@ -1376,7 +1376,7 @@ Anope::string language_strings[LANG_STRING_COUNT] = {
/* CHAN_DEPROTECT_SYNTAX */
_("DEROTECT #channel [nick]"),
/* CHAN_DEOWNER_SYNTAX */
- _("DEOWNER #channel"),
+ _("DEOWNER #channel [\037nick\037]"),
/* CHAN_KICK_SYNTAX */
_("KICK #channel nick [reason]"),
/* CHAN_BAN_SYNTAX */
@@ -4038,15 +4038,17 @@ Anope::string language_strings[LANG_STRING_COUNT] = {
"By default, limited to the founder, or to SOPs or those with \n"
"level 10 and above on the channel for self deprotecting."),
/* CHAN_HELP_OWNER */
- _("Syntax: OWNER #channel\n"
+ _("Syntax: OWNER #channel [\037nick\037]\n"
" \n"
- "Gives you owner status on channel.\n"
+ "Gives the selected nick owner status on channel. If nick is not\n"
+ "given, it will give you owner.\n"
" \n"
"Limited to those with founder access on the channel."),
/* CHAN_HELP_DEOWNER */
- _("Syntax: DEOWNER #channel\n"
+ _("Syntax: DEOWNER #channel [\037nick\037]\n"
" \n"
- "Removes your owner status on channel.\n"
+ "Removes owner status from the selected nick on channel. If nick\n"
+ "is not given, it will deowner you.\n"
" \n"
"Limited to those with founder access on the channel."),
/* CHAN_HELP_INVITE */