diff --git a/src/i18n/en-US.json b/src/i18n/en-US.json index a99390377df..a74e16561ce 100644 --- a/src/i18n/en-US.json +++ b/src/i18n/en-US.json @@ -1625,6 +1625,8 @@ "videoCallParticipantRaisedSelfHandUp": "You have raised your hand up", "videoCallParticipantRaisedSortByTime": "Top in the list raised their hand first.", "videoCallParticipantRaisedTheirHandUp": "{name} has raised their hand up", + "videoCallParticipantRaiseYourHand": "Raise your hand", + "videoCallParticipantLowerYourHand": "Lower your hand", "videoCallPaused": "Video paused", "videoCallScreenShareEndConfirm": "End screen share", "videoCallScreenShareEndConfirmDescription": "If you minimize the window, your screen share will end.", diff --git a/src/script/components/calling/FullscreenVideoCall.tsx b/src/script/components/calling/FullscreenVideoCall.tsx index b051d3a5ec8..c20b8de3d2c 100644 --- a/src/script/components/calling/FullscreenVideoCall.tsx +++ b/src/script/components/calling/FullscreenVideoCall.tsx @@ -862,8 +862,8 @@ const FullscreenVideoCall = ({ aria-checked={isSelfHandRaised} title={ isSelfHandRaised - ? t('videoCallOverlayHideParticipantsList') - : t('videoCallOverlayShowParticipantsList') + ? t('videoCallParticipantLowerYourHand') + : t('videoCallParticipantRaiseYourHand') } > diff --git a/src/types/i18n.d.ts b/src/types/i18n.d.ts index 8c4c6fedabd..a36b54cae66 100644 --- a/src/types/i18n.d.ts +++ b/src/types/i18n.d.ts @@ -1629,6 +1629,8 @@ declare module 'I18n/en-US.json' { 'videoCallParticipantRaisedSelfHandUp': `You have raised your hand up`; 'videoCallParticipantRaisedSortByTime': `Top in the list raised their hand first.`; 'videoCallParticipantRaisedTheirHandUp': `{name} has raised their hand up`; + 'videoCallParticipantRaiseYourHand': `Raise your hand`; + 'videoCallParticipantLowerYourHand': `Lower your hand`; 'videoCallPaused': `Video paused`; 'videoCallScreenShareEndConfirm': `End screen share`; 'videoCallScreenShareEndConfirmDescription': `If you minimize the window, your screen share will end.`;