diff -r 490d5cc509ed -r cf61fcea0001 wp/wp-content/themes/twentytwelve/comments.php --- a/wp/wp-content/themes/twentytwelve/comments.php Tue Jun 09 11:14:17 2015 +0000 +++ b/wp/wp-content/themes/twentytwelve/comments.php Mon Oct 14 17:39:30 2019 +0200 @@ -17,8 +17,9 @@ * the visitor has not yet entered the password we will * return early without loading the comments. */ -if ( post_password_required() ) +if ( post_password_required() ) { return; +} ?>
@@ -28,13 +29,22 @@

' . get_the_title() . '' ); + printf( + _n( 'One thought on “%2$s”', '%1$s thoughts on “%2$s”', get_comments_number(), 'twentytwelve' ), + number_format_i18n( get_comments_number() ), '' . get_the_title() . '' + ); ?>

    - 'twentytwelve_comment', 'style' => 'ol' ) ); ?> + 'twentytwelve_comment', + 'style' => 'ol', + ) + ); +?>
1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?> @@ -49,12 +59,13 @@ /* If there are no comments and comments are closed, let's leave a note. * But we only want the note on posts and pages that had comments in the first place. */ - if ( ! comments_open() && get_comments_number() ) : ?> -

+ if ( ! comments_open() && get_comments_number() ) : + ?> +

-
\ No newline at end of file +