From c730676ce6c6eb05ffff7b162380b9a054dbe3af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Thu, 2 Sep 2021 14:46:16 +0200 Subject: [PATCH] fix(lang,notifications) make join notification text more generic --- lang/main.json | 2 +- react/features/notifications/actions.js | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) 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' };