summaryrefslogtreecommitdiff
path: root/modules/commands/ns_logout.cpp
diff options
context:
space:
mode:
authorRobby- <robby@chat.be>2013-02-02 07:30:53 +0100
committerRobby- <robby@chat.be>2013-02-02 07:30:53 +0100
commit15b37c1e38b20a3f6244af179dfdb395ee929800 (patch)
tree5ce51a5ecb759c472d3f44a322e9fb61a2bbd7ab /modules/commands/ns_logout.cpp
parentdccb0ee3138359559d3a984d4708b53154aa7082 (diff)
Some more typo and help text fixes, proper formatting of control codes, missing privileges, and settings corrections.
Diffstat (limited to 'modules/commands/ns_logout.cpp')
-rw-r--r--modules/commands/ns_logout.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/commands/ns_logout.cpp b/modules/commands/ns_logout.cpp
index 018d34128..1147b390f 100644
--- a/modules/commands/ns_logout.cpp
+++ b/modules/commands/ns_logout.cpp
@@ -37,7 +37,7 @@ class CommandNSLogout : public Command
else if (!(u2 = (!nick.empty() ? User::Find(nick, true) : source.GetUser())))
source.Reply(NICK_X_NOT_IN_USE, !nick.empty() ? nick.c_str() : source.GetNick().c_str());
else if (!nick.empty() && u2->IsServicesOper())
- source.Reply(_("You can't logout %s because they are a Services Operator."), nick.c_str());
+ source.Reply(_("You can't logout %s, they are a Services Operator."), nick.c_str());
else
{
if (!nick.empty() && !param.empty() && param.equals_ci("REVALIDATE") && NickServService)
@@ -66,14 +66,14 @@ class CommandNSLogout : public Command
{
this->SendSyntax(source);
source.Reply(" ");
- source.Reply(_("Without a parameter, reverses the effect of the \002IDENTIFY\002 \n"
+ source.Reply(_("Without a parameter, reverses the effect of the \002IDENTIFY\002\n"
"command, i.e. make you not recognized as the real owner of the nick\n"
"anymore. Note, however, that you won't be asked to reidentify\n"
"yourself.\n"
" \n"
- "With a parameter, does the same for the given nick. If you \n"
- "specify REVALIDATE as well, Services will ask the given nick\n"
- "to re-identify. This use limited to \002Services Operators\002."));
+ "With a parameter, does the same for the given nick. If you\n"
+ "specify \002REVALIDATE\002 as well, Services will ask the given nick\n"
+ "to re-identify. This is limited to \002Services Operators\002."));
return true;
}