diff options
author | Adam <Adam@anope.org> | 2014-06-16 20:41:07 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2014-06-17 08:37:19 -0400 |
commit | 9a947fa4359c667be58ebae4634d9ac0e53d5db4 (patch) | |
tree | cae4a7f25cec2ef98413275babe02ae3c9199b60 /modules | |
parent | 4f7868b1250fa02be825a193970bfb08e32e5d96 (diff) |
Correct some language strings
Diffstat (limited to 'modules')
-rw-r--r-- | modules/commands/cs_info.cpp | 10 | ||||
-rw-r--r-- | modules/commands/cs_xop.cpp | 5 | ||||
-rw-r--r-- | modules/commands/ms_check.cpp | 2 | ||||
-rw-r--r-- | modules/commands/ns_cert.cpp | 10 |
4 files changed, 11 insertions, 16 deletions
diff --git a/modules/commands/cs_info.cpp b/modules/commands/cs_info.cpp index af12aba78..48824669a 100644 --- a/modules/commands/cs_info.cpp +++ b/modules/commands/cs_info.cpp @@ -74,11 +74,11 @@ class CommandCSInfo : public Command this->SendSyntax(source); source.Reply(" "); source.Reply(_("Lists information about the named registered channel,\n" - "including its founder, time of registration, and last\n" - "time used. If the user issuing the command has the\n" - "appropriate access for it, then the description, successor,\n" - "last topic set, settings and expiration time will also\n" - "be displayed when applicable.")); + "including its founder, time of registration, last\n" + "time used, and description. If the user issuing the\n" + "command has the appropriate access for it, then the" + "successor, last topic set, settings and expiration" + "time will also be displayed when applicable.")); return true; } }; diff --git a/modules/commands/cs_xop.cpp b/modules/commands/cs_xop.cpp index 4c48dcc01..340369901 100644 --- a/modules/commands/cs_xop.cpp +++ b/modules/commands/cs_xop.cpp @@ -562,11 +562,6 @@ class CommandCSXOP : public Command "The \002%s CLEAR\002 command clears all entries of the\n" "%s list."), cmd.c_str(), cmd.c_str(), cmd.c_str(), cmd.c_str(), cmd.c_str(), cmd.c_str(), cmd.c_str(), cmd.c_str(), cmd.c_str(), cmd.c_str()); - source.Reply(_(" \n" - "The \002%s\002 commands are limited to founders\n" - "(unless SECUREOPS is off). However, any user on the\n" - "VOP list or above may use the \002%s LIST\002 command.\n" - " \n"), cmd.c_str(), cmd.c_str()); BotInfo *access_bi, *flags_bi; Anope::string access_cmd, flags_cmd; Command::FindCommandFromService("chanserv/access", access_bi, access_cmd); diff --git a/modules/commands/ms_check.cpp b/modules/commands/ms_check.cpp index c0deabf65..6fab8919a 100644 --- a/modules/commands/ms_check.cpp +++ b/modules/commands/ms_check.cpp @@ -67,7 +67,7 @@ class CommandMSCheck : public Command this->SendSyntax(source); source.Reply(" "); source.Reply(_("Checks whether the _last_ memo you sent to \037nick\037 has been read\n" - "or not. Note that this does only work with nicks, not with channels.")); + "or not. Note that this only works with nicks, not with channels.")); return true; } }; diff --git a/modules/commands/ns_cert.cpp b/modules/commands/ns_cert.cpp index 81a782045..aedb816d2 100644 --- a/modules/commands/ns_cert.cpp +++ b/modules/commands/ns_cert.cpp @@ -318,19 +318,19 @@ class CommandNSCert : public Command source.Reply(" "); source.Reply(_("Modifies or displays the certificate list for your nick.\n" "If you connect to IRC and provide a client certificate with a\n" - "matching fingerprint in the cert list, your nick will be\n" + "matching fingerprint in the cert list, you will be\n" "automatically identified to services. Services Operators\n" "may provide a nick to modify other users' certificate lists.\n" " \n")); source.Reply(_("Examples:\n" " \n" - " \002CERT ADD <fingerprint>\002\n" - " Adds this fingerprint to the certificate list and\n" + " \002CERT ADD\002\n" + " Adds your current fingerprint to the certificate list and\n" " automatically identifies you when you connect to IRC\n" - " using this certificate.\n" + " using this fingerprint.\n" " \n" " \002CERT DEL <fingerprint>\002\n" - " Reverses the previous command.\n" + " Removes the fingerprint <fingerprint> from your certificate list.\n" " \n" " \002CERT LIST\002\n" " Displays the current certificate list.")); |