mirror of
https://github.com/znc/znc.git
synced 2026-03-28 17:42:41 +01:00
Log: add ShowSettings command, rework Set command, #601
Make more strings translateable, #1354
This commit is contained in:
@@ -22,7 +22,8 @@ class CMissingMotd : public CModule {
|
||||
MODCONSTRUCTOR(CMissingMotd) {}
|
||||
|
||||
void OnClientLogin() override {
|
||||
PutUser(":irc.znc.in 422 " + GetClient()->GetNick() + " :MOTD File is missing");
|
||||
PutUser(":irc.znc.in 422 " + GetClient()->GetNick() +
|
||||
" :MOTD File is missing");
|
||||
}
|
||||
};
|
||||
|
||||
@@ -32,4 +33,4 @@ void TModInfo<CMissingMotd>(CModInfo& Info) {
|
||||
Info.SetHasArgs(false);
|
||||
}
|
||||
|
||||
USERMODULEDEFS(CMissingMotd, "Sends 422 to clients when they login")
|
||||
USERMODULEDEFS(CMissingMotd, t_s("Sends 422 to clients when they login"))
|
||||
|
||||
Reference in New Issue
Block a user