fix(lang,notifications) make join notification text more generic

This commit is contained in:
Saúl Ibarra Corretgé 2021-09-02 14:46:16 +02:00 committed by Saúl Ibarra Corretgé
parent 76a53b039f
commit c730676ce6
2 changed files with 2 additions and 3 deletions

View File

@ -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",

View File

@ -141,8 +141,7 @@ const _throttledNotifyParticipantConnected = throttle((dispatch: Dispatch<any>)
if (joinedParticipantsCount >= 3) {
notificationProps = {
titleArguments: {
name: joinedParticipantsNames[0],
count: joinedParticipantsCount - 1
name: joinedParticipantsNames[0]
},
titleKey: 'notify.connectedThreePlusMembers'
};