Hi, we have a single Laserfiche form where the language can be changed using a querystring parameter, however we are struggling with replacing the validation messages with the relevant language. For example, if the form is in simplified Chinese and a group of fields is set to required, if the field does not get filled in than the validation message 'Please fill out this field' should be replaced by the simplified Chinese version entirely.
So far we have tried the following code but the text does not get changed.
$('#Field118').siblings('.ws-errorbox').find('.ws-errormessage').text("请填写");
Also ideally we would like to replace all the validation message with a single generic message rather than having to specify each field ID as per the above code. Can anyone point me in the right direction? Thanks