strapi-provider-translate-google-noapi
v1.0.3
Published
This is a provider for Strapi Plugin Translate that use Google Translate without requiring an API key.
Maintainers
Readme
Strapi Provider Translate Google NoApi
This is a provider for Strapi Plugin Translate that use Google Translate without requiring an API key.
Installing
$ npm strapi-provider-translate-google-noapiUsage
Configure the provider through the plugin options of strapi in config/plugins.js:
module.exports = {
// ...
translate: {
enabled: true,
config: {
provider: "google-noapi",
translatedFieldTypes: [
{ type: 'string', format: 'plain' },
{ type: 'text', format: 'plain' },
{ type: 'richtext', format: 'markdown' },
],
translateRelations: true,
},
},
// ...
};