Skip to content

Commit ea6c861

Browse files
committed
fix: disabling languages
1 parent 3f753e6 commit ea6c861

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/i18n/i18n.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import LanguageDetector from "i18next-browser-languagedetector";
33
import HttpApi from "i18next-http-backend";
44
import intervalPlural from "i18next-intervalplural-postprocessor";
55
import { initReactI18next } from "react-i18next";
6+
import { isProductionLike } from "../components/utils/Debug";
67
import { getVariationOfAOrAn } from "./i18nUtils";
78
import bundles, { availableLocales } from "./localeBundles";
89

@@ -74,8 +75,7 @@ i18n.use(LanguageDetector).use(intervalPlural).use(initReactI18next); // passes
7475

7576
// if you want to edit language file with HMR make hasTranslations=false and
7677
// set DEFAULT_LOCALE to edited language key
77-
export const enableAllTranslations =
78-
window.location.hostname !== "bridge.renproject.io";
78+
export const enableAllTranslations = !isProductionLike;
7979

8080
if (enableAllTranslations) {
8181
i18n.use(HttpApi);

0 commit comments

Comments
 (0)