diff --git a/lang/main.json b/lang/main.json index 09a2f8c27..691df014d 100644 --- a/lang/main.json +++ b/lang/main.json @@ -543,7 +543,7 @@ "me": "me", "notify": { "connectedOneMember": "{{name}} joined the meeting", - "connectedThreePlusMembers": "{{name}} and {{count}} others joined the meeting", + "connectedThreePlusMembers": "{{name}} and many others joined the meeting", "connectedTwoMembers": "{{first}} and {{second}} joined the meeting", "disconnected": "disconnected", "focus": "Conference focus", diff --git a/react/features/notifications/actions.js b/react/features/notifications/actions.js index 5d1de8f63..cc40768c3 100644 --- a/react/features/notifications/actions.js +++ b/react/features/notifications/actions.js @@ -141,8 +141,7 @@ const _throttledNotifyParticipantConnected = throttle((dispatch: Dispatch) if (joinedParticipantsCount >= 3) { notificationProps = { titleArguments: { - name: joinedParticipantsNames[0], - count: joinedParticipantsCount - 1 + name: joinedParticipantsNames[0] }, titleKey: 'notify.connectedThreePlusMembers' };