|
|
@ -5,7 +5,7 @@ import { FormattedMessage, injectIntl } from 'react-intl';
|
|
|
|
import Permalink from './permalink';
|
|
|
|
import Permalink from './permalink';
|
|
|
|
import classnames from 'classnames';
|
|
|
|
import classnames from 'classnames';
|
|
|
|
import Icon from 'flavours/glitch/components/icon';
|
|
|
|
import Icon from 'flavours/glitch/components/icon';
|
|
|
|
import { autoPlayGif, languages as preloadedLanguages } from 'flavours/glitch/initial_state';
|
|
|
|
import { autoPlayGif, languages as preloadedLanguages, translationEnabled } from 'flavours/glitch/initial_state';
|
|
|
|
import { decode as decodeIDNA } from 'flavours/glitch/utils/idna';
|
|
|
|
import { decode as decodeIDNA } from 'flavours/glitch/utils/idna';
|
|
|
|
|
|
|
|
|
|
|
|
const textMatchesTarget = (text, origin, host) => {
|
|
|
|
const textMatchesTarget = (text, origin, host) => {
|
|
|
@ -278,7 +278,7 @@ class StatusContent extends React.PureComponent {
|
|
|
|
} = this.props;
|
|
|
|
} = this.props;
|
|
|
|
|
|
|
|
|
|
|
|
const hidden = this.props.onExpandedToggle ? !this.props.expanded : this.state.hidden;
|
|
|
|
const hidden = this.props.onExpandedToggle ? !this.props.expanded : this.state.hidden;
|
|
|
|
const renderTranslate = this.context.identity.signedIn && this.props.onTranslate && ['public', 'unlisted'].includes(status.get('visibility')) && status.get('contentHtml').length > 0 && status.get('language') !== null && intl.locale !== status.get('language');
|
|
|
|
const renderTranslate = translationEnabled && this.context.identity.signedIn && this.props.onTranslate && ['public', 'unlisted'].includes(status.get('visibility')) && status.get('contentHtml').length > 0 && status.get('language') !== null && intl.locale !== status.get('language');
|
|
|
|
const language = preloadedLanguages.find(lang => lang[0] === status.get('language'));
|
|
|
|
const language = preloadedLanguages.find(lang => lang[0] === status.get('language'));
|
|
|
|
const languageName = language ? language[2] : status.get('language');
|
|
|
|
const languageName = language ? language[2] : status.get('language');
|
|
|
|
|
|
|
|
|
|
|
|