1.0.1 • Published 5 months ago

strapi-provider-translate-link-gct v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months 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: "link-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:

1.0.1

5 months ago

1.0.0

5 months ago