mirror of
https://github.com/vector-im/element-call.git
synced 2024-11-15 00:04:59 +08:00
21 lines
503 B
JavaScript
21 lines
503 B
JavaScript
|
export default {
|
||
|
keySeparator: false,
|
||
|
namespaceSeparator: false,
|
||
|
contextSeparator: "|",
|
||
|
pluralSeparator: "|",
|
||
|
createOldCatalogs: false,
|
||
|
defaultNamespace: "app",
|
||
|
lexers: {
|
||
|
ts: [{
|
||
|
lexer: "JavascriptLexer",
|
||
|
functions: ["t", "translatedError"],
|
||
|
functionsNamespace: ["useTranslation", "withTranslation"],
|
||
|
}],
|
||
|
},
|
||
|
locales: ["en-GB"],
|
||
|
output: "public/locales/$LOCALE/$NAMESPACE.json",
|
||
|
input: ["src/**/*.{ts,tsx}"],
|
||
|
sort: true,
|
||
|
useKeysAsDefaultValue: true,
|
||
|
};
|