Added decimal separators to count of members in shared similar channels.

This commit is contained in:
23rd 2024-06-13 16:20:04 +03:00 committed by John Preston
parent 06075411a5
commit 10f7b985c7
1 changed files with 4 additions and 1 deletions

View File

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