This repository has been archived on 2026-03-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
docs/src/frontend/packages/i18n/i18next-parser.config.mjs
Anthony LC 8531e0dd08 🐛(i18n) comma in keys
Having a comma in the keys broke the parser.
This commit allows the comma in keys.
2024-06-05 10:37:02 +02:00

13 lines
228 B
JavaScript

const config = {
customValueTemplate: {
message: '${key}',
description: '${description}',
},
keepRemoved: false,
keySeparator: false,
nsSeparator: false,
namespaceSeparator: false,
};
export default config;