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/archive.php

    r45604 r45932  
    2424                        <?php
    2525                        if ( is_day() ) {
    26                             /* translators: %s: date */
     26                            /* translators: %s: Date. */
    2727                            printf( __( 'Daily Archives: %s', 'twentyeleven' ), '<span>' . get_the_date() . '</span>' );
    2828                        } elseif ( is_month() ) {
    29                             /* translators: %s: date */
     29                            /* translators: %s: Date. */
    3030                            printf( __( 'Monthly Archives: %s', 'twentyeleven' ), '<span>' . get_the_date( _x( 'F Y', 'monthly archives date format', 'twentyeleven' ) ) . '</span>' );
    3131                        } elseif ( is_year() ) {
    32                             /* translators: %s: date */
     32                            /* translators: %s: Date. */
    3333                            printf( __( 'Yearly Archives: %s', 'twentyeleven' ), '<span>' . get_the_date( _x( 'Y', 'yearly archives date format', 'twentyeleven' ) ) . '</span>' );
    3434                        } else {
Note: See TracChangeset for help on using the changeset viewer.