@shawnvogt/strapi-provider-translate-gct

0.0.0-development • Public • Published

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:

/@shawnvogt/strapi-provider-translate-gct/

    Package Sidebar

    Install

    npm i @shawnvogt/strapi-provider-translate-gct

    Weekly Downloads

    3

    Version

    0.0.0-development

    License

    MIT

    Unpacked Size

    24.7 kB

    Total Files

    11

    Last publish

    Collaborators

    • shawnvogt