diff --git a/config.js b/config.js index 4a88847d14..7dc071bc49 100644 --- a/config.js +++ b/config.js @@ -1429,7 +1429,6 @@ var config = { // 'conference-timer', // 'participants-count', // 'e2ee', - // 'transcribing', // 'video-quality', // 'insecure-room', // 'highlight-moment', diff --git a/react/features/conference/components/native/Labels.tsx b/react/features/conference/components/native/Labels.tsx index 32fa8bc03c..25cfdf6451 100644 --- a/react/features/conference/components/native/Labels.tsx +++ b/react/features/conference/components/native/Labels.tsx @@ -1,11 +1,10 @@ import React, { Component } from 'react'; import { TouchableOpacity, View, ViewStyle } from 'react-native'; -import TranscribingLabel from '../../../transcribing/components/TranscribingLabel.native'; import VideoQualityLabel from '../../../video-quality/components/VideoQualityLabel.native'; import InsecureRoomNameLabel from './InsecureRoomNameLabel'; -import { LABEL_ID_INSECURE_ROOM_NAME, LABEL_ID_QUALITY, LABEL_ID_TRANSCRIBING, LabelHitSlop } from './constants'; +import { LABEL_ID_INSECURE_ROOM_NAME, LABEL_ID_QUALITY, LabelHitSlop } from './constants'; import styles from './styles'; interface IProps { @@ -33,13 +32,6 @@ class Labels extends Component { - - - { - /** - * Returns the label specific text of this {@code ExpandedLabel}. - * - * @returns {string} - */ - _getLabel() { - return this.props.t('transcribing.expandedLabel'); - } -} - -export default translate(TranscribingExpandedLabel); diff --git a/react/features/transcribing/components/TranscribingExpandedLabel.web.ts b/react/features/transcribing/components/TranscribingExpandedLabel.web.ts deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/react/features/transcribing/components/TranscribingLabel.native.tsx b/react/features/transcribing/components/TranscribingLabel.native.tsx deleted file mode 100644 index 16c8d64cb4..0000000000 --- a/react/features/transcribing/components/TranscribingLabel.native.tsx +++ /dev/null @@ -1,59 +0,0 @@ -import React, { Component } from 'react'; -import { WithTranslation } from 'react-i18next'; -import { connect } from 'react-redux'; - -import { IReduxState } from '../../app/types'; -import { translate } from '../../base/i18n/functions'; -import Label from '../../base/label/components/native/Label'; - -/** - * The type of the React {@code Component} props of {@link TranscribingLabel}. - */ -export interface IProps extends WithTranslation { - - /** - * True if the label needs to be rendered, false otherwise. - */ - _showLabel: boolean; -} - - -/** - * React {@code Component} for displaying a label when a transcriber is in the - * conference. - * - * @augments Component - */ -class TranscribingLabel extends Component { - - /** - * Renders the platform-specific label component. - * - * @inheritdoc - */ - render() { - if (!this.props._showLabel) { - return null; - } - - return