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/site-health.php

    r45507 r45932  
    5454        <a href="<?php echo esc_url( admin_url( 'site-health.php' ) ); ?>" class="health-check-tab active" aria-current="true">
    5555            <?php
    56             /* translators: tab heading for Site Health Status page */
     56            /* translators: Tab heading for Site Health Status page. */
    5757            _ex( 'Status', 'Site Health' );
    5858            ?>
     
    6161        <a href="<?php echo esc_url( admin_url( 'site-health.php?tab=debug' ) ); ?>" class="health-check-tab">
    6262            <?php
    63             /* translators: tab heading for Site Health Info page */
     63            /* translators: Tab heading for Site Health Info page. */
    6464            _ex( 'Info', 'Site Health' );
    6565            ?>
     
    9999            <h3 class="site-health-issue-count-title">
    100100                <?php
    101                     /* translators: %s: number of critical issues found */
     101                    /* translators: %s: Number of critical issues found. */
    102102                    printf( _n( '%s Critical issue', '%s Critical issues', 0 ), '<span class="issue-count">0</span>' );
    103103                ?>
     
    110110            <h3 class="site-health-issue-count-title">
    111111                <?php
    112                     /* translators: %s: number of recommended improvements */
     112                    /* translators: %s: Number of recommended improvements. */
    113113                    printf( _n( '%s Recommended improvement', '%s Recommended improvements', 0 ), '<span class="issue-count">0</span>' );
    114114                ?>
     
    129129        <h3 class="site-health-issue-count-title">
    130130            <?php
    131                 /* translators: %s: number of items with no issues */
     131                /* translators: %s: Number of items with no issues. */
    132132                printf( _n( '%s Item with no issues detected', '%s Items with no issues detected', 0 ), '<span class="issue-count">0</span>' );
    133133            ?>
Note: See TracChangeset for help on using the changeset viewer.