diff --git a/bigbluebutton-html5/imports/ui/components/actions-bar/actions-dropdown/component.jsx b/bigbluebutton-html5/imports/ui/components/actions-bar/actions-dropdown/component.jsx
index e44bf5e751..0493001a00 100755
--- a/bigbluebutton-html5/imports/ui/components/actions-bar/actions-dropdown/component.jsx
+++ b/bigbluebutton-html5/imports/ui/components/actions-bar/actions-dropdown/component.jsx
@@ -45,13 +45,13 @@ const intlMessages = defineMessages({
id: 'app.actionsBar.actionsDropdown.actionsLabel',
description: 'Actions button label',
},
- activateTimerLabel: {
- id: 'app.actionsBar.actionsDropdown.activateTimerLabel',
- description: 'Activate timer label',
+ activateTimerStopwatchLabel: {
+ id: 'app.actionsBar.actionsDropdown.activateTimerStopwatchLabel',
+ description: 'Activate timer/stopwatch label',
},
- deactivateTimerLabel: {
- id: 'app.actionsBar.actionsDropdown.deactivateTimerLabel',
- description: 'Deactivate timer label',
+ deactivateTimerStopwatchLabel: {
+ id: 'app.actionsBar.actionsDropdown.deactivateTimerStopwatchLabel',
+ description: 'Deactivate timer/stopwatch label',
},
presentationLabel: {
id: 'app.actionsBar.actionsDropdown.presentationLabel',
@@ -263,8 +263,8 @@ class ActionsDropdown extends PureComponent {
actions.push({
icon: 'time',
label: isTimerActive
- ? intl.formatMessage(intlMessages.deactivateTimerLabel)
- : intl.formatMessage(intlMessages.activateTimerLabel),
+ ? intl.formatMessage(intlMessages.deactivateTimerStopwatchLabel)
+ : intl.formatMessage(intlMessages.activateTimerStopwatchLabel),
key: this.timerId,
onClick: () => this.handleTimerClick(),
});
diff --git a/bigbluebutton-html5/public/locales/en.json b/bigbluebutton-html5/public/locales/en.json
index 21bcad5871..e32f45446d 100755
--- a/bigbluebutton-html5/public/locales/en.json
+++ b/bigbluebutton-html5/public/locales/en.json
@@ -613,8 +613,8 @@
"app.talkingIndicator.moreThanMaxIndicatorsWereTalking" : "{0}+ were talking",
"app.talkingIndicator.wasTalking" : "{0} stopped talking",
"app.actionsBar.actionsDropdown.actionsLabel": "Actions",
- "app.actionsBar.actionsDropdown.activateTimerLabel": "Activate stopwatch",
- "app.actionsBar.actionsDropdown.deactivateTimerLabel": "Deactivate stopwatch",
+ "app.actionsBar.actionsDropdown.activateTimerStopwatchLabel": "Activate timer/stopwatch",
+ "app.actionsBar.actionsDropdown.deactivateTimerStopwatchLabel": "Deactivate timer/stopwatch",
"app.actionsBar.actionsDropdown.presentationLabel": "Upload/Manage presentations",
"app.actionsBar.actionsDropdown.initPollLabel": "Initiate a poll",
"app.actionsBar.actionsDropdown.desktopShareLabel": "Share your screen",