Make WordPress Core

Changeset 45245


Ignore:
Timestamp:
04/18/2019 04:05:17 PM (6 years ago)
Author:
ocean90
Message:

Site Health: Provide context for tab headings to be able to distinguish them from existing strings.

See #46573.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/site-health-info.php

    r45228 r45245  
    4848    <nav class="health-check-tabs-wrapper hide-if-no-js" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>">
    4949        <a href="<?php echo esc_url( admin_url( 'site-health.php' ) ); ?>" class="health-check-tab">
    50             <?php _e( 'Status' ); ?>
     50            <?php
     51            /* translators: tab heading for Site Health Status page */
     52            _ex( 'Status', 'Site Health' );
     53            ?>
    5154        </a>
    5255
    5356        <a href="<?php echo esc_url( admin_url( 'site-health.php?tab=debug' ) ); ?>" class="health-check-tab active" aria-current="true">
    54             <?php _e( 'Info' ); ?>
     57            <?php
     58            /* translators: tab heading for Site Health Info page */
     59            _ex( 'Info', 'Site Health' );
     60            ?>
    5561        </a>
    5662    </nav>
Note: See TracChangeset for help on using the changeset viewer.