jiti-meet/react/features/subtitles/components/ClosedCaptionButton.web.js

26 lines
695 B
JavaScript
Raw Normal View History

// @flow
2019-03-21 16:38:29 +00:00
import { translate } from '../../base/i18n';
2019-08-30 16:39:06 +00:00
import { IconClosedCaption } from '../../base/icons';
2019-03-21 16:38:29 +00:00
import { connect } from '../../base/redux';
import {
AbstractClosedCaptionButton,
_abstractMapStateToProps
} from './AbstractClosedCaptionButton';
/**
* A button which starts/stops the transcriptions.
*/
class ClosedCaptionButton
extends AbstractClosedCaptionButton {
accessibilityLabel = 'toolbar.accessibilityLabel.cc';
2019-08-30 16:39:06 +00:00
icon = IconClosedCaption;
tooltip = 'transcribing.ccButtonTooltip';
label = 'toolbar.startSubtitles';
toggledLabel = 'toolbar.stopSubtitles';
}
export default translate(connect(_abstractMapStateToProps)(ClosedCaptionButton));