fix(translation) Reverted changes to translation parameter

Reverted param name change on translation
pull/10250/head jitsi-meet_6509
robertpin 4 years ago committed by Horatiu Muresan
parent 0715f85796
commit dec05917d3
  1. 4
      lang/main.json
  2. 2
      react/features/base/participants/actions.js

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

@ -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())
}
}));
};

Loading…
Cancel
Save