Hi,
When we program a survey that will be shown in multiple languages, we usually set up a question to ask which language the respondent wants to take the survey in, for example we would have a question called "Language" asking if the respondent wants to take the survey in English or French.
Then for all of the responses for subsequent questions, we'll write Perl code like below to display the English or French response based on the answer to "Language".
[% Begin Unverified Perl
if (GETVALUE("Language") == 1){
return "Yes";
} elsif (GETVALUE("Language") == 2){
return "Oui";
}
End Unverified %]
My question is, is there a built-in feature in Lighthouse to show responses in different languages? If not, does anyone know of a way to automate this or know of any more efficient ways of running surveys in multiple languages?
We've already tried making separate studies for each language, but usually our clients will create studies with different questions and responses for different regions, so this makes combining the data later more difficult. Thanks in advance.