🌐(frontend) add missing internationalization for "micro désactivé"
Fix overlooked French text that wasn't properly internationalized in the microphone status display.
This commit is contained in:
committed by
aleb_the_flash
parent
27a0128b2a
commit
15aff4db8e
@@ -132,7 +132,7 @@ export const AudioTab = ({ id }: AudioTabProps) => {
|
|||||||
{localParticipant.isMicrophoneEnabled ? (
|
{localParticipant.isMicrophoneEnabled ? (
|
||||||
<ActiveSpeaker isSpeaking={isSpeaking} />
|
<ActiveSpeaker isSpeaking={isSpeaking} />
|
||||||
) : (
|
) : (
|
||||||
<span>Micro désactivé</span>
|
<span>{t('audio.microphone.disabled')}</span>
|
||||||
)}
|
)}
|
||||||
</>
|
</>
|
||||||
</RowWrapper>
|
</RowWrapper>
|
||||||
|
|||||||
@@ -9,7 +9,8 @@
|
|||||||
"audio": {
|
"audio": {
|
||||||
"microphone": {
|
"microphone": {
|
||||||
"heading": "Mikrofon",
|
"heading": "Mikrofon",
|
||||||
"label": "Wählen Sie Ihre Audioeingabe"
|
"label": "Wählen Sie Ihre Audioeingabe",
|
||||||
|
"disabled": "Mikrofon deaktiviert"
|
||||||
},
|
},
|
||||||
"speakers": {
|
"speakers": {
|
||||||
"heading": "Lautsprecher",
|
"heading": "Lautsprecher",
|
||||||
|
|||||||
@@ -9,7 +9,8 @@
|
|||||||
"audio": {
|
"audio": {
|
||||||
"microphone": {
|
"microphone": {
|
||||||
"heading": "Microphone",
|
"heading": "Microphone",
|
||||||
"label": "Select your audio input"
|
"label": "Select your audio input",
|
||||||
|
"disabled": "Microphone disabled"
|
||||||
},
|
},
|
||||||
"speakers": {
|
"speakers": {
|
||||||
"heading": "Speakers",
|
"heading": "Speakers",
|
||||||
|
|||||||
@@ -9,7 +9,8 @@
|
|||||||
"audio": {
|
"audio": {
|
||||||
"microphone": {
|
"microphone": {
|
||||||
"heading": "Micro",
|
"heading": "Micro",
|
||||||
"label": "Sélectionner votre entrée audio"
|
"label": "Sélectionner votre entrée audio",
|
||||||
|
"disabled": "Micro désactivé"
|
||||||
},
|
},
|
||||||
"speakers": {
|
"speakers": {
|
||||||
"heading": "Haut-parleurs",
|
"heading": "Haut-parleurs",
|
||||||
|
|||||||
@@ -9,7 +9,8 @@
|
|||||||
"audio": {
|
"audio": {
|
||||||
"microphone": {
|
"microphone": {
|
||||||
"heading": "Microfoon",
|
"heading": "Microfoon",
|
||||||
"label": "Selecteer uw audioinvoer"
|
"label": "Selecteer uw audioinvoer",
|
||||||
|
"disabled": "Microfoon uitgeschakeld"
|
||||||
},
|
},
|
||||||
"speakers": {
|
"speakers": {
|
||||||
"heading": "Luidsprekers",
|
"heading": "Luidsprekers",
|
||||||
|
|||||||
Reference in New Issue
Block a user