Escape translations on comments.php.

See #737.
This commit is contained in:
Fränk Klein 2015-05-05 12:37:07 +02:00
parent 89c2d8e4dc
commit 062105ac9d
1 changed files with 5 additions and 5 deletions

View File

@ -26,7 +26,7 @@ if ( post_password_required() ) {
<h2 class="comments-title"> <h2 class="comments-title">
<?php <?php
printf( printf(
_nx( 'One thought on &ldquo;%2$s&rdquo;', '%1$s thoughts on &ldquo;%2$s&rdquo;', get_comments_number(), 'comments title', '_s' ), esc_html( _nx( 'One thought on &ldquo;%2$s&rdquo;', '%1$s thoughts on &ldquo;%2$s&rdquo;', get_comments_number(), 'comments title', '_s' ) ),
number_format_i18n( get_comments_number() ), number_format_i18n( get_comments_number() ),
'<span>' . get_the_title() . '</span>' '<span>' . get_the_title() . '</span>'
); );
@ -38,8 +38,8 @@ if ( post_password_required() ) {
<h2 class="screen-reader-text"><?php esc_html_e( 'Comment navigation', '_s' ); ?></h2> <h2 class="screen-reader-text"><?php esc_html_e( 'Comment navigation', '_s' ); ?></h2>
<div class="nav-links"> <div class="nav-links">
<div class="nav-previous"><?php previous_comments_link( __( 'Older Comments', '_s' ) ); ?></div> <div class="nav-previous"><?php previous_comments_link( esc_html__( 'Older Comments', '_s' ) ); ?></div>
<div class="nav-next"><?php next_comments_link( __( 'Newer Comments', '_s' ) ); ?></div> <div class="nav-next"><?php next_comments_link( esc_html__( 'Newer Comments', '_s' ) ); ?></div>
</div><!-- .nav-links --> </div><!-- .nav-links -->
</nav><!-- #comment-nav-above --> </nav><!-- #comment-nav-above -->
@ -59,8 +59,8 @@ if ( post_password_required() ) {
<h2 class="screen-reader-text"><?php esc_html_e( 'Comment navigation', '_s' ); ?></h2> <h2 class="screen-reader-text"><?php esc_html_e( 'Comment navigation', '_s' ); ?></h2>
<div class="nav-links"> <div class="nav-links">
<div class="nav-previous"><?php previous_comments_link( __( 'Older Comments', '_s' ) ); ?></div> <div class="nav-previous"><?php previous_comments_link( esc_html__( 'Older Comments', '_s' ) ); ?></div>
<div class="nav-next"><?php next_comments_link( __( 'Newer Comments', '_s' ) ); ?></div> <div class="nav-next"><?php next_comments_link( esc_html__( 'Newer Comments', '_s' ) ); ?></div>
</div><!-- .nav-links --> </div><!-- .nav-links -->
</nav><!-- #comment-nav-below --> </nav><!-- #comment-nav-below -->