Merge pull request #1514 from virtuacoplenny/lenny/video-preview-mute-string

fix: change string displayed when previewing a muted video input
This commit is contained in:
yanas 2017-04-18 16:33:50 -05:00 committed by GitHub
commit 3674694d12
2 changed files with 2 additions and 1 deletions

View File

@ -424,6 +424,7 @@
"speakerTime": "Speaker Time" "speakerTime": "Speaker Time"
}, },
"deviceSelection": { "deviceSelection": {
"currentlyVideoMuted": "Video is currently muted",
"deviceSettings": "Device settings", "deviceSettings": "Device settings",
"noOtherDevices": "No other devices available", "noOtherDevices": "No other devices available",
"selectADevice": "Select a device", "selectADevice": "Select a device",

View File

@ -81,7 +81,7 @@ class VideoInputPreview extends Component {
className = 'video-input-preview-display flipVideoX' className = 'video-input-preview-display flipVideoX'
ref = { this._setVideoElement } /> ref = { this._setVideoElement } />
<div className = 'video-input-preview-muted'> <div className = 'video-input-preview-muted'>
{ this.props.t('videothumbnail.muted') } { this.props.t('deviceSelection.currentlyVideoMuted') }
</div> </div>
</div> </div>
); );