onedrive / i18next-parser.config.js
ImPekaaboo
first commit
5db682b
const path = require('path')
const { i18n, localePath } = require('./next-i18next.config')
module.exports = {
createOldCatalogs: false,
defaultNamespace: 'common',
defaultValue: (lng, _ns, key) => (lng === i18n.defaultLocale ? key : ''),
keySeparator: false,
namespaceSeparator: false,
pluralSeparator: 'β€”β€”',
contextSeparator: 'β€”β€”',
lineEnding: 'lf',
locales: i18n.locales,
output: path.join(localePath, '$LOCALE/$NAMESPACE.json'),
input: ['**/*.{ts,tsx}', '!**/node_modules/**'],
sort: true
}