Hello there,
my problem is that I can't change the primary validation error message within my different languages forms. It is only possible to customize the validation message on a field.
Searching for this problem, I found this function in order to change the primary validation error message in general, but not for different language forms:
add_filter("gform_validation_message", "change_message", 10, 2);
function change_message($message, $form){
return '<div class="validation_error"> Your Error message here </div>';
}
And now I wonder, if there is an elegant way to improve this function with a multi-language-aspect. ;)