Files
element-call/i18next-parser.config.ts

31 lines
761 B
TypeScript
Raw Normal View History

2022-10-10 09:19:10 -04:00
export default {
keySeparator: false,
namespaceSeparator: false,
contextSeparator: "|",
pluralSeparator: "_",
2022-10-10 09:19:10 -04:00
createOldCatalogs: false,
defaultNamespace: "app",
lexers: {
ts: [
{
lexer: "JavascriptLexer",
functions: ["t", "translatedError"],
namespaceFunctions: ["useTranslation", "withTranslation"],
},
],
tsx: [
{
lexer: "JsxLexer",
functions: ["t", "translatedError"],
namespaceFunctions: ["useTranslation", "withTranslation"],
},
],
2022-10-10 09:19:10 -04:00
},
locales: ["en-GB"],
output: "public/locales/$LOCALE/$NAMESPACE.json",
input: ["src/**/*.{ts,tsx}"],
sort: true,
// The key becomes the English version of the string
defaultValue: (_l, _ns, key) => key,
2022-10-10 09:19:10 -04:00
};