diff -r 177826044cd9 -r 372f2766ea20 wp/wp-content/themes/twentythirteen/comments.php --- a/wp/wp-content/themes/twentythirteen/comments.php Mon Oct 14 18:28:13 2019 +0200 +++ b/wp/wp-content/themes/twentythirteen/comments.php Mon Oct 14 18:30:03 2019 +0200 @@ -23,10 +23,20 @@

' . get_the_title() . '' + /* translators: %s: The post title. */ + _x( 'One thought on “%s”', 'comments title', 'twentythirteen' ), + '' . get_the_title() . '' ); + } else { + printf( + /* translators: %1$s: The number of comments. %2$s: The post title. */ + _nx( '%1$s thought on “%2$s”', '%1$s thoughts on “%2$s”', get_comments_number(), 'comments title', 'twentythirteen' ), + number_format_i18n( get_comments_number() ), + '' . get_the_title() . '' + ); + } ?>

@@ -45,7 +55,7 @@ 1 && get_option( 'page_comments' ) ) : - ?> + ?>