diff --git a/Telegram/Resources/langs/lang.strings b/Telegram/Resources/langs/lang.strings index 0bbc28ad9..616777913 100644 --- a/Telegram/Resources/langs/lang.strings +++ b/Telegram/Resources/langs/lang.strings @@ -2126,4 +2126,6 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL "lng_mac_menu_new_channel" = "New Channel"; "lng_mac_menu_show" = "Show Telegram"; +"lng_mac_touchbar_favorite_stickers" = "Favorite stickers"; + // Keys finished diff --git a/Telegram/SourceFiles/platform/mac/mac_touchbar.mm b/Telegram/SourceFiles/platform/mac/mac_touchbar.mm index eef8dd280..6fee5efe3 100644 --- a/Telegram/SourceFiles/platform/mac/mac_touchbar.mm +++ b/Telegram/SourceFiles/platform/mac/mac_touchbar.mm @@ -326,7 +326,8 @@ void AppendFavedStickers(std::vector &to) { if (!count) { return; } - to.emplace_back(PickerScrubberItem(it->title)); + to.emplace_back(PickerScrubberItem( + tr::lng_mac_touchbar_favorite_stickers(tr::now))); for (const auto document : it->stickers) { to.emplace_back(PickerScrubberItem(document)); }