27 lines
707 B
JavaScript
27 lines
707 B
JavaScript
// @flow
|
|
|
|
import { translate } from '../../base/i18n';
|
|
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';
|
|
iconName = 'icon-closed_caption';
|
|
toggledIconName = 'icon-closed_caption toggled';
|
|
tooltip = 'transcribing.ccButtonTooltip';
|
|
label = 'toolbar.startSubtitles';
|
|
toggledLabel = 'toolbar.stopSubtitles';
|
|
}
|
|
|
|
export default translate(connect(_abstractMapStateToProps)(
|
|
ClosedCaptionButton));
|