0.0.0-development • Published 1 year ago

@shawnvogt/strapi-provider-translate-gct v0.0.0-development

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

Google Cloud Translate provider for Strapi Translate Plugin

Configure the provider through the pluginOptions:

module.exports = {
  // ...
  translate: {
    enabled: true,
    config: {
      // Choose one of the available providers
      provider: 'gct',
      // Pass credentials and other options to the provider
      providerOptions: {
        // your API key - required and wil cause errors if not provided
        apiKey: 'key',
        // use custom api url - optional
        apiUrl: 'translation.googleapis.com',
      },
      // other options ...
    },
  },
  // ...
}

or use the default environment variables:

  • GCT_API_KEY - default undefined
  • GCT_API_URL - default undefined

To get an API key, follow the quickstart guide at googleapis.dev.

Limitations: