summaryrefslogtreecommitdiff
path: root/src/regchannel.cpp
diff options
context:
space:
mode:
authorDukePyrolator <DukePyrolator@anope.org>2011-06-13 18:20:22 +0200
committerDukePyrolator <DukePyrolator@anope.org>2011-06-13 18:20:22 +0200
commit1cd65878dbdae1d64f70522c3586897a9a7adc36 (patch)
tree30aefc309b0e06b254993a39760abe377bf7bfa7 /src/regchannel.cpp
parent6148ffa66932e1d85a5f9a90298624da583ce5ed (diff)
changed some _() to gtl() and updated do_strftime() and duration()
Diffstat (limited to 'src/regchannel.cpp')
-rw-r--r--src/regchannel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regchannel.cpp b/src/regchannel.cpp
index be2746edf..b76c85b64 100644
--- a/src/regchannel.cpp
+++ b/src/regchannel.cpp
@@ -793,7 +793,7 @@ bool ChannelInfo::CheckKick(User *user)
if (!user->HasMode(UMODE_OPER) && this->HasFlag(CI_SUSPENDED))
{
get_idealban(this, user, mask);
- reason = GetString(user->Account(), _("This channel may not be used."));
+ reason = GetString(user->Account(), gtl("This channel may not be used."));
set_modes = true;
do_kick = true;
}
@@ -837,7 +837,7 @@ bool ChannelInfo::CheckKick(User *user)
if (!do_kick && check_access(user, this, CA_NOJOIN))
{
get_idealban(this, user, mask);
- reason = GetString(user->Account(), _(CHAN_NOT_ALLOWED_TO_JOIN));
+ reason = GetString(user->Account(), CHAN_NOT_ALLOWED_TO_JOIN);
do_kick = true;
}