From 0b836acad91fe3993a116d1282e5546561a1dafc Mon Sep 17 00:00:00 2001 From: Robert Pintilii Date: Wed, 12 Jan 2022 15:32:30 +0200 Subject: [PATCH] fix(thumbnail) Fixed screensharing indicator tooltip (#10780) --- lang/main.json | 1 + react/features/filmstrip/components/web/ScreenShareIndicator.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/lang/main.json b/lang/main.json index ba86070ed..903cec366 100644 --- a/lang/main.json +++ b/lang/main.json @@ -1137,6 +1137,7 @@ "muted": "Muted", "videoMuted": "Camera disabled", "remoteControl": "Start / Stop remote control", + "screenSharing": "Participant is sharing their screen", "show": "Show on stage", "videomute": "Participant has stopped the camera" }, diff --git a/react/features/filmstrip/components/web/ScreenShareIndicator.js b/react/features/filmstrip/components/web/ScreenShareIndicator.js index c7515a0e1..45584f117 100644 --- a/react/features/filmstrip/components/web/ScreenShareIndicator.js +++ b/react/features/filmstrip/components/web/ScreenShareIndicator.js @@ -26,7 +26,7 @@ export default function ScreenShareIndicator(props: Props) { icon = { IconShareDesktop } iconId = 'share-desktop' iconSize = { 15 } - tooltipKey = 'videothumbnail.videomute' + tooltipKey = 'videothumbnail.screenSharing' tooltipPosition = { props.tooltipPosition } /> ); }