Ghost/ghost/i18n/i18next-parser.config.js

17 lines
293 B
JavaScript
Raw Normal View History

const {SUPPORTED_LOCALES} = require('./');
module.exports = {
locales: SUPPORTED_LOCALES,
keySeparator: false,
namespaceSeparator: false,
createOldCatalogs: false,
indentation: 4,
sort: true,
failOnUpdate: process.env.CI,
output: 'locales/$LOCALE.json'
};