diff options
author | Robby <robby@chatbelgie.be> | 2020-01-07 02:45:30 +0100 |
---|---|---|
committer | Robby <robby@chatbelgie.be> | 2020-01-07 02:45:30 +0100 |
commit | d319fc6eb547acd47c74db6a706ceb525d371d49 (patch) | |
tree | eb9f8b57b6108efcb08f7f6abcf97020e65cd93e /modules/extra/stats/m_chanstats.cpp | |
parent | 83eea993171642b522d579ec516e53051dfcef86 (diff) |
m_chanstats: Make ChanServ's HELP SET CHANSTATS translatable too. (#253)
Also refresh the language files while at it.
Diffstat (limited to 'modules/extra/stats/m_chanstats.cpp')
-rw-r--r-- | modules/extra/stats/m_chanstats.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/extra/stats/m_chanstats.cpp b/modules/extra/stats/m_chanstats.cpp index 491f02456..eadc9fc22 100644 --- a/modules/extra/stats/m_chanstats.cpp +++ b/modules/extra/stats/m_chanstats.cpp @@ -58,7 +58,7 @@ class CommandCSSetChanstats : public Command { this->SendSyntax(source); source.Reply(" "); - source.Reply("Turn Chanstats channel statistics ON or OFF."); + source.Reply(_("Turns chanstats statistics ON or OFF.")); return true; } }; @@ -116,7 +116,7 @@ class CommandNSSetChanstats : public Command { this->SendSyntax(source); source.Reply(" "); - source.Reply(_("Turns Chanstats statistics ON or OFF.")); + source.Reply(_("Turns chanstats statistics ON or OFF.")); return true; } }; |