mirror of https://github.com/procxx/kepka.git
Improve sticker set download phrase.
This commit is contained in:
parent
9bbdccc111
commit
2773a675d0
|
@ -1037,6 +1037,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|||
"lng_emoji_manage_sets" = "Choose emoji set";
|
||||
"lng_emoji_set_ready" = "Downloaded";
|
||||
"lng_emoji_set_active" = "Current set";
|
||||
"lng_emoji_set_download" = "Download {size}";
|
||||
"lng_emoji_set_loading" = "{percent}, {progress}";
|
||||
|
||||
"lng_recent_stickers" = "Frequently used";
|
||||
|
|
|
@ -168,7 +168,7 @@ SetState ComputeState(int id) {
|
|||
|
||||
QString StateDescription(const SetState &state) {
|
||||
return state.match([](const Available &data) {
|
||||
return formatSizeText(data.size);
|
||||
return lng_emoji_set_download(lt_size, formatSizeText(data.size));
|
||||
}, [](const Ready &data) -> QString {
|
||||
return lang(lng_emoji_set_ready);
|
||||
}, [](const Active &data) -> QString {
|
||||
|
|
Loading…
Reference in New Issue