summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2023-02-28 11:41:43 +0300
committerGeorge Hazan <ghazan@miranda.im>2023-02-28 11:41:43 +0300
commitae18471b200212a464290262ab0f5dd28cd4c4ce (patch)
treed85ad8d8c1fc684b5d72f3a1b2ae3e9ad938c611
parent359c15a81c4b84a8721bfbc80a31213d33bd3c78 (diff)
fixes #3357 (Telegram: сообщение про смс-код)
-rw-r--r--protocols/Telegram/src/auth.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Telegram/src/auth.cpp b/protocols/Telegram/src/auth.cpp
index b6af34a657..230c489dc5 100644
--- a/protocols/Telegram/src/auth.cpp
+++ b/protocols/Telegram/src/auth.cpp
@@ -59,7 +59,7 @@ INT_PTR CALLBACK CTelegramProto::EnterPhoneCode(void *param)
ENTER_STRING es = {};
es.szModuleName = ppro->m_szModuleName;
- es.caption = TranslateT("Enter secret code sent to your phone");
+ es.caption = TranslateT("Enter the secret code sent to your Telegram on another device");
if (EnterString(&es)) {
ppro->SendQuery(new TD::checkAuthenticationCode(T2Utf(es.ptszResult).get()), &CTelegramProto::OnUpdateAuth);
mir_free(es.ptszResult);