File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import LanguageDetector from "i18next-browser-languagedetector";
3
3
import HttpApi from "i18next-http-backend" ;
4
4
import intervalPlural from "i18next-intervalplural-postprocessor" ;
5
5
import { initReactI18next } from "react-i18next" ;
6
+ import { isProductionLike } from "../components/utils/Debug" ;
6
7
import { getVariationOfAOrAn } from "./i18nUtils" ;
7
8
import bundles , { availableLocales } from "./localeBundles" ;
8
9
@@ -74,8 +75,7 @@ i18n.use(LanguageDetector).use(intervalPlural).use(initReactI18next); // passes
74
75
75
76
// if you want to edit language file with HMR make hasTranslations=false and
76
77
// set DEFAULT_LOCALE to edited language key
77
- export const enableAllTranslations =
78
- window . location . hostname !== "bridge.renproject.io" ;
78
+ export const enableAllTranslations = ! isProductionLike ;
79
79
80
80
if ( enableAllTranslations ) {
81
81
i18n . use ( HttpApi ) ;
You can’t perform that action at this time.
0 commit comments