17a48c76cd
- this helps with using the correct key/values when working on the config
20 lines
348 B
JavaScript
20 lines
348 B
JavaScript
const {SUPPORTED_LOCALES} = require('./');
|
|
|
|
/**
|
|
* @type {import('i18next-parser').UserConfig}
|
|
*/
|
|
module.exports = {
|
|
locales: SUPPORTED_LOCALES,
|
|
|
|
keySeparator: false,
|
|
namespaceSeparator: false,
|
|
|
|
createOldCatalogs: false,
|
|
indentation: 4,
|
|
sort: true,
|
|
|
|
failOnUpdate: process.env.CI,
|
|
|
|
output: 'locales/$LOCALE.json'
|
|
};
|