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 /modules/core/cs_suspend.cpp | |
parent | 6148ffa66932e1d85a5f9a90298624da583ce5ed (diff) |
changed some _() to gtl() and updated do_strftime() and duration()
Diffstat (limited to 'modules/core/cs_suspend.cpp')
-rw-r--r-- | modules/core/cs_suspend.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/core/cs_suspend.cpp b/modules/core/cs_suspend.cpp index 1836da858..32d75bbeb 100644 --- a/modules/core/cs_suspend.cpp +++ b/modules/core/cs_suspend.cpp @@ -54,7 +54,7 @@ class CommandCSSuspend : public Command if (uc->user->HasMode(UMODE_OPER)) continue; - c->Kick(NULL, uc->user, "%s", !reason.empty() ? reason.c_str() : GetString(uc->user->Account(), "This channel has been suspended.").c_str()); + c->Kick(NULL, uc->user, "%s", !reason.empty() ? reason.c_str() : GetString(uc->user->Account(), gtl("This channel has been suspended.")).c_str()); } } |