Solved
How to store in English in iQ Directory the answers from a survey in different languages?
Dear Qualtrics Community,
I am currently setting up a panel in Germany and France. I use the same registration survey with 2 languages (German and French).
I created Contact List Triggers on the fields that I want to store in iQ Directory: e.g. Gender.
My issue is that the answers are stored in German and French (as the answers displayed in the survey and seen by respondents).
e.g. Participant 1 = Gender = Frau | Country = DE
Participant 2 = Gender = Femme | Country = FR
How can I proceed so that the answers are stored in English iQ Directory (and not in German and French)?
I tried to change the variable names in English, this works for the survey answers stored in Reports, but not for the iQ Directory.
Many thanks for your support,
Anna
Best answer by TomG
> @annaj said:
> @TomG Many thanks for your suggestion! My survey is in German an French, but I do have an English version of the survey that I could implement as well.
> What do you mean exactly with the End of Survey message? At the moment, I display one specific depending on the language and if the participant want to join the panel or not (he has to agree on T&C to join the panel).
@annaj,
My idea won't work if you are relying on a translated End of Survey message because if you change the language to English at the end of the survey, the End of Survey message will be in English. It would be a good solution if you were redirecting or could live with a multi-lingual End of Survey page.
To implement you would add a Descriptive Text question at the end of the survey with this JS:
```
Qualtrics.SurveyEngine.addOnReady(function() {
var lang = jQuery("#Q_lang");
if(lang.val()=="EN") this.clickNextButton();
else lang.val("EN").change();
});
```
View originalLeave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.