Hey, is there any way to translate the text underneath a honeypot form field? It seems to come from form_display.php, line 771:
private static function get_honeypot_field($form){
$max_id = self::get_max_field_id($form);
$labels = self::get_honeypot_labels();
return array("type" => "honeypot", "label" => $labels[rand(0, 3)], "id" => $max_id + 1, "cssClass" => "gform_validation_container", "description" => "This field is for validation purposes and should be left unchanged.");
}
Shouldn't it be using __("blah","gravityforms") to make it translatable?