Manage your multilingual content with ease with Localazy
Strapi localization doesn't have to be a headache! Install the Strapi localization plugin and seamlessly translate your content into multiple languages with Localazy.
Learn more in the Strapi + Localazy tutorial.
The plugin is available on NPM. You can also follow the installation commands located in your Strapi project Marketplace. This is the recommended approach.
npm install @localazy/strapi-plugin
Besides installing the plugin via npm
, you can also use it in a project locally. Assuming you have a (clean) Strapi project set up, do:
./src/plugin/localazy
folder of your project (path from project root)../config/plugins.js
file (path from project root)../config/plugins.js
file:module.exports = {
localazy: {
enabled: true,
resolve: "./src/plugins/localazy",
config: {
default: () => {},
validator: () => {},
},
},
};
To run tests, run npm run test
command. To watch tests, run npm run test:watch
command.
npm install @localazy/strapi-plugin