Merge pull request #7765 from MaximKhlobystov/mute-unmute-tip

Tip that explains how to mute/unmute yourself using a phone
This commit is contained in:
Anton Georgiev 2019-07-11 15:39:03 -04:00 committed by GitHub
commit 7b06c6784e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 26 additions and 0 deletions

View File

@ -12,6 +12,14 @@ const intlMessages = defineMessages({
id: 'app.audioDial.audioDialConfrenceText',
description: 'audio settings back button label',
},
tipIndicator: {
id: 'app.audioDial.tipIndicator',
description: 'Indicator for the tip message',
},
tipMessage: {
id: 'app.audioDial.tipMessage',
description: 'Tip message explaining how to mute/unmute yourself',
},
});
const propTypes = {
@ -38,6 +46,12 @@ class AudioDial extends React.PureComponent {
{intl.formatMessage(intlMessages.audioDialConfrenceText)}
</div>
<div className={styles.telvoice}>{telVoice}</div>
<div className={styles.tipBox}>
<span className={styles.tipIndicator}>
{`${intl.formatMessage(intlMessages.tipIndicator)}: `}
</span>
{intl.formatMessage(intlMessages.tipMessage)}
</div>
</span>
);
}

View File

@ -25,3 +25,13 @@
.telvoice {
margin-bottom: 0;
}
.tipBox {
background-color: var(--color-gray-lightest);
padding: 1.2rem;
margin-top: 2rem;
}
.tipIndicator {
font-weight: bold;
}

View File

@ -406,6 +406,8 @@
"app.audioModal.audioDialTitle": "Join using your phone",
"app.audioDial.audioDialDescription": "Dial",
"app.audioDial.audioDialConfrenceText": "and enter the conference PIN number:",
"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.audioManager.joinedAudio": "You have joined the audio conference",