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:
Sergey Biryukov 2019-04-12 20:40:51 +00:00
parent 1ae11820fc
commit 7e4b4e1089
2 changed files with 2 additions and 2 deletions

View File

@ -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>

View File

@ -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.