1
0
mirror of https://github.com/anope/anope.git synced 2026-07-01 14:46:39 +02:00

Remove hardcoded command names from most messages.

This commit is contained in:
Sadie Powell
2025-04-22 18:14:46 +01:00
parent 0c155e0c05
commit f3743cd37d
10 changed files with 315 additions and 252 deletions
+7 -3
View File
@@ -784,16 +784,16 @@ public:
"modify the existing mode lock."
"\n\n"
"Example:\n"
" \002MODE\032#channel\032LOCK\032ADD\032+bmnt\032*!*@*aol*\002\n"
" \002%s\032#channel\032%s\032ADD\032+bmnt\032*!*@*aol*\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."
"\n\n"
"Example:\n"
" \002MODE\032#channel\032SET\032+v\032*\002\n"
" \002%s\032#channel\032SET\032+v\032*\002\n"
" Sets voice status to all users in the channel."
"\n\n"
" \002MODE\032#channel\032SET\032-b\032~c:*\n"
" \002%s\032#channel\032SET\032-b\032~c:*\n"
" Clears all extended bans that start with ~c:"
"\n\n"
"The \002%s\032CLEAR\002 command is an easy way to clear modes on a channel. \037what\037 may be "
@@ -802,6 +802,10 @@ 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(),
source.command.nobreak().c_str(),
source.command.nobreak().c_str());
return true;
}