diff options
| author | DukePyrolator <DukePyrolator@anope.org> | 2011-06-13 18:20:22 +0200 |
|---|---|---|
| committer | DukePyrolator <DukePyrolator@anope.org> | 2011-06-13 18:20:22 +0200 |
| commit | 1cd65878dbdae1d64f70522c3586897a9a7adc36 (patch) | |
| tree | 30aefc309b0e06b254993a39760abe377bf7bfa7 /src/regchannel.cpp | |
| parent | 6148ffa66932e1d85a5f9a90298624da583ce5ed (diff) | |
changed some _() to gtl() and updated do_strftime() and duration()
Diffstat (limited to 'src/regchannel.cpp')
| -rw-r--r-- | src/regchannel.cpp | 4 |
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; } |
