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

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