summaryrefslogtreecommitdiff
path: root/modules/commands/os_oline.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/os_oline.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/os_oline.cpp')
-rw-r--r--modules/commands/os_oline.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/commands/os_oline.cpp b/modules/commands/os_oline.cpp
index e067a07a6..ba6d3f54c 100644
--- a/modules/commands/os_oline.cpp
+++ b/modules/commands/os_oline.cpp
@@ -42,7 +42,7 @@ class CommandOSOLine : public Command
else if (u2 && flag[0] == '-')
{
IRCD->SendSVSO(source.service, nick, flag);
- source.Reply(_("Operflags \002%s\002 have been added for \002%s\002."), flag.c_str(), nick.c_str());
+ source.Reply(_("Operflags \002%s\002 have been removed from \002%s\002."), flag.c_str(), nick.c_str());
Log(LOG_ADMIN, source, this) << "for " << nick;
}
else
@@ -55,7 +55,7 @@ class CommandOSOLine : public Command
{
this->SendSyntax(source);
source.Reply(" ");
- source.Reply(_("Allows Services Opers to give Operflags to any user.\n"
+ source.Reply(_("Allows Services Operators to give Operflags to any user.\n"
"Flags have to be prefixed with a \"+\" or a \"-\". To\n"
"remove all flags simply type a \"-\" instead of any flags."));
return true;