fix(participants-pane) enable translation of invite button

Copy over existing "invite" translations where the participants
pane is already translated.

Signed-off-by: Christoph Settgast <csett86@web.de>
This commit is contained in:
Christoph Settgast 2021-05-16 18:04:33 +02:00 committed by Дамян Минков
parent b944088d99
commit 106ce79375
4 changed files with 4 additions and 1 deletions

View File

@ -535,6 +535,7 @@
"participantsList": "({{count}}) partecipanti"
},
"actions": {
"invite": "Invita persone",
"muteAll": "Silenzia tutti",
"stopVideo": "Ferma il video"
}

View File

@ -535,6 +535,7 @@
"participantsList": "సదస్యులు ({{count}})"
},
"actions": {
"invite": "ప్రజలను ఆహ్వానించు",
"muteAll": "అందరినీ మౌనించు",
"stopVideo": "వీడియో ఆపివేయి"
}

View File

@ -532,6 +532,7 @@
"participantsList": "Meeting participants ({{count}})"
},
"actions": {
"invite": "Invite Someone",
"muteAll": "Mute all",
"stopVideo": "Stop video"
}

View File

@ -26,7 +26,7 @@ export const InviteButton = () => {
<Icon
size = { 20 }
src = { IconInviteMore } />
<span>Invite Someone</span>
<span>{t('participantsPane.actions.invite')}</span>
</ParticipantInviteButton>
);
};