mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 13:54:35 +03:00
0273ba2066
- I didn't realise how annoying this would be so this commit disables it
39 lines
899 B
JavaScript
39 lines
899 B
JavaScript
const i18next = require('i18next');
|
|
|
|
const SUPPORTED_LOCALES = ['en', 'nl'];
|
|
|
|
/**
|
|
* @param {string} [lng]
|
|
* @param {'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;
|