Site Health: Correct the message for snoozed email verifications.

Follow-up to [48522].

Fixes #48333.

git-svn-id: https://develop.svn.wordpress.org/trunk@48528 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2020-07-21 12:35:32 +00:00
parent 69ec4264dc
commit 0f86642b82

View File

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