Skip to content
Snippets Groups Projects
Commit 4473fa08 authored by KDSBrowne's avatar KDSBrowne
Browse files

add lower hand label

parent 132dfb02
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
......@@ -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",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment