soupette ec5f4e2e96 Update documentation about language customisation
Signed-off-by: soupette <cyril.lpz@gmail.com>
2020-04-22 14:01:09 +02:00

18 lines
536 B
JavaScript

/**
* i18n.js
*
* This will setup the i18n language files and locale data for your plugin.
*
*/
// NOTE TO PLUGINS DEVELOPERS:
// If you modify this file you also need to update the documentation accordingly
// Here's the file: strapi/docs/3.0.0-beta.x/admin-panel/customization.md#customize-the-strapi-admin-package
// IF THE DOC IS NOT UPDATED THE PULL REQUEST WILL NOT BE MERGED
import translationMessages from './translations';
const languages = Object.keys(translationMessages);
export { languages, translationMessages };