0 votes
in SoSci Survey (English) by s219203 (310 points)
closed by s219203

I would like for the Next button on my last page (before the "end page") to show a different text. My survey is in French and English, so I need to translate my new text as well. I want to keep the "Next button" as is for the rest of the survey.

I've played around with option() and buttonToPage() but am unable to change both languages. Any help appreciated!

closed with the note: Answered

1 Answer

+1 vote
by SoSci Survey (304k points)
selected by s219203
 
Best answer

Please try a little PHP filter with getLanguage()

if (getLanguage() == 'fre') {
  option('nextbutton', 'Soumettre des réponses');
} else {
  option('nextbutton', 'Submit responses');
}
by s219203 (310 points)
Ah! Wonderful! I knew I was close!
Many thanks.

Willkommen im Online-Support von SoSci Survey.

Hier bekommen Sie schnelle und fundierte Antworten von anderen Projektleitern und direkt von SoSci Survey.

→ Eine Frage stellen


Welcome to the SoSci Survey online support.

Simply ask a question to quickly get answers from other professionals, and directly from SoSci Survey.

→ Ask a Question

...