Fixed title of favorite stickers in touchbar.

This commit is contained in:
23rd 2019-06-20 22:42:37 +03:00 committed by John Preston
parent c7526ae1cd
commit 7489f2297f
2 changed files with 4 additions and 1 deletions

View File

@ -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

View File

@ -326,7 +326,8 @@ void AppendFavedStickers(std::vector<PickerScrubberItem> &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));
}