Hi there 👋
I'm using strapi-plugin-translate with the DeepL provider and noticed that the enable_beta_languages option from the DeepL API is not currently supported in strapi-provider-translate-deepl.
I tried adding the following to my plugin config:
providerOptions: {
apiKey: 'my-key',
apiUrl: 'https://api-free.deepl.com',
apiOptions: {
enable_beta_languages: true,
},
}
However, it seems this parameter is not passed to the DeepL client internally. As a result, beta languages like Hindi are not accessible, and translation attempts fail with errors like:
Code
Translation of entity from en to hi failed
Feature request
Could you please add support for forwarding apiOptions (or at least enable_beta_languages) to the DeepL client when initializing the provider? This would allow users to access beta languages and other advanced DeepL features.
Hi there 👋
I'm using strapi-plugin-translate with the DeepL provider and noticed that the enable_beta_languages option from the DeepL API is not currently supported in strapi-provider-translate-deepl.
I tried adding the following to my plugin config:
However, it seems this parameter is not passed to the DeepL client internally. As a result, beta languages like Hindi are not accessible, and translation attempts fail with errors like:
Code
Translation of entity from en to hi failed
Feature request
Could you please add support for forwarding apiOptions (or at least enable_beta_languages) to the DeepL client when initializing the provider? This would allow users to access beta languages and other advanced DeepL features.