GravityForms doesn't have a filter for the * required marker, so this JS changes it.
jQuery(document).ready(function($) { $("span.gfield_required").html(function(index, text) { return text.replace("*", "Required"); }); });