Skip to content

Commit bfde526

Browse files
committed
🐛(i18n) fix key that contain colon
Keys that contains colon where not being translated correctly. This was due to the colon being used as a separator for the key and the value. This was fixed by replacing the colon with a different character that is not used in the key or the value.
1 parent 132da08 commit bfde526

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/frontend/apps/impress/src/i18n/initI18n.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ i18n
1414
escapeValue: false,
1515
},
1616
preload: LANGUAGES_ALLOWED,
17+
nsSeparator: '||',
1718
})
1819
.catch(() => {
1920
throw new Error('i18n initialization failed');

0 commit comments

Comments
 (0)