浏览代码

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

fix: change string displayed when previewing a muted video input
j8
yanas 8 年前
父节点
当前提交
3674694d12
共有 2 个文件被更改,包括 2 次插入1 次删除
  1. 1
    0
      lang/main.json
  2. 1
    1
      react/features/device-selection/components/VideoInputPreview.js

+ 1
- 0
lang/main.json 查看文件

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

+ 1
- 1
react/features/device-selection/components/VideoInputPreview.js 查看文件

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

正在加载...
取消
保存