- Timestamp:
- 10/27/2020 01:58:37 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentytwentyone/comments.php
r49247 r49320 33 33 <h2 class="comments-title"> 34 34 <?php if ( '1' === $twenty_twenty_one_comment_count ) : ?> 35 <?php esc_html_e( '1 Reply', 'twentytwentyone' ); ?>35 <?php esc_html_e( '1 Comment', 'twentytwentyone' ); ?> 36 36 <?php else : ?> 37 37 <?php 38 38 printf( 39 39 /* translators: %s: comment count number. */ 40 esc_html( _nx( '%s Reply', '%s Replies', $twenty_twenty_one_comment_count, 'comments title', 'twentytwentyone' ) ),40 esc_html( _nx( '%s Comment', '%s Comments', $twenty_twenty_one_comment_count, 'comments title', 'twentytwentyone' ) ), 41 41 esc_html( number_format_i18n( $twenty_twenty_one_comment_count ) ) 42 42 ); … … 86 86 array( 87 87 'logged_in_as' => null, 88 'title_reply' => esc_html__( 'Leave a reply', 'twentytwentyone' ),88 'title_reply' => esc_html__( 'Leave a comment', 'twentytwentyone' ), 89 89 'title_reply_before' => '<h2 id="reply-title" class="comment-reply-title">', 90 90 'title_reply_after' => '</h2>',
Note: See TracChangeset
for help on using the changeset viewer.