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:
parent
b944088d99
commit
106ce79375
|
@ -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"
|
||||||
}
|
}
|
||||||
|
|
|
@ -535,6 +535,7 @@
|
||||||
"participantsList": "సదస్యులు ({{count}})"
|
"participantsList": "సదస్యులు ({{count}})"
|
||||||
},
|
},
|
||||||
"actions": {
|
"actions": {
|
||||||
|
"invite": "ప్రజలను ఆహ్వానించు",
|
||||||
"muteAll": "అందరినీ మౌనించు",
|
"muteAll": "అందరినీ మౌనించు",
|
||||||
"stopVideo": "వీడియో ఆపివేయి"
|
"stopVideo": "వీడియో ఆపివేయి"
|
||||||
}
|
}
|
||||||
|
|
|
@ -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"
|
||||||
}
|
}
|
||||||
|
|
|
@ -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>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue