- Support creating / edit new translations
- Directly plugged to Strapi internationalization
- No configuration needed
- Import/export csv feature
- Seamless UI integration with Strapi Design System
Install the plugin in your Strapi project
npm install strapi-translations
After installation, enable the plugin in your config file
// config/plugins.js
module.exports = () => ({
'strapi-translations': {
enabled: true,
},
// .. other plugins
});
The plugin should now appear in the Settings section of your Strapi app
This plugin allows your contributors to handle "cold" translations for your website. It means that you can completely leverage 100% of translations in Strapi.
For developers, the plugin exposes a public API that allows you to create a JSON translation file that can be used in any of your frontend during build process.
The api is available here :
/api/strapi-translations/public/translation/[locale]
the locale parameter correspond to the Strapi locale configured
You can use github issues to raise an issue about this plugin
Feel free to fork and make a pull request of this plugin !