diff --git a/bigbluebutton-html5/imports/ui/components/status-notifier/component.jsx b/bigbluebutton-html5/imports/ui/components/status-notifier/component.jsx
index 163eb897b3..eea62234a2 100644
--- a/bigbluebutton-html5/imports/ui/components/status-notifier/component.jsx
+++ b/bigbluebutton-html5/imports/ui/components/status-notifier/component.jsx
@@ -20,7 +20,11 @@ const messages = defineMessages({
},
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: {
id: 'app.statusNotifier.and',
@@ -110,7 +114,9 @@ class StatusNotifier extends Component {
break;
}
- return intl.formatMessage(messages.raisedHandDesc, { 0: formattedNames });
+ const raisedHandMessageString
+ = length === 1 ? messages.raisedHandDescOneUser : messages.raisedHandDesc;
+ return intl.formatMessage(raisedHandMessageString, { 0: formattedNames });
}
raisedHandAvatars() {
diff --git a/bigbluebutton-html5/public/locales/en.json b/bigbluebutton-html5/public/locales/en.json
index 88b72067bd..845acee0d6 100755
--- a/bigbluebutton-html5/public/locales/en.json
+++ b/bigbluebutton-html5/public/locales/en.json
@@ -375,6 +375,7 @@
"app.statusNotifier.lowerHands": "Lower Hands",
"app.statusNotifier.raisedHandsTitle": "Raised Hands",
"app.statusNotifier.raisedHandDesc": "{0} raised their hand",
+ "app.statusNotifier.raisedHandDescOneUser": "{0} raised the hand",
"app.statusNotifier.and": "and",
"app.switch.onLabel": "ON",
"app.switch.offLabel": "OFF",