Browse Source

fix(vpaas): Make user media permission message more generic

master
Vlad Piersec 4 years ago
parent
commit
08dce76763

+ 1
- 0
lang/main.json View File

678
     },
678
     },
679
     "startupoverlay": {
679
     "startupoverlay": {
680
         "policyText": " ",
680
         "policyText": " ",
681
+        "genericTitle": "The meeting needs to use your microphone and camera.",
681
         "title": "{{app}} needs to use your microphone and camera."
682
         "title": "{{app}} needs to use your microphone and camera."
682
     },
683
     },
683
     "suspendedoverlay": {
684
     "suspendedoverlay": {

+ 1
- 2
react/features/overlay/components/web/UserMediaPermissionsOverlay.js View File

32
                     <span className = 'inlay__icon icon-camera' />
32
                     <span className = 'inlay__icon icon-camera' />
33
                     <h3 className = 'inlay__title'>
33
                     <h3 className = 'inlay__title'>
34
                         {
34
                         {
35
-                            t('startupoverlay.title',
36
-                                { app: interfaceConfig.APP_NAME })
35
+                            t('startupoverlay.genericTitle')
37
                         }
36
                         }
38
                     </h3>
37
                     </h3>
39
                     <span className = 'inlay__text'>
38
                     <span className = 'inlay__text'>

Loading…
Cancel
Save