From 7435b18c85e342405f26fceed40c7299248e90dc Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Mon, 10 Apr 2023 13:55:38 +0200 Subject: [PATCH] Added support for new locales refs https://github.com/TryGhost/Team/issues/2795 - PRs for these locales were merged this morning so we need this to enable the languages --- ghost/i18n/lib/i18n.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ghost/i18n/lib/i18n.js b/ghost/i18n/lib/i18n.js index 5c4600cbeb..69660dff30 100644 --- a/ghost/i18n/lib/i18n.js +++ b/ghost/i18n/lib/i18n.js @@ -2,6 +2,7 @@ const i18next = require('i18next'); const SUPPORTED_LOCALES = [ 'af', + 'bg', 'ca', 'cs', 'de', @@ -15,7 +16,9 @@ const SUPPORTED_LOCALES = [ 'nl', 'pl', 'pt-br', + 'sl', 'sv', + 'tr', 'vi' ];