fix(vpaas): Make user media permission message more generic
This commit is contained in:
parent
d03173e827
commit
08dce76763
|
@ -678,6 +678,7 @@
|
||||||
},
|
},
|
||||||
"startupoverlay": {
|
"startupoverlay": {
|
||||||
"policyText": " ",
|
"policyText": " ",
|
||||||
|
"genericTitle": "The meeting needs to use your microphone and camera.",
|
||||||
"title": "{{app}} needs to use your microphone and camera."
|
"title": "{{app}} needs to use your microphone and camera."
|
||||||
},
|
},
|
||||||
"suspendedoverlay": {
|
"suspendedoverlay": {
|
||||||
|
|
|
@ -32,8 +32,7 @@ class UserMediaPermissionsOverlay extends AbstractUserMediaPermissionsOverlay {
|
||||||
<span className = 'inlay__icon icon-camera' />
|
<span className = 'inlay__icon icon-camera' />
|
||||||
<h3 className = 'inlay__title'>
|
<h3 className = 'inlay__title'>
|
||||||
{
|
{
|
||||||
t('startupoverlay.title',
|
t('startupoverlay.genericTitle')
|
||||||
{ app: interfaceConfig.APP_NAME })
|
|
||||||
}
|
}
|
||||||
</h3>
|
</h3>
|
||||||
<span className = 'inlay__text'>
|
<span className = 'inlay__text'>
|
||||||
|
|
Loading…
Reference in New Issue