Ghost/ghost/i18n/lib/i18n.js
Daniel Lockyer c604255ace
Updated list of supported locales
refs https://github.com/TryGhost/Team/issues/2795

- adds in Finnish and Albanian locales as they were added via merged PR earlier
2023-05-30 12:07:01 +02:00

73 lines
1.2 KiB
JavaScript

const i18next = require('i18next');
const SUPPORTED_LOCALES = [
'af',
'bg',
'ca',
'cs',
'da',
'de',
'en',
'eo',
'es',
'fi',
'fr',
'hu',
'id',
'it',
'ko',
'mn',
'nl',
'no',
'pl',
'pt',
'pt-BR',
'ro',
'ru',
'si',
'sl',
'sq',
'sr',
'sv',
'tr',
'uk',
'uz',
'vi',
'zh'
];
/**
* @param {string} [lng]
* @param {'ghost'|'portal'|'test'} ns
*/
module.exports = (lng = 'en', ns = 'portal') => {
const i18nextInstance = i18next.createInstance();
i18nextInstance.init({
lng,
// allow keys to be phrases having `:`, `.`
nsSeparator: false,
keySeparator: false,
// if the value is an empty string, return the key
returnEmptyString: false,
// do not load a fallback
fallbackLng: false,
ns: ns,
defaultNS: ns,
resources: SUPPORTED_LOCALES.reduce((acc, locale) => {
acc[locale] = {
[ns]: require(`../locales/${locale}/${ns}.json`)
};
return acc;
}, {})
});
return i18nextInstance;
};
module.exports.SUPPORTED_LOCALES = SUPPORTED_LOCALES;