Skip to content
Snippets Groups Projects
Unverified Commit 0c699893 authored by Anton Georgiev's avatar Anton Georgiev Committed by GitHub
Browse files

Merge pull request #12109 from PhMemmel/improve-hand-raised-notification-message

Makes hand raised message differentiate between one and multiple users
parents f9a4f913 0c4eef0c
No related branches found
No related tags found
No related merge requests found
...@@ -20,7 +20,11 @@ const messages = defineMessages({ ...@@ -20,7 +20,11 @@ const messages = defineMessages({
}, },
raisedHandDesc: { raisedHandDesc: {
id: 'app.statusNotifier.raisedHandDesc', id: 'app.statusNotifier.raisedHandDesc',
description: 'label for user with raised hands', description: 'label for multiple users with raised hands',
},
raisedHandDescOneUser: {
id: 'app.statusNotifier.raisedHandDescOneUser',
description: 'label for a single user with raised hand',
}, },
and: { and: {
id: 'app.statusNotifier.and', id: 'app.statusNotifier.and',
...@@ -110,7 +114,9 @@ class StatusNotifier extends Component { ...@@ -110,7 +114,9 @@ class StatusNotifier extends Component {
break; break;
} }
return intl.formatMessage(messages.raisedHandDesc, { 0: formattedNames }); const raisedHandMessageString
= length === 1 ? messages.raisedHandDescOneUser : messages.raisedHandDesc;
return intl.formatMessage(raisedHandMessageString, { 0: formattedNames });
} }
raisedHandAvatars() { raisedHandAvatars() {
......
...@@ -374,7 +374,8 @@ ...@@ -374,7 +374,8 @@
"app.settings.save-notification.label": "Settings have been saved", "app.settings.save-notification.label": "Settings have been saved",
"app.statusNotifier.lowerHands": "Lower Hands", "app.statusNotifier.lowerHands": "Lower Hands",
"app.statusNotifier.raisedHandsTitle": "Raised Hands", "app.statusNotifier.raisedHandsTitle": "Raised Hands",
"app.statusNotifier.raisedHandDesc": "{0} raised their hand", "app.statusNotifier.raisedHandDesc": "{0} raised their hands",
"app.statusNotifier.raisedHandDescOneUser": "{0} raised hand",
"app.statusNotifier.and": "and", "app.statusNotifier.and": "and",
"app.switch.onLabel": "ON", "app.switch.onLabel": "ON",
"app.switch.offLabel": "OFF", "app.switch.offLabel": "OFF",
......
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