Make WordPress Core


Ignore:
Timestamp:
09/03/2019 12:39:13 AM (5 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-featured.php

    r45604 r45932  
    3333    <footer class="entry-meta">
    3434        <?php
    35             /* translators: used between list items, there is a space after the comma */
     35            /* translators: Used between list items, there is a space after the comma. */
    3636            $tag_list = get_the_tag_list( '', __( ', ', 'twentyeleven' ) );
    3737        if ( '' != $tag_list ) {
    38             /* translators: 1: category list, 2: tag list, 3: post permalink, 4: post title */
     38            /* translators: 1: Category list, 2: Tag list, 3: Post permalink, 4: Post title. */
    3939            $utility_text = __( 'This entry was posted in %1$s and tagged %2$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyeleven' );
    4040        } else {
    41             /* translators: 1: category list, 3: post permalink, 4: post title */
     41            /* translators: 1: Category list, 3: Post permalink, 4: Post title. */
    4242            $utility_text = __( 'This entry was posted in %1$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyeleven' );
    4343        }
    4444            printf(
    4545                $utility_text,
    46                 /* translators: used between list items, there is a space after the comma */
     46                /* translators: Used between list items, there is a space after the comma. */
    4747                get_the_category_list( __( ', ', 'twentyeleven' ) ),
    4848                $tag_list,
Note: See TracChangeset for help on using the changeset viewer.