2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-08-31 06:35:14 +00:00

Use "subscribers" instead of "members" in channels

This commit is contained in:
RadRussianRus
2020-05-01 14:20:57 +03:00
committed by John Preston
parent ae64747489
commit cad4d19272
7 changed files with 26 additions and 8 deletions

View File

@@ -146,10 +146,15 @@ auto ChatStatusText(int fullCount, int onlineCount, bool isGroup) {
lt_online_count,
OnlineStatusText(onlineCount));
} else if (fullCount > 0) {
return tr::lng_chat_status_members(
tr::now,
lt_count_decimal,
fullCount);
return isGroup
? tr::lng_chat_status_members(
tr::now,
lt_count_decimal,
fullCount)
: tr::lng_chat_status_subscribers(
tr::now,
lt_count_decimal,
fullCount);
}
return isGroup
? tr::lng_group_status(tr::now)