Skip to content

Commit

Permalink
fix: Update title for raise hand button (WPB-14948)
Browse files Browse the repository at this point in the history
  • Loading branch information
thisisamir98 committed Dec 16, 2024
1 parent cb737bc commit bd8a407
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions src/i18n/en-US.json
Original file line number Diff line number Diff line change
Expand Up @@ -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.",
Expand Down
4 changes: 2 additions & 2 deletions src/script/components/calling/FullscreenVideoCall.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -862,8 +862,8 @@ const FullscreenVideoCall = ({
aria-checked={isSelfHandRaised}
title={
isSelfHandRaised
? t('videoCallOverlayHideParticipantsList')
: t('videoCallOverlayShowParticipantsList')
? t('videoCallParticipantLowerYourHand')
: t('videoCallParticipantRaiseYourHand')
}
>
<RaiseHandIcon width={16} height={16} />
Expand Down
2 changes: 2 additions & 0 deletions src/types/i18n.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.`;
Expand Down

0 comments on commit bd8a407

Please sign in to comment.