I18N: Use consistent pattern for placeholder references in a translator comment in `wp-admin/update-core.php`.

See #43523.

git-svn-id: https://develop.svn.wordpress.org/trunk@43090 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2018-05-02 01:54:48 +00:00
parent f908280af9
commit 62856dd409
1 changed files with 1 additions and 1 deletions

View File

@ -641,7 +641,7 @@ if ( 'upgrade-core' == $action ) {
}
echo '<p>';
/* translators: %1 date, %2 time. */
/* translators: 1: date, 2: time */
printf( __( 'Last checked on %1$s at %2$s.' ), date_i18n( __( 'F j, Y' ), $last_update_check ), date_i18n( __( 'g:i a' ), $last_update_check ) );
echo ' &nbsp; <a class="button" href="' . esc_url( self_admin_url( 'update-core.php?force-check=1' ) ) . '">' . __( 'Check Again' ) . '</a>';
echo '</p>';