Currently I’m using this library https://github.com/Typeform/embed/tree/main/packages/embed to show my form in a modal of our application.
We setup several languages for translations for this https://fthfj44m4m3.typeform.com/to/ggCwKD3C.
I read the documentation, I understand the translation feature works based on the language of the browser, I would like to know if there is a way to force the translated form with a query param on the iframe.
This is my current config
createWidget(this.formId, {
container: this.$refs.typeformContainer,
autoResize: true,
...this.options,
onReady: async({ formId }) => {
console.log(`Form ${formId} started`)
},
});