From 634b3c9cea24f07810229221a149827fb43f2239 Mon Sep 17 00:00:00 2001 From: Sheogorath Date: Tue, 5 Jun 2018 01:29:27 +0200 Subject: Fix i18n writing locale files in production This commit should prevent the i18n module from adding missing translations to the local files in setups that are not for development. This way we keep the directory clean and idempotent. Signed-off-by: Sheogorath --- lib/config/index.js | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib/config/index.js') diff --git a/lib/config/index.js b/lib/config/index.js index 484301c4..7853dbad 100644 --- a/lib/config/index.js +++ b/lib/config/index.js @@ -102,6 +102,9 @@ config.isSAMLEnable = config.saml.idpSsoUrl config.isOAuth2Enable = config.oauth2.clientID && config.oauth2.clientSecret config.isPDFExportEnable = config.allowPDFExport +// Only update i18n files in development setups +config.updateI18nFiles = (env === Environment.development) + // merge legacy values let keys = Object.keys(config) const uppercase = /[A-Z]/ -- cgit v1.2.3