Make WordPress Core


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

    r45768 r45932  
    290290    $font_url = '';
    291291    /*
    292      * Translators: If there are characters in your language that are not supported
     292     * translators: If there are characters in your language that are not supported
    293293     * by Lato, translate this to 'off'. Do not translate into your own language.
    294294     */
     
    506506                <a class="button contributor-posts-link" href="<?php echo esc_url( get_author_posts_url( $contributor_id ) ); ?>">
    507507                    <?php
    508                     /* translators: %d: post count */
     508                    /* translators: %d: Post count. */
    509509                    printf( _n( '%d Article', '%d Articles', $post_count, 'twentyfourteen' ), $post_count );
    510510                    ?>
     
    627627    // Add a page number if necessary.
    628628    if ( ( $paged >= 2 || $page >= 2 ) && ! is_404() ) {
    629         /* translators: %s: page number */
     629        /* translators: %s: Page number. */
    630630        $title = "$title $sep " . sprintf( __( 'Page %s', 'twentyfourteen' ), max( $paged, $page ) );
    631631    }
Note: See TracChangeset for help on using the changeset viewer.