Hello!
I have a site that is using wix multilingual. I have got labels and text that change using code, could someone please advise me on the coding to change the labels depending on the language selected.
Part of the code is this:
function loginCheck(){
if (wixUsers.currentUser.loggedIn) {
$w("#btnLogin").label = "Log Out";
$w("#group2").show();
$w('#group2').expand();
setTimeout(getUserInfo,200);
} else {
$w("#btnLogin").label = "Register / Log in";
$w("#txtWelcome").text = "Please see the agenda for more information about the content of the 2 days, and fill in your details to register. Thank you. ";
$w("#group2").hide();
$w('#group2').collapse();
}
}
I would like to be able to change the text in #txtWelcome depending on which language is selected (in this case English or Welsh)
Thank you in advance for your help!