2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-31 06:26:18 +00:00

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

View File

@@ -85,7 +85,10 @@ std::unique_ptr<PeerListRow> ListController::createRow(
if (const auto channel = peer->asChannel()) { if (const auto channel = peer->asChannel()) {
if (const auto count = channel->membersCount(); count > 1) { if (const auto count = channel->membersCount(); count > 1) {
result->setCustomStatus( 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; return result;