mirror of https://github.com/procxx/kepka.git
Fixed title of favorite stickers in touchbar.
This commit is contained in:
parent
c7526ae1cd
commit
7489f2297f
|
@ -2126,4 +2126,6 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
"lng_mac_menu_new_channel" = "New Channel";
|
"lng_mac_menu_new_channel" = "New Channel";
|
||||||
"lng_mac_menu_show" = "Show Telegram";
|
"lng_mac_menu_show" = "Show Telegram";
|
||||||
|
|
||||||
|
"lng_mac_touchbar_favorite_stickers" = "Favorite stickers";
|
||||||
|
|
||||||
// Keys finished
|
// Keys finished
|
||||||
|
|
|
@ -326,7 +326,8 @@ void AppendFavedStickers(std::vector<PickerScrubberItem> &to) {
|
||||||
if (!count) {
|
if (!count) {
|
||||||
return;
|
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) {
|
for (const auto document : it->stickers) {
|
||||||
to.emplace_back(PickerScrubberItem(document));
|
to.emplace_back(PickerScrubberItem(document));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue