Changeset 44562 for trunk/src/wp-content/themes/twentytwelve/comments.php
- Timestamp:
- 01/11/2019 06:03:46 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentytwelve/comments.php
r43571 r44562 30 30 <h2 class="comments-title"> 31 31 <?php 32 if ( 1 === get_comments_number() ) { 32 33 printf( 33 _n( 'One thought on “%2$s”', '%1$s thoughts on “%2$s”', get_comments_number(), 'twentytwelve' ), 34 /* translators: %s: The post title. */ 35 __( 'One thought on “%s”', 'twentytwelve' ), 36 '<span>' . get_the_title() . '</span>' 37 ); 38 } else { 39 printf( 40 /* translators: %1$s: The number of comments. %2$s: The post title. */ 41 _n( '%1$s thought on “%2$s”', '%1$s thoughts on “%2$s”', get_comments_number(), 'twentytwelve' ), 34 42 number_format_i18n( get_comments_number() ), 35 43 '<span>' . get_the_title() . '</span>' 36 44 ); 45 } 37 46 ?> 38 47 </h2>
Note: See TracChangeset
for help on using the changeset viewer.