mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-03 06:57:35 +01:00
I18N: Merge duplicate "Status" and "Info" strings on Site Health screens.
Props ramiy. Fixes #47227. Built from https://develop.svn.wordpress.org/trunk@45488 git-svn-id: http://core.svn.wordpress.org/trunk@45299 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
13da094c39
commit
32d761ce7d
@ -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' ); ?>">
|
<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">
|
<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>
|
||||||
|
|
||||||
<a href="<?php echo esc_url( admin_url( 'site-health.php?tab=debug' ) ); ?>" class="health-check-tab">
|
<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>
|
</a>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.3-alpha-45487';
|
$wp_version = '5.3-alpha-45488';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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.
|
||||||
|
Loading…
Reference in New Issue
Block a user