I18N: Use consistent pattern for placeholder references in a translator comment in `wp-admin/update-core.php`.
See #43523. Built from https://develop.svn.wordpress.org/trunk@43090 git-svn-id: http://core.svn.wordpress.org/trunk@42919 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
eca2bf8545
commit
a53d6b9cb9
|
@ -641,7 +641,7 @@ if ( 'upgrade-core' == $action ) {
|
||||||
}
|
}
|
||||||
|
|
||||||
echo '<p>';
|
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 ) );
|
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 ' <a class="button" href="' . esc_url( self_admin_url( 'update-core.php?force-check=1' ) ) . '">' . __( 'Check Again' ) . '</a>';
|
echo ' <a class="button" href="' . esc_url( self_admin_url( 'update-core.php?force-check=1' ) ) . '">' . __( 'Check Again' ) . '</a>';
|
||||||
echo '</p>';
|
echo '</p>';
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.0-alpha-43089';
|
$wp_version = '5.0-alpha-43090';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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.
|
||||||
|
|
Loading…
Reference in New Issue