mirror of https://github.com/procxx/kepka.git
Improve error phrase about pin limit.
This commit is contained in:
parent
c4a0bc1fd5
commit
b3f8e27661
|
@ -2278,6 +2278,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
"lng_filters_type_no_muted" = "Muted";
|
"lng_filters_type_no_muted" = "Muted";
|
||||||
"lng_filters_type_no_read" = "Read";
|
"lng_filters_type_no_read" = "Read";
|
||||||
"lng_filters_icon_header" = "Choose icon";
|
"lng_filters_icon_header" = "Choose icon";
|
||||||
|
"lng_filters_error_pinned_max" = "Sorry, you can't pin any more chats to the top.";
|
||||||
|
|
||||||
// Wnd specific
|
// Wnd specific
|
||||||
|
|
||||||
|
|
|
@ -156,10 +156,12 @@ bool PinnedLimitReached(Dialogs::Key key, FilterId filterId) {
|
||||||
owner->setChatPinned(key, FilterId(), true);
|
owner->setChatPinned(key, FilterId(), true);
|
||||||
entry->session().api().savePinnedOrder(folder);
|
entry->session().api().savePinnedOrder(folder);
|
||||||
} else {
|
} else {
|
||||||
const auto errorText = tr::lng_error_pinned_max(
|
const auto errorText = filterId
|
||||||
tr::now,
|
? tr::lng_filters_error_pinned_max(tr::now)
|
||||||
lt_count,
|
: tr::lng_error_pinned_max(
|
||||||
pinnedMax);
|
tr::now,
|
||||||
|
lt_count,
|
||||||
|
pinnedMax);
|
||||||
Ui::show(Box<InformBox>(errorText));
|
Ui::show(Box<InformBox>(errorText));
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in New Issue