Change Label of Comment Submit Button
Use the snippet below to change the label of the comment submit button:
add_filter( 'comment_form_defaults', 'wpkb_comment_submit_button' );
function wpkb_comment_submit_button( $defaults ) {
$defaults['label_submit'] = __( 'Submit', 'custom' );
return $defaults;
}