Make WordPress Core


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

    r45926 r45932  
    2525                'content' => '<p>' . __( 'This screen contains the settings that affect the display of your content.' ) . '</p>' .
    2626                        '<p>' . sprintf(
    27                                 /* translators: %s: URL to create a new page */
     27                                /* translators: %s: URL to create a new page. */
    2828                                __( 'You can choose what&#8217;s displayed on the homepage of your site. It can be posts in reverse chronological order (classic blog), or a fixed/static page. To set a static homepage, you first need to create two <a href="%s">Pages</a>. One will become the homepage, and the other will be where your posts are displayed.' ),
    2929                                'post-new.php?post_type=page'
    3030                        ) . '</p>' .
    3131                        '<p>' . sprintf(
    32                                 /* translators: %s: Documentation URL */
     32                                /* translators: %s: Documentation URL. */
    3333                                __( 'You can also control the display of your content in RSS feeds, including the maximum number of posts to display and whether to show full text or a summary. <a href="%s">Learn more about feeds</a>.' ),
    3434                                __( 'https://wordpress.org/support/article/wordpress-feeds/' )
     
    9494                <?php
    9595                printf(
    96                         /* translators: %s: URL to Pages screen */
     96                        /* translators: %s: URL to Pages screen. */
    9797                        __( 'A <a href="%s">static page</a> (select below)' ),
    9898                        'edit.php?post_type=page'
     
    105105        <?php
    106106        printf(
    107                 /* translators: %s: select field to choose the front page */
     107                /* translators: %s: Select field to choose the front page. */
    108108                __( 'Homepage: %s' ),
    109109                wp_dropdown_pages(
     
    122122        <?php
    123123        printf(
    124                 /* translators: %s: select field to choose the page for posts */
     124                /* translators: %s: Select field to choose the page for posts. */
    125125                __( 'Posts page: %s' ),
    126126                wp_dropdown_pages(
     
    166166                <?php
    167167                printf(
    168                         /* translators: %s: Documentation URL */
     168                        /* translators: %s: Documentation URL. */
    169169                        __( 'Your theme determines how content is displayed in browsers. <a href="%s">Learn more about feeds</a>.' ),
    170170                        __( 'https://wordpress.org/support/article/wordpress-feeds/' )
Note: See TracChangeset for help on using the changeset viewer.