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-admin/about.php

    r45926 r45932  
    2121            <?php
    2222            printf(
    23                 /* translators: %s: The current WordPress version number */
     23                /* translators: %s: The current WordPress version number. */
    2424                __( 'Welcome to WordPress&nbsp;%s' ),
    2525                $display_version
     
    3131            <?php
    3232            printf(
    33                 /* translators: %s: The current WordPress version number */
     33                /* translators: %s: The current WordPress version number. */
    3434                __( 'Congratulations on updating to WordPress %s! This update makes it easier than ever to fix your site if something goes wrong.' ),
    3535                $display_version
     
    4141            <?php
    4242            printf(
    43                 /* translators: %s: The current WordPress version number */
     43                /* translators: %s: The current WordPress version number. */
    4444                __( 'Version %s' ),
    4545                $display_version
     
    7171                    <?php
    7272                    printf(
    73                         /* translators: 1: link to the WordPress 5.1 release post */
     73                        /* translators: 1: Link to the WordPress 5.1 release post. */
    7474                        __( 'Building on <a href="%1$s">the Site Health features introduced in 5.1</a>, this release adds two new pages to help debug common configuration issues. It also adds space where developers can include debugging information for site maintainers.' ),
    7575                        __( 'https://wordpress.org/news/2019/02/betty/' )
     
    7878                    if ( current_user_can( 'install_plugins' ) ) {
    7979                        printf(
    80                             /* translators: 1: link to /wp-admin/site-health.php, 2: link to /wp-admin/site-health.php?tab=debug */
     80                            /* translators: 1: URL to Site Health Status screen, 2: URL to Site Health Info screen. */
    8181                            __( ' <a href="%1$s">Check your site status</a>, and <a href="%2$s">learn how to debug issues</a>.' ),
    8282                            admin_url( 'site-health.php' ),
     
    184184__( 'Maintenance and Security Releases' );
    185185
    186 /* translators: %s: WordPress version number */
     186/* translators: %s: WordPress version number. */
    187187__( '<strong>Version %s</strong> addressed one security issue.' );
    188 /* translators: %s: WordPress version number */
     188/* translators: %s: WordPress version number. */
    189189__( '<strong>Version %s</strong> addressed some security issues.' );
    190190
    191 /* translators: 1: WordPress version number, 2: plural number of bugs. */
     191/* translators: 1: WordPress version number, 2: Plural number of bugs. */
    192192_n_noop(
    193193    '<strong>Version %1$s</strong> addressed %2$s bug.',
     
    195195);
    196196
    197 /* translators: 1: WordPress version number, 2: plural number of bugs. Singular security issue. */
     197/* translators: 1: WordPress version number, 2: Plural number of bugs. Singular security issue. */
    198198_n_noop(
    199199    '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bug.',
     
    201201);
    202202
    203 /* translators: 1: WordPress version number, 2: plural number of bugs. More than one security issue. */
     203/* translators: 1: WordPress version number, 2: Plural number of bugs. More than one security issue. */
    204204_n_noop(
    205205    '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.',
     
    207207);
    208208
    209 /* translators: %s: Documentation URL */
     209/* translators: %s: Documentation URL. */
    210210__( 'For more information, see <a href="%s">the release notes</a>.' );
Note: See TracChangeset for help on using the changeset viewer.