Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

StopLiveStreamDialog.web.js 699B

1234567891011121314151617181920212223242526272829
  1. // @flow
  2. import { connect } from 'react-redux';
  3. import { translate } from '../../../base/i18n';
  4. import AbstractStopLiveStreamDialog, {
  5. _mapStateToProps
  6. } from './AbstractStopLiveStreamDialog';
  7. /**
  8. * A React Component for confirming the participant wishes to stop the currently
  9. * active live stream of the conference.
  10. *
  11. * @extends Component
  12. */
  13. class StopLiveStreamDialog extends AbstractStopLiveStreamDialog {
  14. /**
  15. * Renders the platform specific {@code Dialog} content.
  16. *
  17. * @inheritdoc
  18. */
  19. _renderDialogContent() {
  20. return this.props.t('dialog.stopStreamingWarning');
  21. }
  22. }
  23. export default translate(connect(_mapStateToProps)(StopLiveStreamDialog));