2016-08-18 11:41:13 +02:00
|
|
|
/**
|
|
|
|
* i18n.js
|
|
|
|
*
|
2016-10-13 20:53:33 +02:00
|
|
|
* This will setup the i18n language files and locale data for your plugin.
|
2016-08-18 11:41:13 +02:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2020-03-06 13:33:07 +01:00
|
|
|
// 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
|
|
|
|
|
2020-04-21 18:40:20 +02:00
|
|
|
import translationMessages from './translations';
|
2016-08-18 11:41:13 +02:00
|
|
|
|
2020-04-21 18:40:20 +02:00
|
|
|
const languages = Object.keys(translationMessages);
|
2019-04-24 14:32:20 +02:00
|
|
|
|
|
|
|
export { languages, translationMessages };
|