diff options
author | George Hazan <ghazan@miranda.im> | 2023-03-07 12:28:46 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2023-03-07 12:28:46 +0300 |
commit | f9cdf7391b9510c73b5041e624d84dae093ffd0d (patch) | |
tree | 15bb2d35589d863dc55fa921db943f13169e1490 /protocols/Telegram | |
parent | 927aa281dab3124d39f4e113ff96b62509e1114d (diff) |
fixes #3409 (Telegram: окно ввода пароля странно себя ведёт)
Diffstat (limited to 'protocols/Telegram')
-rw-r--r-- | protocols/Telegram/src/auth.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Telegram/src/auth.cpp b/protocols/Telegram/src/auth.cpp index 61f249dcd7..7084e12296 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 the secret code sent to your Telegram on another device");
+ es.caption = TranslateT("Enter the secret code sent to another device");
if (EnterString(&es)) {
ppro->SendQuery(new TD::checkAuthenticationCode(T2Utf(es.ptszResult).get()), &CTelegramProto::OnUpdateAuth);
mir_free(es.ptszResult);
|