mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-03 15:08:10 +01:00
Site Health: Use _n()
for %s Items with no issues detected
string, missed in [45178].
See #46683. Built from https://develop.svn.wordpress.org/trunk@45179 git-svn-id: http://core.svn.wordpress.org/trunk@44988 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
1ae11820fc
commit
7e4b4e1089
@ -114,7 +114,7 @@ require_once( ABSPATH . 'wp-admin/admin-header.php' );
|
||||
|
||||
<div class="site-health-issues-wrapper hidden" id="health-check-issues-good">
|
||||
<h3>
|
||||
<span class="issue-count">0</span> <?php _e( 'Items with no issues detected' ); ?>
|
||||
<?php printf( _n( '%s Item with no issues detected', '%s Items with no issues detected', 0 ), '<span class="issue-count">0</span>' ); ?>
|
||||
</h3>
|
||||
|
||||
<div id="health-check-site-status-good" class="health-check-accordion issues"></div>
|
||||
|
@ -13,7 +13,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.2-beta2-45178';
|
||||
$wp_version = '5.2-beta2-45179';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
Loading…
Reference in New Issue
Block a user