remove specific echo test connecting message

This commit is contained in:
Philipp Memmel 2021-08-27 16:32:19 +00:00
parent 42243f858a
commit 05cdba2233
2 changed files with 2 additions and 11 deletions

View File

@ -112,10 +112,6 @@ const intlMessages = defineMessages({
id: 'app.audioModal.connecting',
description: 'Message for audio connecting',
},
connectingEchoTest: {
id: 'app.audioModal.connectingEchoTest',
description: 'Message for echo test connecting',
},
ariaModalTitle: {
id: 'app.audioModal.ariaTitle',
description: 'aria label for modal title',
@ -471,11 +467,7 @@ class AudioModal extends Component {
return (
<div className={styles.connecting} role="alert">
<span data-test={!isEchoTest ? 'connecting' : 'connectingToEchoTest'}>
{
!isEchoTest
? intl.formatMessage(intlMessages.connecting)
: intl.formatMessage(intlMessages.connectingEchoTest)
}
{intl.formatMessage(intlMessages.connecting)}
</span>
<span className={styles.connectingAnimation} />
</div>

View File

@ -507,8 +507,7 @@
"app.audioModal.playAudio.arialabel" : "Play audio",
"app.audioDial.tipIndicator": "Tip",
"app.audioDial.tipMessage": "Press the '0' key on your phone to mute/unmute yourself.",
"app.audioModal.connecting": "Connecting",
"app.audioModal.connectingEchoTest": "Connecting to echo test",
"app.audioModal.connecting": "Establishing audio connection",
"app.audioManager.joinedAudio": "You have joined the audio conference",
"app.audioManager.joinedEcho": "You have joined the echo test",
"app.audioManager.leftAudio": "You have left the audio conference",