Help's ! Soft Rejection- Escaping Issues

Hi,
`I recently got soft rejection on escaping different strings and variables.
the_content(sprintf(
wp_kses(
/* translators: %s: Name of current post. Only visible to screen readers */
__(‘Continue reading “%s”’, ‘hasten’),
array(
‘span’ => array(
‘class’ => array(),
),
)
),
get_the_title()
));

Reviewer show an issue on this line. So what is the main issues on it, i cant find a solution?

And please help me on escaping the variables within array.

the_posts_pagination(
array(
‘mid_size’ => 2,
‘prev_text’ => __( <i class="fa fa-angle-left"></i>, ‘hasten’ ),
‘next_text’ => __( <i class="fa fa-angle-left"></i>, ‘hasten’ ),
) );`