35 | | printf( _n( 'One Response to %2$s', '%1$s Responses to %2$s', get_comments_number(), 'wordcamporg' ), |
36 | | number_format_i18n( get_comments_number() ), '<em>' . get_the_title() . '</em>' ); |
| 35 | if (1 == $comments_number) { |
| 36 | /* translators: %s: post title */ |
| 37 | printf(_x('One Response to “%2$s”', 'comments title', 'wordcamporg'), '<span>' . get_the_title() . '</span>'); |
| 38 | } else { |
| 39 | printf( |
| 40 | /* translators: 1: number of comments, 2: post title */ |
| 41 | _nx( |
| 42 | '%1$s Response to “%2$s”', '%1$s Response to “%2$s”', $comments_number, 'comments title', 'wordcamporg' |
| 43 | ), number_format_i18n($comments_number), '<span>' . get_the_title() . '</span>' |
| 44 | ); |
| 45 | } |