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

    r45609 r45932  
    2828                <?php
    2929                if ( is_day() ) {
    30                     /* translators: %s: date */
     30                    /* translators: %s: Date. */
    3131                    printf( __( 'Daily Archives: %s', 'twentytwelve' ), '<span>' . get_the_date() . '</span>' );
    3232                } elseif ( is_month() ) {
    33                     /* translators: %s: date */
     33                    /* translators: %s: Date. */
    3434                    printf( __( 'Monthly Archives: %s', 'twentytwelve' ), '<span>' . get_the_date( _x( 'F Y', 'monthly archives date format', 'twentytwelve' ) ) . '</span>' );
    3535                } elseif ( is_year() ) {
    36                     /* translators: %s: date */
     36                    /* translators: %s: Date. */
    3737                    printf( __( 'Yearly Archives: %s', 'twentytwelve' ), '<span>' . get_the_date( _x( 'Y', 'yearly archives date format', 'twentytwelve' ) ) . '</span>' );
    3838                } else {
Note: See TracChangeset for help on using the changeset viewer.