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

See #46573.
Built from https://develop.svn.wordpress.org/trunk@45245


git-svn-id: http://core.svn.wordpress.org/trunk@45054 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Dominik Schilling 2019-04-18 16:06:51 +00:00
parent bfc2be39e6
commit 3e6183c69c
2 changed files with 9 additions and 3 deletions

View File

@ -47,11 +47,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' ); ?>"> <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"> <a href="<?php echo esc_url( admin_url( 'site-health.php' ) ); ?>" class="health-check-tab">
<?php _e( 'Status' ); ?> <?php
/* translators: tab heading for Site Health Status page */
_ex( 'Status', 'Site Health' );
?>
</a> </a>
<a href="<?php echo esc_url( admin_url( 'site-health.php?tab=debug' ) ); ?>" class="health-check-tab active" aria-current="true"> <a href="<?php echo esc_url( admin_url( 'site-health.php?tab=debug' ) ); ?>" class="health-check-tab active" aria-current="true">
<?php _e( 'Info' ); ?> <?php
/* translators: tab heading for Site Health Info page */
_ex( 'Info', 'Site Health' );
?>
</a> </a>
</nav> </nav>
</div> </div>

View File

@ -13,7 +13,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '5.2-beta3-45244'; $wp_version = '5.2-beta3-45245';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.