diff --git a/bigbluebutton-html5/imports/ui/components/actions-bar/component.jsx b/bigbluebutton-html5/imports/ui/components/actions-bar/component.jsx index 5ac7f512f6a007a47a98c6c5831aa8da6418429e..9fc16e4e87cbff385f9c5c7ae15b423eaee70495 100755 --- a/bigbluebutton-html5/imports/ui/components/actions-bar/component.jsx +++ b/bigbluebutton-html5/imports/ui/components/actions-bar/component.jsx @@ -86,7 +86,13 @@ class ActionsBar extends PureComponent { { <Button icon="hand" - label={intl.formatMessage({ id: 'app.actionsBar.emojiMenu.raiseHandLabel' })} + label={intl.formatMessage({ + id: `app.actionsBar.emojiMenu.${ + currentUser.emoji === 'raiseHand' + ? 'lowerHandLabel' + : 'raiseHandLabel' + }`, + })} accessKey={shortcuts.raisehand} color="primary" hideLabel diff --git a/bigbluebutton-html5/public/locales/en.json b/bigbluebutton-html5/public/locales/en.json index eb5c032b8b32f155c61eb2e09a45e5b44cdda703..9f51280204794cf2747d958de088c05406073f81 100755 --- a/bigbluebutton-html5/public/locales/en.json +++ b/bigbluebutton-html5/public/locales/en.json @@ -407,6 +407,7 @@ "app.actionsBar.emojiMenu.awayLabel": "Away", "app.actionsBar.emojiMenu.awayDesc": "Change your status to away", "app.actionsBar.emojiMenu.raiseHandLabel": "Raise hand", + "app.actionsBar.emojiMenu.lowerHandLabel": "Lower hand", "app.actionsBar.emojiMenu.raiseHandDesc": "Raise your hand to ask a question", "app.actionsBar.emojiMenu.neutralLabel": "Undecided", "app.actionsBar.emojiMenu.neutralDesc": "Change your status to undecided",