1f32a7be8a
refs https://github.com/TryGhost/Ghost/issues/15502 - this will test if we have strings that aren't present in the JSON files in CI, so we don't miss out on translations
17 lines
293 B
JavaScript
17 lines
293 B
JavaScript
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'
|
|
};
|