Time features label change
This commit is contained in:
parent
4c90d407cd
commit
0a1428b862
@ -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(),
|
||||
});
|
||||
|
@ -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",
|
||||
|
Loading…
Reference in New Issue
Block a user