@akemona-org/strapi
Version:
An open source headless CMS solution to create and manage your own API. It provides a powerful dashboard and features to make your life easier. Databases supported: MongoDB, MySQL, MariaDB, PostgreSQL, SQLite
41 lines (33 loc) • 804 B
JavaScript
;
/**
* Module dependencies
*/
// Node.js core.
const { resolve } = require('path');
const locale = require('koa-locale');
const i18n = require('koa-i18n');
/**
* Language hook
*/
module.exports = (strapi) => {
return {
/**
* Initialize the hook
*/
initialize() {
locale(strapi.app);
const { defaultLocale, modes, cookieName } = strapi.config.middleware.settings.language;
const directory = resolve(strapi.config.appPath, strapi.config.paths.config, 'locales');
strapi.app.use(
i18n(strapi.app, {
directory,
locales: strapi.config.get('middleware.settings.language.locales', []),
defaultLocale,
modes,
cookieName,
extension: '.json',
})
);
},
};
};