I was trying to change the text through translation but it didn't work. so
the following worked..
add_filter( 'gettext_lds_skins',function( $button_text = '', $post_id =0 ){
$button_text = "Check ";
return $button_text;
}, 10, 2 );
Now why this is hidden as a hook, filter from documentation I don't know