remove the use of namespace from the config (#38491)

fixes: #38250

Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com>
This commit is contained in:
Erik Jan de Wit
2025-03-27 12:01:17 +01:00
committed by GitHub
parent 78aa8b486f
commit 649d8a0678
2 changed files with 2 additions and 0 deletions

View File

@@ -24,6 +24,7 @@ export const keycloakLanguageDetector: LanguageDetectorModule = {
export const i18n = createInstance({
fallbackLng: DEFAULT_LOCALE,
nsSeparator: false,
interpolation: {
escapeValue: false,
},

View File

@@ -14,6 +14,7 @@ export const KEY_SEPARATOR = ".";
export const i18n: i18nType = createInstance({
fallbackLng: DEFAULT_LOCALE,
keySeparator: KEY_SEPARATOR,
nsSeparator: false,
interpolation: {
escapeValue: false,
},