Make WordPress Core

Ticket #39660: 39660.2.diff

File 39660.2.diff, 7.6 KB (added by xkon, 7 years ago)

Updates to TwentySixteen

  • twentyeleven/comments.php

     
    3131        <?php if ( have_comments() ) : ?>
    3232                <h2 id="comments-title">
    3333                        <?php
    34                                 printf( _n( 'One thought on &ldquo;%2$s&rdquo;', '%1$s thoughts on &ldquo;%2$s&rdquo;', get_comments_number(), 'twentyeleven' ),
    35                                         number_format_i18n( get_comments_number() ), '<span>' . get_the_title() . '</span>' );
     34                                $comments_number = get_comments_number();
     35                                if ( '1' === $comments_number ) {
     36                                        /* translators: %s: post title */
     37                                        printf( _x( 'One thought on &ldquo;%s&rdquo;', 'comments title', 'twentyeleven' ), '<span>' . get_the_title() . '</span>' );
     38                                } else {
     39                                        printf(
     40                                                /* translators: 1: number of comments, 2: post title */
     41                                                _nx(
     42                                                        '%1$s thought on &ldquo;%2$s&rdquo;',
     43                                                        '%1$s thoughts on &ldquo;%2$s&rdquo;',
     44                                                        $comments_number,
     45                                                        'comments title',
     46                                                        'twentyeleven'
     47                                                ),
     48                                                number_format_i18n( $comments_number ),
     49                                                '<span>' . get_the_title() . '</span>'
     50                                        );
     51                                }
    3652                        ?>
    3753                </h2>
    3854
  • twentyfifteen/comments.php

     
    2525        <?php if ( have_comments() ) : ?>
    2626                <h2 class="comments-title">
    2727                        <?php
    28                                 printf( _nx( 'One thought on &ldquo;%2$s&rdquo;', '%1$s thoughts on &ldquo;%2$s&rdquo;', get_comments_number(), 'comments title', 'twentyfifteen' ),
    29                                         number_format_i18n( get_comments_number() ), get_the_title() );
     28                                $comments_number = get_comments_number();
     29                                if ( '1' === $comments_number ) {
     30                                        /* translators: %s: post title */
     31                                        printf( _x( 'One thought on &ldquo;%s&rdquo;', 'comments title', 'twentyfifteen' ), get_the_title() );
     32                                } else {
     33                                        printf(
     34                                                /* translators: 1: number of comments, 2: post title */
     35                                                _nx(
     36                                                        '%1$s thought on &ldquo;%2$s&rdquo;',
     37                                                        '%1$s thoughts on &ldquo;%2$s&rdquo;',
     38                                                        $comments_number,
     39                                                        'comments title',
     40                                                        'twentyfifteen'
     41                                                ),
     42                                                number_format_i18n( $comments_number ),
     43                                                get_the_title()
     44                                        );
     45                                }
    3046                        ?>
    3147                </h2>
    3248
  • twentyfourteen/comments.php

     
    2424
    2525        <h2 class="comments-title">
    2626                <?php
    27                         printf( _n( 'One thought on &ldquo;%2$s&rdquo;', '%1$s thoughts on &ldquo;%2$s&rdquo;', get_comments_number(), 'twentyfourteen' ),
    28                                 number_format_i18n( get_comments_number() ), get_the_title() );
    29                 ?>
     27                                $comments_number = get_comments_number();
     28                                if ( '1' === $comments_number ) {
     29                                        /* translators: %s: post title */
     30                                        printf( _x( 'One thought on &ldquo;%s&rdquo;', 'comments title', 'twentyfourteen' ), get_the_title() );
     31                                } else {
     32                                        printf(
     33                                                /* translators: 1: number of comments, 2: post title */
     34                                                _nx(
     35                                                        '%1$s thought on &ldquo;%2$s&rdquo;',
     36                                                        '%1$s thoughts on &ldquo;%2$s&rdquo;',
     37                                                        $comments_number,
     38                                                        'comments title',
     39                                                        'twentyfourteen'
     40                                                ),
     41                                                number_format_i18n( $comments_number ),
     42                                                get_the_title()
     43                                        );
     44                                }
     45                        ?>
    3046        </h2>
    3147
    3248        <?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : ?>
  • twentysixteen/comments.php

     
    2626                <h2 class="comments-title">
    2727                        <?php
    2828                                $comments_number = get_comments_number();
    29                                 if ( 1 === $comments_number ) {
     29                                if ( '1' === $comments_number ) {
    3030                                        /* translators: %s: post title */
    3131                                        printf( _x( 'One thought on &ldquo;%s&rdquo;', 'comments title', 'twentysixteen' ), get_the_title() );
    3232                                } else {
  • twentyten/comments.php

     
    3232?>
    3333
    3434<?php if ( have_comments() ) : ?>
    35                         <h3 id="comments-title"><?php
    36                         printf( _n( 'One Response to %2$s', '%1$s Responses to %2$s', get_comments_number(), 'twentyten' ),
    37                         number_format_i18n( get_comments_number() ), '<em>' . get_the_title() . '</em>' );
    38                         ?></h3>
     35                        <h3 id="comments-title">
     36                        <?php
     37                                $comments_number = get_comments_number();
     38                                if ( '1' === $comments_number ) {
     39                                        /* translators: %s: post title */
     40                                        printf( _x( 'One Response to &ldquo;%s&rdquo;', 'comments title', 'twentyten' ), '<em>' . get_the_title() . '</em>' );
     41                                } else {
     42                                        printf(
     43                                                /* translators: 1: number of comments, 2: post title */
     44                                                _nx(
     45                                                        '%1$s Response to &ldquo;%2$s&rdquo;',
     46                                                        '%1$s Responses to &ldquo;%2$s&rdquo;',
     47                                                        $comments_number,
     48                                                        'comments title',
     49                                                        'twentyten'
     50                                                ),
     51                                                number_format_i18n( $comments_number ),
     52                                                '<em>' . get_the_title() . '</em>'
     53                                        );
     54                                }
     55                        ?>
     56                        </h3>
    3957
    4058<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?>
    4159                        <div class="navigation">
  • twentythirteen/comments.php

     
    2222        <?php if ( have_comments() ) : ?>
    2323                <h2 class="comments-title">
    2424                        <?php
    25                                 printf( _nx( 'One thought on &ldquo;%2$s&rdquo;', '%1$s thoughts on &ldquo;%2$s&rdquo;', get_comments_number(), 'comments title', 'twentythirteen' ),
    26                                         number_format_i18n( get_comments_number() ), '<span>' . get_the_title() . '</span>' );
     25                                $comments_number = get_comments_number();
     26                                if ( '1' === $comments_number ) {
     27                                        /* translators: %s: post title */
     28                                        printf( _x( 'One thought on &ldquo;%s&rdquo;', 'comments title', 'twentythirteen' ), '<span>' . get_the_title() . '</span>' );
     29                                } else {
     30                                        printf(
     31                                                /* translators: 1: number of comments, 2: post title */
     32                                                _nx(
     33                                                        '%1$s thought on &ldquo;%2$s&rdquo;',
     34                                                        '%1$s thoughts on &ldquo;%2$s&rdquo;',
     35                                                        $comments_number,
     36                                                        'comments title',
     37                                                        'twentythirteen'
     38                                                ),
     39                                                number_format_i18n( $comments_number ),
     40                                                '<span>' . get_the_title() . '</span>'
     41                                        );
     42                                }
    2743                        ?>
    2844                </h2>
    2945
  • twentytwelve/comments.php

     
    2828        <?php if ( have_comments() ) : ?>
    2929                <h2 class="comments-title">
    3030                        <?php
    31                                 printf( _n( 'One thought on &ldquo;%2$s&rdquo;', '%1$s thoughts on &ldquo;%2$s&rdquo;', get_comments_number(), 'twentytwelve' ),
    32                                         number_format_i18n( get_comments_number() ), '<span>' . get_the_title() . '</span>' );
     31                                $comments_number = get_comments_number();
     32                                if ( '1' === $comments_number ) {
     33                                        /* translators: %s: post title */
     34                                        printf( _x( 'One thought on &ldquo;%s&rdquo;', 'comments title', 'twentytwelve' ), '<span>' . get_the_title() . '</span>' );
     35                                } else {
     36                                        printf(
     37                                                /* translators: 1: number of comments, 2: post title */
     38                                                _nx(
     39                                                        '%1$s thought on &ldquo;%2$s&rdquo;',
     40                                                        '%1$s thoughts on &ldquo;%2$s&rdquo;',
     41                                                        $comments_number,
     42                                                        'comments title',
     43                                                        'twentytwelve'
     44                                                ),
     45                                                number_format_i18n( $comments_number ),
     46                                                '<span>' . get_the_title() . '</span>'
     47                                        );
     48                                }
    3349                        ?>
    3450                </h2>
    3551