mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-04-14 13:17:08 +02:00
Added decimal separators to count of members in shared similar channels.
This commit is contained in:
parent
06075411a5
commit
10f7b985c7
1 changed files with 4 additions and 1 deletions
|
@ -85,7 +85,10 @@ std::unique_ptr<PeerListRow> ListController::createRow(
|
|||
if (const auto channel = peer->asChannel()) {
|
||||
if (const auto count = channel->membersCount(); count > 1) {
|
||||
result->setCustomStatus(
|
||||
tr::lng_chat_status_subscribers(tr::now, lt_count, count));
|
||||
tr::lng_chat_status_subscribers(
|
||||
tr::now,
|
||||
lt_count_decimal,
|
||||
count));
|
||||
}
|
||||
}
|
||||
return result;
|
||||
|
|
Loading…
Add table
Reference in a new issue