From fbbea1c8a1f3d22b623550a2877f8d025d9badb5 Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Wed, 18 Jan 2023 18:29:54 +0100 Subject: [PATCH] Configured i18next-parser settings refs https://github.com/TryGhost/Ghost/issues/15502 - prevent it from creating `_old` files - set JSON indentation to 4 spaces --- ghost/i18n/i18next-parser.config.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ghost/i18n/i18next-parser.config.js b/ghost/i18n/i18next-parser.config.js index 96ee9212483..d0486e0c739 100644 --- a/ghost/i18n/i18next-parser.config.js +++ b/ghost/i18n/i18next-parser.config.js @@ -6,6 +6,8 @@ module.exports = { keySeparator: false, namespaceSeparator: false, + createOldCatalogs: false, + indentation: 4, sort: true, output: 'locales/$LOCALE.json'