diff --git a/src/components/views/voip/CallView.tsx b/src/components/views/voip/CallView.tsx index 033b3511e9..501f6bf8d9 100644 --- a/src/components/views/voip/CallView.tsx +++ b/src/components/views/voip/CallView.tsx @@ -757,8 +757,10 @@ export default class CallView extends React.Component { let text = isScreensharing ? _t("You are presenting") : _t('%(sharerName)s is presenting', { sharerName }); - if (!this.state.sidebarShown) { - text += " • " + _t("Your camera is still enabled"); + if (!this.state.sidebarShown && isScreensharing) { + text += " • " + (this.props.call.isLocalVideoMuted() + ? _t("Your camera is turned off") + : _t("Your camera is still enabled")); } presenting = ( diff --git a/src/i18n/strings/en_EN.json b/src/i18n/strings/en_EN.json index b781cc9978..f8281417e7 100644 --- a/src/i18n/strings/en_EN.json +++ b/src/i18n/strings/en_EN.json @@ -897,6 +897,7 @@ "Connecting": "Connecting", "You are presenting": "You are presenting", "%(sharerName)s is presenting": "%(sharerName)s is presenting", + "Your camera is turned off": "Your camera is turned off", "Your camera is still enabled": "Your camera is still enabled", "Video Call": "Video Call", "Voice Call": "Voice Call",