I18N: Merge duplicate "Status" and "Info" strings on Site Health screens.
Props ramiy. Fixes #47227. git-svn-id: https://develop.svn.wordpress.org/trunk@45488 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
9172b9c16b
commit
d22572a5a5
@ -52,11 +52,17 @@ require_once( ABSPATH . 'wp-admin/admin-header.php' );
|
||||
|
||||
<nav class="health-check-tabs-wrapper hide-if-no-js" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>">
|
||||
<a href="<?php echo esc_url( admin_url( 'site-health.php' ) ); ?>" class="health-check-tab active" aria-current="true">
|
||||
<?php _e( 'Status' ); ?>
|
||||
<?php
|
||||
/* translators: tab heading for Site Health Status page */
|
||||
_ex( 'Status', 'Site Health' );
|
||||
?>
|
||||
</a>
|
||||
|
||||
<a href="<?php echo esc_url( admin_url( 'site-health.php?tab=debug' ) ); ?>" class="health-check-tab">
|
||||
<?php _e( 'Info' ); ?>
|
||||
<?php
|
||||
/* translators: tab heading for Site Health Info page */
|
||||
_ex( 'Info', 'Site Health' );
|
||||
?>
|
||||
</a>
|
||||
</nav>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user