In the Last Soft Rejection we got this issue Please Help us to Solve this issue Thanks in Advance
ISSUE :
It’s possible for translators to sneak HTML and JS into translation
files or even just inadvertently mess something up. So, it’s good
practice to simply escape them.
No HTML:
esc_html__( ‘String’, ‘wp-crown’ );
esc_html_e( ‘String’, ‘wp-crown’ );
Some HTML:
wp_kses( __( ‘String something’, ‘wp-crown’ ), $allowed_html_array );