diff options
author | Adam <Adam@anope.org> | 2011-02-26 17:54:03 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-02-26 17:54:03 -0500 |
commit | f234a2bfab8a4d900cfc0df91afed530d80738d4 (patch) | |
tree | 0224eb342a7d60cee86995bd87910f858d7a2e53 /modules/core/hs_set.cpp | |
parent | 28d17a40cef64783addf177fa30fb267db2cbde7 (diff) |
Replaced the few language strings we use with #defines to prevent accidentally translating them if we shouldnt
Diffstat (limited to 'modules/core/hs_set.cpp')
-rw-r--r-- | modules/core/hs_set.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/modules/core/hs_set.cpp b/modules/core/hs_set.cpp index 6dfbfbab4..10976aa7a 100644 --- a/modules/core/hs_set.cpp +++ b/modules/core/hs_set.cpp @@ -40,7 +40,7 @@ class CommandHSSet : public Command } if (vIdent.length() > Config->UserLen) { - source.Reply(LanguageString::HOST_SET_IDENTTOOLONG, Config->UserLen); + source.Reply(_(HOST_SET_IDENTTOOLONG), Config->UserLen); return MOD_CONT; } else @@ -48,13 +48,13 @@ class CommandHSSet : public Command for (Anope::string::iterator s = vIdent.begin(), s_end = vIdent.end(); s != s_end; ++s) if (!isvalidchar(*s)) { - source.Reply(LanguageString::HOST_SET_IDENT_ERROR); + source.Reply(_(HOST_SET_IDENT_ERROR)); return MOD_CONT; } } if (!ircd->vident) { - source.Reply(LanguageString::HOST_NO_VIDENT); + source.Reply(_(HOST_NO_VIDENT)); return MOD_CONT; } } @@ -62,13 +62,13 @@ class CommandHSSet : public Command hostmask = rawhostmask; else { - source.Reply(LanguageString::HOST_SET_TOOLONG, Config->HostLen); + source.Reply(_(HOST_SET_TOOLONG), Config->HostLen); return MOD_CONT; } if (!isValidHost(hostmask, 3)) { - source.Reply(LanguageString::HOST_SET_ERROR); + source.Reply(_(HOST_SET_ERROR)); return MOD_CONT; } @@ -77,7 +77,7 @@ class CommandHSSet : public Command { if (na->HasFlag(NS_FORBIDDEN)) { - source.Reply(LanguageString::NICK_X_FORBIDDEN, nick.c_str()); + source.Reply(_(NICK_X_FORBIDDEN), nick.c_str()); return MOD_CONT; } @@ -91,7 +91,7 @@ class CommandHSSet : public Command source.Reply(_("vhost for \002%s\002 set to \002%s\002."), nick.c_str(), hostmask.c_str()); } else - source.Reply(LanguageString::NICK_X_NOT_REGISTERED, nick.c_str()); + source.Reply(_(NICK_X_NOT_REGISTERED), nick.c_str()); return MOD_CONT; } |