Added text about to selector of tag for recent forwards to self.

This commit is contained in:
23rd
2025-10-03 18:13:46 +03:00
committed by John Preston
parent bee4ec5ddf
commit 094890622a
4 changed files with 12 additions and 3 deletions
+2
View File
@@ -4529,6 +4529,8 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
"lng_add_tag_phrase" = "to messages {arrow}";
"lng_add_tag_phrase_long" = "to your Saved Messages {arrow}";
"lng_unlock_tags" = "Unlock";
"lng_add_tag_selector#one" = "You can add a tag to the message";
"lng_add_tag_selector#other" = "You can add a tag to the messages";
"lng_context_animated_emoji" = "This message contains emoji from **{name} pack**.";
"lng_context_animated_emoji_many#one" = "This message contains emoji from **{count} pack**.";
@@ -815,7 +815,7 @@ reactPanelScrollRounded: ScrollArea(emojiScroll) {
deltat: 14px;
deltab: 14px;
}
selfForwardsTaggerStripSkip: 46px;
selfForwardsTaggerStripSkip: 26px;
selfForwardsTaggerIcon: size(32px, 32px);
selfForwardsTaggerToast: Toast(defaultToast) {
minWidth: 160px;
@@ -107,7 +107,11 @@ void SelfForwardsTagger::showSelectorForMessages(
st::reactPanelEmojiPan,
_controller->uiShow(),
reactions,
TextWithEntities(),
tr::lng_add_tag_selector(
tr::now,
lt_count,
float64(ids.size()),
TextWithEntities::Simple),
[](bool) {},
IconFactory(),
[] { return false; },
@@ -499,7 +499,10 @@ void Selector::initGeometry(int innerTop) {
if (_about) {
_about->move(
_inner.x() + (_inner.width() - _about->width()) / 2,
_outer.y() + margins.top() + _st.aboutPadding.top());
_outer.y()
+ margins.top()
+ _st.aboutPadding.top()
- skipYBubbleUpShift());
_aboutCache = Ui::GrabWidgetToImage(_about.get());
}