1
0
mirror of https://github.com/anope/anope.git synced 2026-06-12 17:04:47 +02:00

Fix a syntax error in a cs_mode help message.

Closes #537.
This commit is contained in:
Sadie Powell
2025-11-12 19:52:03 +00:00
parent f721e0974e
commit 1c84a5e3c9
2 changed files with 4 additions and 5 deletions
+3 -3
View File
@@ -16,8 +16,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Anope\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-11-11 21:08+0000\n"
"PO-Revision-Date: 2025-11-10 02:45+0000\n"
"POT-Creation-Date: 2025-11-12 19:50+0000\n"
"PO-Revision-Date: 2025-11-12 19:50+0000\n"
"Last-Translator: Sadie Powell <sadie@witchery.services>\n"
"Language-Team: English\n"
"Language: en_US\n"
@@ -3492,7 +3492,7 @@ msgid ""
"The %sLOCK command allows you to add, delete, and view mode locks on a channel. If a mode is locked on or off, services will not allow that mode to be changed. The SET command will clear all existing mode locks and set the new one given, while ADD and DEL modify the existing mode lock.\n"
"\n"
"Example:\n"
" %s#channel%sADD+bmnt*!*@*aol*\n"
" %s#channelLOCKADD+bmnt*!*@*.example.com\n"
"\n"
"\n"
"The %sSET command allows you to set modes through services. Wildcards * and ? may be given as parameters for list and status modes.\n"
+1 -2
View File
@@ -797,7 +797,7 @@ public:
"modify the existing mode lock."
"\n\n"
"Example:\n"
" \002%s\032#channel\032%s\032ADD\032+bmnt\032*!*@*aol*\002\n"
" \002%s\032#channel\032LOCK\032ADD\032+bmnt\032*!*@*.example.com\002\n"
"\n\n"
"The \002%s\032SET\002 command allows you to set modes through services. Wildcards * and ? may "
"be given as parameters for list and status modes."
@@ -818,7 +818,6 @@ public:
source.command.nobreak().c_str(),
source.command.nobreak().c_str(),
source.command.nobreak().c_str(),
source.command.nobreak().c_str(),
source.command.nobreak().c_str());
return true;
}