mirror of
https://github.com/vector-im/element-call.git
synced 2026-07-30 19:39:22 +00:00
review (remove participant count unknown)
Signed-off-by: Timo K <toger5@hotmail.de>
This commit is contained in:
@@ -102,7 +102,6 @@
|
|||||||
"mute_microphone_button_label": "Mute microphone",
|
"mute_microphone_button_label": "Mute microphone",
|
||||||
"participant_count_one": "{{count, number}}",
|
"participant_count_one": "{{count, number}}",
|
||||||
"participant_count_other": "{{count, number}}",
|
"participant_count_other": "{{count, number}}",
|
||||||
"participant_count_unkonwn": "unknown",
|
|
||||||
"rageshake_button_error_caption": "Retry sending logs",
|
"rageshake_button_error_caption": "Retry sending logs",
|
||||||
"rageshake_request_modal": {
|
"rageshake_request_modal": {
|
||||||
"body": "Another user on this call is having an issue. In order to better diagnose these issues we'd like to collect a debug log.",
|
"body": "Another user on this call is having an issue. In order to better diagnose these issues we'd like to collect a debug log.",
|
||||||
|
|||||||
@@ -158,9 +158,7 @@ export const RoomHeaderInfo: FC<RoomHeaderInfoProps> = ({
|
|||||||
aria-label={t("header_participants_label")}
|
aria-label={t("header_participants_label")}
|
||||||
/>
|
/>
|
||||||
<Text as="span" size="sm" weight="medium">
|
<Text as="span" size="sm" weight="medium">
|
||||||
{participantCount
|
{t("participant_count", { count: participantCount ?? 0 })}
|
||||||
? t("participant_count", { count: participantCount })
|
|
||||||
: t("participant_count_unkonwn")}
|
|
||||||
</Text>
|
</Text>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|||||||
Reference in New Issue
Block a user