Changeset 33079 for trunk/src/wp-includes/theme-compat/comments.php
- Timestamp:
- 07/04/2015 12:49:52 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/theme-compat/comments.php
r33042 r33079 28 28 if ( 1 == get_comments_number() ) { 29 29 /* translators: %s: post title */ 30 printf( __( 'One Response to %s' ), '“' . get_the_title() . '”' );30 printf( __( 'One response to %s' ), '“' . get_the_title() . '”' ); 31 31 } else { 32 32 /* translators: 1: number of comments, 2: post title */ 33 printf( _n( '%1$s Response to %2$s', '%1$s Responses to %2$s', get_comments_number() ),33 printf( _n( '%1$s response to %2$s', '%1$s responses to %2$s', get_comments_number() ), 34 34 number_format_i18n( get_comments_number() ), '“' . get_the_title() . '”' ); 35 35 }
Note: See TracChangeset
for help on using the changeset viewer.