Make WordPress Core

Changeset 45488


Ignore:
Timestamp:
06/01/2019 10:09:42 PM (5 years ago)
Author:
SergeyBiryukov
Message:

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

Props ramiy.
Fixes #47227.

File:
1 edited

Legend:

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

    r45201 r45488  
    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.