diff options
Diffstat (limited to 'modules/core/cs_set_securefounder.cpp')
-rw-r--r-- | modules/core/cs_set_securefounder.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/core/cs_set_securefounder.cpp b/modules/core/cs_set_securefounder.cpp index c71a7e3e8..44ac0528d 100644 --- a/modules/core/cs_set_securefounder.cpp +++ b/modules/core/cs_set_securefounder.cpp @@ -37,12 +37,12 @@ class CommandCSSetSecureFounder : public Command if (params[1].equals_ci("ON")) { ci->SetFlag(CI_SECUREFOUNDER); - source.Reply(_("Secure founder option for %s is now \002\002."), ci->name.c_str()); + source.Reply(_("Secure founder option for %s is now \002on\002."), ci->name.c_str()); } else if (params[1].equals_ci("OFF")) { ci->UnsetFlag(CI_SECUREFOUNDER); - source.Reply(_("Secure founder option for %s is now \002\002."), ci->name.c_str()); + source.Reply(_("Secure founder option for %s is now \002off\002."), ci->name.c_str()); } else this->OnSyntaxError(source, "SECUREFOUNDER"); |