ACTIVEPIECES/packages/react-ui/i18next-parser.config.js
rohit cd823a2d9e
Some checks failed
Crowdin Action / synchronize-with-crowdin (push) Has been cancelled
Release Pieces / Release-Pieces (push) Has been cancelled
automaton layer
2025-07-05 23:59:03 +05:30

16 lines
747 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

module.exports = {
locales: ['en', 'fr', 'it', 'de', 'nl', 'ja', 'es', 'id', 'vi', 'zh', 'pt', 'hu', 'uk', 'bg'], // Your supported languages
output: 'packages/react-ui/public/locales/$LOCALE/$NAMESPACE.json', // Where to output the JSON files
input: ['src/**/*.{js,jsx,ts,tsx}'], // Where to find your React files
defaultNamespace: 'translation', // Default namespace if not specified
createOldCatalogs: false, // Dont maintain the existing structure with old keys
lexers: {
js: ['JavascriptLexer'],
jsx: ['JavascriptLexer'],
ts: ['JavascriptLexer'],
tsx: ['JavascriptLexer'],
},
keepRemoved: false,
keySeparator: false, // Disable key separator
namespaceSeparator: false, // Disable namespace separator
};