diff options
author | Adam <Adam@anope.org> | 2011-03-12 02:40:08 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-03-12 02:40:08 -0500 |
commit | 95469fde3055e1a257fd4e1027617892b912d07c (patch) | |
tree | 5e0c5fd126c7d0151c1ded6cdbda1bb9e290947e /modules/core/os_set.cpp | |
parent | 9f46972f19060d2ede624bdec52b9091042e3735 (diff) |
Added some access checks to cs_mode and fixed some language strings
Diffstat (limited to 'modules/core/os_set.cpp')
-rw-r--r-- | modules/core/os_set.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/core/os_set.cpp b/modules/core/os_set.cpp index c83a3a8b2..cb50aa8fe 100644 --- a/modules/core/os_set.cpp +++ b/modules/core/os_set.cpp @@ -56,7 +56,7 @@ class CommandOSSet : public Command source.Reply(_("Services are now in \002read-write\002 mode.")); } else - source.Reply(_("Setting for READONLY must be \002\002 or \002\002.")); + source.Reply(_("Setting for READONLY must be \002on\002 or \002off\002.")); return MOD_CONT; } @@ -94,7 +94,7 @@ class CommandOSSet : public Command ircdproto->SendGlobops(OperServ, GetString(NULL, _("%s is no longer a Super-Admin")).c_str(), u->nick.c_str()); } else - source.Reply(_("Setting for SuperAdmin must be \002\002 or \002\002 (must be enabled in services.conf)")); + source.Reply(_("Setting for SuperAdmin must be \002on\002 or \002off\002 (must be enabled in services.conf)")); return MOD_CONT; } @@ -163,7 +163,7 @@ class CommandOSSet : public Command source.Reply(_("Services are now in \002expire\002 mode.")); } else - source.Reply(_("Setting for NOEXPIRE must be \002\002 or \002\002.")); + source.Reply(_("Setting for NOEXPIRE must be \002on\002 or \002off\002.")); return MOD_CONT; } |