Hi,
I am looking for a way to change the submit-button-text of my test.
The test has a Dutch and an English version.
When I searched the forum, I found the following code (and other variations) that work perfectly when put in template.js:
$(document).ready(function(){
var submitText = 'Next';
$('#movesubmitbtn .ui-button-text').text(submitText);
});
But then it's changed to "Next" also in the Dutch version.
I also found topics about changing translations for other languages, but it seemed difficult/timeconsuming (downloading a programme and adjust a language-file I don't really understand where to find), so I was wondering if there is another way.
I thought about an adjustment in the code with something like,
if (lang='en') show the submitText, else show another text.
But I do not really know how these codes work.
I really hope somebody can help me out
mstolk