summaryrefslogtreecommitdiff
path: root/modules/operserv/os_mode.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/operserv/os_mode.cpp')
-rw-r--r--modules/operserv/os_mode.cpp16
1 files changed, 10 insertions, 6 deletions
diff --git a/modules/operserv/os_mode.cpp b/modules/operserv/os_mode.cpp
index 3a6b2159e..0ac9b48d4 100644
--- a/modules/operserv/os_mode.cpp
+++ b/modules/operserv/os_mode.cpp
@@ -128,10 +128,12 @@ public:
{
this->SendSyntax(source);
source.Reply(" ");
- source.Reply(_("Allows Services Operators to change modes for any channel.\n"
- "Parameters are the same as for the standard /MODE command.\n"
- "Alternatively, CLEAR may be given to clear all modes on the channel.\n"
- "If CLEAR ALL is given then all modes, including user status, is removed."));
+ source.Reply(_(
+ "Allows Services Operators to change modes for any channel. "
+ "Parameters are the same as for the standard /MODE command. "
+ "Alternatively, CLEAR may be given to clear all modes on the channel. "
+ "If CLEAR\032ALL is given then all modes, including user status, is removed."
+ ));
return true;
}
};
@@ -169,8 +171,10 @@ public:
{
this->SendSyntax(source);
source.Reply(" ");
- source.Reply(_("Allows Services Operators to change modes for any user.\n"
- "Parameters are the same as for the standard /MODE command."));
+ source.Reply(_(
+ "Allows Services Operators to change modes for any user. "
+ "Parameters are the same as for the standard /MODE command."
+ ));
return true;
}
};