Hi it's a verry nice plugin !
I have looked the forum, found this :
add_filter("gform_submit_button", "form_submit_button");
function form_submit_button($button){
return "<input type='submit' value='My new button' />";
}
add_filter("gform_name_first", change_first_name);
function change_first_name($sublabel){
return "Voorname";
}
Following is the list of all available sub-label filters:
gform_address_street
gform_address_street2
gform_address_city
gform_address_state
gform_address_country
gform_name_prefix
gform_name_first
gform_name_last
gform_name_suffix
----------
But if I have a text field which the label name is Money, for example and I wanted to translate it in French (Argent), how would I do it ? Because the text input field Money is not a basic field as name_prefix...
Have a nice day !