mirror of
https://github.com/anope/anope.git
synced 2026-07-05 11:03:12 +02:00
Remove hardcoded command names from most messages.
This commit is contained in:
@@ -355,25 +355,28 @@ public:
|
||||
this->SendSyntax(source);
|
||||
source.Reply(" ");
|
||||
source.Reply(_(
|
||||
"Modifies or displays the certificate list for your nick. "
|
||||
"If you connect to IRC and provide a client certificate with a "
|
||||
"matching fingerprint in the cert list, you will be "
|
||||
"automatically identified to services. Services Operators "
|
||||
"may provide a nick to modify other users' certificate lists."
|
||||
"\n\n"
|
||||
"Examples:"
|
||||
"\n\n"
|
||||
" \002CERT\032ADD\002\n"
|
||||
" Adds your current fingerprint to the certificate list and\n"
|
||||
" automatically identifies you when you connect to IRC\n"
|
||||
" using this fingerprint."
|
||||
"\n\n"
|
||||
" \002CERT\032DEL\032<fingerprint>\002\n"
|
||||
" Removes the fingerprint <fingerprint> from your certificate list."
|
||||
"\n\n"
|
||||
" \002CERT\032LIST\002\n"
|
||||
" Displays the current certificate list."
|
||||
));
|
||||
"Modifies or displays the certificate list for your nick. "
|
||||
"If you connect to IRC and provide a client certificate with a "
|
||||
"matching fingerprint in the cert list, you will be "
|
||||
"automatically identified to services. Services Operators "
|
||||
"may provide a nick to modify other users' certificate lists."
|
||||
"\n\n"
|
||||
"Examples:"
|
||||
"\n\n"
|
||||
" \002%s\032ADD\002\n"
|
||||
" Adds your current fingerprint to the certificate list and\n"
|
||||
" automatically identifies you when you connect to IRC\n"
|
||||
" using this fingerprint."
|
||||
"\n\n"
|
||||
" \002%s\032DEL\032<fingerprint>\002\n"
|
||||
" Removes the fingerprint <fingerprint> from your certificate list."
|
||||
"\n\n"
|
||||
" \002%s\032LIST\002\n"
|
||||
" Displays the current certificate list."
|
||||
),
|
||||
source.command.nobreak().c_str(),
|
||||
source.command.nobreak().c_str(),
|
||||
source.command.nobreak().c_str());
|
||||
return true;
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user