Site Health: Correct the message for snoozed email verifications.

Follow-up to [48522].

Fixes #48333.
Built from https://develop.svn.wordpress.org/trunk@48528


git-svn-id: http://core.svn.wordpress.org/trunk@48290 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2020-07-21 12:37:07 +00:00
parent ec05ee2f5d
commit de462d2c20
2 changed files with 4 additions and 8 deletions

View File

@ -133,13 +133,9 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
<p> <p>
<?php <?php
printf( printf(
/* translators: %d: The number of days. */ /* translators: %s: Human-readable time interval. */
_n( __( 'The admin email verification page will reappear after %s.' ),
'The admin email verification page will reappear after %d day.', human_time_diff( time() + $remind_interval )
'The admin email verification page will reappear after %d days.',
3
),
human_time_diff( ( $postponed_time + $remind_interval ) )
); );
?> ?>
</p> </p>

View File

@ -13,7 +13,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '5.5-beta2-48527'; $wp_version = '5.5-beta2-48528';
/** /**
* 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.