Make WordPress Core


Ignore:
Timestamp:
09/03/2019 12:39:13 AM (6 years ago)
Author:
SergeyBiryukov
Message:

I18N: Capitalize translator comments consistently, add trailing punctuation.

Includes minor code layout fixes.

See #44360.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentyeleven/content-quote.php

    r45604 r45932  
    4848            <?php $show_sep = false; ?>
    4949            <?php
    50                 /* translators: used between list items, there is a space after the comma */
     50                /* translators: Used between list items, there is a space after the comma. */
    5151                $categories_list = get_the_category_list( __( ', ', 'twentyeleven' ) );
    5252            if ( $categories_list ) :
     
    5454            <span class="cat-links">
    5555                <?php
    56                 /* translators: 1: CSS classes, 2: list of categories */
     56                /* translators: 1: CSS classes, 2: List of categories. */
    5757                printf( __( '<span class="%1$s">Posted in</span> %2$s', 'twentyeleven' ), 'entry-utility-prep entry-utility-prep-cat-links', $categories_list );
    5858                $show_sep = true;
     
    6161            <?php endif; // End if categories ?>
    6262            <?php
    63                 /* translators: used between list items, there is a space after the comma */
     63                /* translators: Used between list items, there is a space after the comma. */
    6464                $tags_list = get_the_tag_list( '', __( ', ', 'twentyeleven' ) );
    6565            if ( $tags_list ) :
     
    7070            <span class="tag-links">
    7171                <?php
    72                 /* translators: 1: CSS classes, 2: list of tags */
     72                /* translators: 1: CSS classes, 2: List of tags. */
    7373                printf( __( '<span class="%1$s">Tagged</span> %2$s', 'twentyeleven' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list );
    7474                $show_sep = true;
Note: See TracChangeset for help on using the changeset viewer.