Additional locale match check before showing Translate button
This commit is contained in:
parent
45e633de92
commit
fa27308132
1 changed files with 3 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
||||||
import './status.css';
|
import './status.css';
|
||||||
|
|
||||||
|
import { match } from '@formatjs/intl-localematcher';
|
||||||
import '@justinribeiro/lite-youtube';
|
import '@justinribeiro/lite-youtube';
|
||||||
import {
|
import {
|
||||||
ControlledMenu,
|
ControlledMenu,
|
||||||
|
@ -905,7 +906,8 @@ function Status({
|
||||||
{((enableTranslate &&
|
{((enableTranslate &&
|
||||||
!!content.trim() &&
|
!!content.trim() &&
|
||||||
language &&
|
language &&
|
||||||
language !== targetLanguage) ||
|
language !== targetLanguage &&
|
||||||
|
!match([language], [targetLanguage])) ||
|
||||||
forceTranslate) && (
|
forceTranslate) && (
|
||||||
<TranslationBlock
|
<TranslationBlock
|
||||||
forceTranslate={forceTranslate}
|
forceTranslate={forceTranslate}
|
||||||
|
|
Loading…
Add table
Reference in a new issue