diff options
| author | ilotterytea <iltsu@alright.party> | 2024-05-08 22:15:48 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2024-05-08 22:15:48 +0500 |
| commit | 6034e01a6c0d62546f10247aa481304699ed4155 (patch) | |
| tree | 2db9ecd51aa37ac135131bd019f25c7ac8ae995d /src/localization/line_id.cpp | |
| parent | ef028f6535c8aac9367d2375cdd9556a1dcfe4f7 (diff) | |
feat: new command - !join
Diffstat (limited to 'src/localization/line_id.cpp')
| -rw-r--r-- | src/localization/line_id.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/localization/line_id.cpp b/src/localization/line_id.cpp index 2eca697..560ac90 100644 --- a/src/localization/line_id.cpp +++ b/src/localization/line_id.cpp @@ -10,6 +10,10 @@ namespace bot { return LineId::PingResponse; } + else if (str == "msg.owner") { + return LineId::MsgOwner; + } + else if (str == "argument.subcommand") { return LineId::ArgumentSubcommand; } else if (str == "argument.message") { @@ -56,6 +60,20 @@ namespace bot { return LineId::NotifyUnsub; } + else if (str == "join.response") { + return LineId::JoinResponse; + } else if (str == "join.response_in_chat") { + return LineId::JoinResponseInChat; + } else if (str == "join.already_in") { + return LineId::JoinAlreadyIn; + } else if (str == "join.rejoined") { + return LineId::JoinRejoined; + } else if (str == "join.from_other_chat") { + return LineId::JoinFromOtherChat; + } else if (str == "join.not_allowed") { + return LineId::JoinNotAllowed; + } + else { return std::nullopt; } |
