Clarified block dialog phrases in Replies chat to avoid admin wording.

This commit is contained in:
23rd
2026-04-22 19:30:57 +03:00
parent 52cc4762ba
commit 6267eed8b3
2 changed files with 4 additions and 2 deletions
+2
View File
@@ -1395,6 +1395,8 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
"lng_blocked_list_confirm_title" = "Block {name}";
"lng_blocked_list_confirm_text" = "Do you want to block {name} from messaging and calling you on Telegram?";
"lng_blocked_list_confirm_clear" = "Delete this chat";
"lng_blocked_list_confirm_reply" = "Delete this reply";
"lng_blocked_list_confirm_reply_all" = "Delete all replies from {user}";
"lng_blocked_list_confirm_ok" = "Block";
"lng_blocked_list_empty_title" = "No blocked users";
"lng_blocked_list_empty_description" = "You haven't blocked anyone yet.";
@@ -2510,7 +2510,7 @@ void PeerMenuBlockUserBox(
: v::is<ClearReply>(suggestClear)
? box->addRow(object_ptr<Ui::Checkbox>(
box,
tr::lng_context_delete_msg(tr::now),
tr::lng_blocked_list_confirm_reply(tr::now),
true,
st::defaultBoxCheckbox))
: nullptr;
@@ -2520,7 +2520,7 @@ void PeerMenuBlockUserBox(
const auto allFromUser = v::is<ClearReply>(suggestClear)
? box->addRow(object_ptr<Ui::Checkbox>(
box,
tr::lng_delete_all_from_user(
tr::lng_blocked_list_confirm_reply_all(
tr::now,
lt_user,
tr::bold(peer->name()),