Add breakout room button
This commit is contained in:
parent
76180a0580
commit
adbf0f0098
@ -54,6 +54,14 @@ const intlMessages = defineMessages({
|
||||
id: 'app.actionsBar.actionsDropdown.stopRecording',
|
||||
description: 'stop recording option',
|
||||
},
|
||||
createBreakoutRoom: {
|
||||
id: 'app.actionsBar.actionsDropdown.createBreakoutRoom',
|
||||
description: 'Create breakout room option',
|
||||
},
|
||||
createBreakoutRoomDesc: {
|
||||
id: 'app.actionsBar.actionsDropdown.createBreakoutRoomDesc',
|
||||
description: 'Description of create breakout room option',
|
||||
},
|
||||
});
|
||||
|
||||
const SHORTCUTS_CONFIG = Meteor.settings.public.app.shortcuts;
|
||||
@ -111,6 +119,15 @@ class ActionsDropdown extends Component {
|
||||
onClick={toggleRecording}
|
||||
/>
|
||||
: null),
|
||||
(isUserPresenter ?
|
||||
<DropdownListItem
|
||||
icon="rooms"
|
||||
label={intl.formatMessage(intlMessages.createBreakoutRoom)}
|
||||
description={intl.formatMessage(intlMessages.createBreakoutRoomDesc)}
|
||||
key={this.presentationItemId}
|
||||
onClick={this.handlePresentationClick}
|
||||
/>
|
||||
: null),
|
||||
]);
|
||||
}
|
||||
|
||||
|
@ -206,7 +206,8 @@
|
||||
"app.actionsBar.actionsDropdown.desktopShareDesc": "Share your screen with others",
|
||||
"app.actionsBar.actionsDropdown.stopDesktopShareDesc": "Stop sharing your screen with",
|
||||
"app.actionsBar.actionsDropdown.startRecording": "Start recording",
|
||||
"app.actionsBar.actionsDropdown.stopRecording": "Stop recording",
|
||||
"app.actionsBar.actionsDropdown.createBreakoutRoom": "Create breakout rooms",
|
||||
"app.actionsBar.actionsDropdown.createBreakoutRoomDesc": "create breakouts for split the current meeting ",
|
||||
"app.actionsBar.emojiMenu.statusTriggerLabel": "Set Status",
|
||||
"app.actionsBar.emojiMenu.awayLabel": "Away",
|
||||
"app.actionsBar.emojiMenu.awayDesc": "Change your status to away",
|
||||
|
Loading…
Reference in New Issue
Block a user