summaryrefslogtreecommitdiff
path: root/src/language.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2011-02-26 17:54:03 -0500
committerAdam <Adam@anope.org>2011-02-26 17:54:03 -0500
commitf234a2bfab8a4d900cfc0df91afed530d80738d4 (patch)
tree0224eb342a7d60cee86995bd87910f858d7a2e53 /src/language.cpp
parent28d17a40cef64783addf177fa30fb267db2cbde7 (diff)
Replaced the few language strings we use with #defines to prevent accidentally translating them if we shouldnt
Diffstat (limited to 'src/language.cpp')
-rw-r--r--src/language.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/language.cpp b/src/language.cpp
index 5d2ced124..6ae4eb10d 100644
--- a/src/language.cpp
+++ b/src/language.cpp
@@ -115,6 +115,6 @@ const char *anope_gettext(const char *string)
void SyntaxError(CommandSource &source, const Anope::string &command, const Anope::string &message)
{
source.Reply(_("Syntax: \002%s\002"), message.c_str());
- source.Reply(_(LanguageString::MORE_INFO), source.owner->nick.c_str(), command.c_str());
+ source.Reply(_(_(MORE_INFO)), source.owner->nick.c_str(), command.c_str());
}