Tweak video rooms copy (#8582)
* "Video room" → "New video room" * "Connect now" → "Join" * "N people connected" → "N people joined" * "Connected" → "Joined" * Fix tests
This commit is contained in:
parent
59b9d1e818
commit
26bc3ab0aa
9 changed files with 19 additions and 20 deletions
|
@ -678,12 +678,12 @@ export default class RoomTile extends React.PureComponent<IProps, IState> {
|
|||
participantCount = this.state.videoMembers.size;
|
||||
break;
|
||||
case VideoStatus.Connecting:
|
||||
videoText = _t("Connecting...");
|
||||
videoText = _t("Joining…");
|
||||
videoActive = true;
|
||||
participantCount = this.state.videoMembers.size;
|
||||
break;
|
||||
case VideoStatus.Connected:
|
||||
videoText = _t("Connected");
|
||||
videoText = _t("Joined");
|
||||
videoActive = true;
|
||||
participantCount = this.state.jitsiParticipants.length;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue