From 949876f9c06e669a42925dfde05e02f0ddfc78b3 Mon Sep 17 00:00:00 2001 From: TOM <46499476+BLACKTHOMAS@users.noreply.github.com> Date: Mon, 31 Aug 2026 06:54:08 +0200 Subject: [PATCH] fix(i18n): disable key/ns separator splitting at runtime to match i18next-parser config (#29161) --- src/lib/i18n/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/i18n/index.ts b/src/lib/i18n/index.ts index 520f9337a2..a75aaed9f2 100644 --- a/src/lib/i18n/index.ts +++ b/src/lib/i18n/index.ts @@ -65,6 +65,8 @@ export const initI18n = (defaultLocale?: string | undefined) => { default: fallbackDefaultLocale }, ns: 'translation', + keySeparator: false, + nsSeparator: false, returnEmptyString: false, interpolation: { escapeValue: false // not needed for svelte as it escapes by default