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

Fix some missing documentation.

This commit is contained in:
Sadie Powell
2025-11-09 12:35:25 +00:00
parent 8562445038
commit 8843e89e9f
2 changed files with 10 additions and 10 deletions
+5 -5
View File
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Anope\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-10-21 11:13+0100\n"
"PO-Revision-Date: 2025-10-21 11:13+0100\n"
"POT-Creation-Date: 2025-11-09 12:40+0000\n"
"PO-Revision-Date: 2025-11-09 12:40+0000\n"
"Last-Translator: Sadie Powell <sadie@witchery.services>\n"
"Language-Team: English\n"
"Language: en_US\n"
@@ -699,10 +699,10 @@ msgstr ""
msgid "password email"
msgstr ""
msgid "pattern [SUSPENDED] [NOEXPIRE]"
msgid "pattern [DISPLAY] [NOEXPIRE] [SUSPENDED] [UNCONFIRMED]"
msgstr ""
msgid "pattern [SUSPENDED] [NOEXPIRE] [UNCONFIRMED]"
msgid "pattern [SUSPENDED] [NOEXPIRE]"
msgstr ""
msgid "server [message]"
@@ -3381,7 +3381,7 @@ msgid ""
"\n"
"Note that a preceding '#' specifies a range.\n"
"\n"
"If the SUSPENDED, UNCONFIRMED or NOEXPIRE options are given, only nicks which, respectively, are SUSPENDED, UNCONFIRMED or have the NOEXPIRE flag set will be displayed. If multiple options are given, all nicks matching at least one option will be displayed. Note that these options are limited to Services Operators.\n"
"If the DISPLAY, NOEXPIRE, SUSPENDED, or UNCONFIRMED options are given only nicks which, respectively, are display nicks, will not expire, are suspended, or are unconfirmed will be shown. If multiple options are given, nicks must match every option to be shown. Note that these options are limited to Services Operators.\n"
"\n"
"Examples:\n"
"\n"
+5 -5
View File
@@ -18,7 +18,7 @@ public:
CommandNSList(Module *creator) : Command(creator, "nickserv/list", 1, 2)
{
this->SetDesc(_("List all registered nicknames that match a given pattern"));
this->SetSyntax(_("\037pattern\037 [SUSPENDED] [NOEXPIRE] [UNCONFIRMED]"));
this->SetSyntax(_("\037pattern\037 [DISPLAY] [NOEXPIRE] [SUSPENDED] [UNCONFIRMED]"));
}
void Execute(CommandSource &source, const std::vector<Anope::string> &params) override
@@ -139,10 +139,10 @@ public:
"\n\n"
"Note that a preceding '#' specifies a range."
"\n\n"
"If the SUSPENDED, UNCONFIRMED or NOEXPIRE options are given, only "
"nicks which, respectively, are SUSPENDED, UNCONFIRMED or have the "
"NOEXPIRE flag set will be displayed. If multiple options are "
"given, all nicks matching at least one option will be displayed. "
"If the DISPLAY, NOEXPIRE, SUSPENDED, or UNCONFIRMED options are given "
"only nicks which, respectively, are display nicks, will not expire, are "
"suspended, or are unconfirmed will be shown. If multiple options are "
"given, nicks must match every option to be shown. "
"Note that these options are limited to \037Services Operators\037."
"\n\n"
"Examples:"