diff options
author | dartraiden <wowemuh@gmail.com> | 2023-06-08 02:27:56 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2023-06-08 02:27:56 +0300 |
commit | 4d795e7ade615ed283387b4dc5a74056bdfbfd62 (patch) | |
tree | e459d8d6e8d71aa15c28be60ec69ad29d16b8b1d /protocols | |
parent | 0f0e20249e05810712c7a6b927c81539aadd8e09 (diff) |
Telegeam: reuse string from Facebook and ICQ
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/Telegram/src/utils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Telegram/src/utils.cpp b/protocols/Telegram/src/utils.cpp index 79e897bf3f..3415e03c83 100644 --- a/protocols/Telegram/src/utils.cpp +++ b/protocols/Telegram/src/utils.cpp @@ -443,7 +443,7 @@ CMStringA CTelegramProto::GetMessageText(TG_USER *pUser, const TD::message *pMsg }
if (!m_bSmileyAdd)
- return CMStringA(FORMAT, "%s: %s", TranslateU("You received a sticker"), pSticker->emoji_.c_str());
+ return CMStringA(FORMAT, "%s: %s", TranslateU("SmileyAdd plugin required to support stickers"), pSticker->emoji_.c_str());
const char *pwszFileExt;
switch (pSticker->format_->get_id()) {
|