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" "participantsList": "({{count}}) partecipanti"
}, },
"actions": { "actions": {
"invite": "Invita persone",
"muteAll": "Silenzia tutti", "muteAll": "Silenzia tutti",
"stopVideo": "Ferma il video" "stopVideo": "Ferma il video"
} }

View File

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

View File

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

View File

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