fix(translation) Reverted changes to translation parameter

Reverted param name change on translation
This commit is contained in:
robertpin 2021-10-25 10:19:09 +03:00 committed by Horatiu Muresan
parent 0715f85796
commit dec05917d3
2 changed files with 3 additions and 3 deletions

View File

@ -568,9 +568,9 @@
"moderator": "You're now a moderator",
"muted": "You have started the conversation muted.",
"mutedTitle": "You're muted!",
"mutedRemotelyTitle": "You've been muted by {{moderator}}",
"mutedRemotelyTitle": "You've been muted by {{participantDisplayName}}",
"mutedRemotelyDescription": "You can always unmute when you're ready to speak. Mute back when you're done to keep noise away from the meeting.",
"videoMutedRemotelyTitle": "Your video has been turned off by {{moderator}}",
"videoMutedRemotelyTitle": "Your video has been turned off by {{participantDisplayName}}",
"videoMutedRemotelyDescription": "You can always turn it on again.",
"passwordRemovedRemotely": "$t(lockRoomPasswordUppercase) removed by another participant",
"passwordSetRemotely": "$t(lockRoomPasswordUppercase) set by another participant",

View File

@ -476,7 +476,7 @@ export function participantMutedUs(participant, track) {
dispatch(showNotification({
titleKey: isAudio ? 'notify.mutedRemotelyTitle' : 'notify.videoMutedRemotelyTitle',
titleArguments: {
moderator: getParticipantDisplayName(getState, participant.getId())
participantDisplayName: getParticipantDisplayName(getState, participant.getId())
}
}));
};