Make WordPress Core

Changeset 45512


Ignore:
Timestamp:
06/10/2019 01:47:32 PM (7 years ago)
Author:
SergeyBiryukov
Message:

I18N: Merge duplicate "Status" and "Info" strings on Site Health screens.

Props ramiy.
Merges [45488] to the 5.2 branch.
Fixes #47227.

Location:
branches/5.2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/5.2

  • branches/5.2/src/wp-admin/site-health.php

    r45508 r45512  
    5353        <nav class="health-check-tabs-wrapper hide-if-no-js" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>">
    5454                <a href="<?php echo esc_url( admin_url( 'site-health.php' ) ); ?>" class="health-check-tab active" aria-current="true">
    55                         <?php _e( 'Status' ); ?>
     55                        <?php
     56                        /* translators: tab heading for Site Health Status page */
     57                        _ex( 'Status', 'Site Health' );
     58                        ?>
    5659                </a>
    5760
    5861                <a href="<?php echo esc_url( admin_url( 'site-health.php?tab=debug' ) ); ?>" class="health-check-tab">
    59                         <?php _e( 'Info' ); ?>
     62                        <?php
     63                        /* translators: tab heading for Site Health Info page */
     64                        _ex( 'Info', 'Site Health' );
     65                        ?>
    6066                </a>
    6167        </nav>
Note: See TracChangeset for help on using the changeset viewer.