The best way to change the wording “Leave a reply” is to use the filter.
To make it say “Submit a comment:”, place this code in your functions.php file:
function comment_reform ($arg) {
$arg['title_reply'] = __('Submit a comment:');
return $arg;
}
add_filter('comment_form_defaults','comment_reform');