Making WordPress.org

Ticket #3156: 3156.2.patch

File 3156.2.patch, 1.2 KB (added by mp518, 7 years ago)

New

  • comments.php

     
    3232
    3333<?php if ( have_comments() ) : ?>
    3434                        <h3 id="comments-title"><?php
    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 &ldquo;%2$s&rdquo;', '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 &ldquo;%2$s&rdquo;', '%1$s Response to &ldquo;%2$s&rdquo;', $comments_number, 'comments title', 'wordcamporg'
     43                                    ), number_format_i18n($comments_number), '<span>' . get_the_title() . '</span>'
     44                            );
     45                        }
    3746                        ?></h3>
    3847
    3948<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?>