| 12345678910111213141516171819202122232425 | // @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 = 'closed_caption';
    label = 'transcribing.start';
    toggledIconName = 'closed_caption';
    toggledLabel = 'transcribing.stop';
}
export default translate(connect(_abstractMapStateToProps)(
    ClosedCaptionButton));
 |