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

    r45609 r45932  
    2929                    <?php
    3030                    if ( is_day() ) {
    31                         /* translators: %s: date */
     31                        /* translators: %s: Date. */
    3232                        printf( __( 'Daily Archives: %s', 'twentyfourteen' ), get_the_date() );
    3333                    } elseif ( is_month() ) {
    34                         /* translators: %s: date */
     34                        /* translators: %s: Date. */
    3535                        printf( __( 'Monthly Archives: %s', 'twentyfourteen' ), get_the_date( _x( 'F Y', 'monthly archives date format', 'twentyfourteen' ) ) );
    3636                    } elseif ( is_year() ) {
    37                         /* translators: %s: date */
     37                        /* translators: %s: Date. */
    3838                        printf( __( 'Yearly Archives: %s', 'twentyfourteen' ), get_the_date( _x( 'Y', 'yearly archives date format', 'twentyfourteen' ) ) );
    3939                    } else {
Note: See TracChangeset for help on using the changeset viewer.