mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 18:01:42 +01:00
Don't use <code>
in translation strings in edit-form-comment.php
.
Props ramiy. Fixes #31853. Built from https://develop.svn.wordpress.org/trunk@34295 git-svn-id: http://core.svn.wordpress.org/trunk@34259 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
defb5bbf43
commit
20a42701f4
@ -91,10 +91,13 @@ if ( $comment->comment_post_ID > 0 ):
|
|||||||
<?php
|
<?php
|
||||||
/* translators: Publish box date format, see http://php.net/date */
|
/* translators: Publish box date format, see http://php.net/date */
|
||||||
$datef = __( 'M j, Y @ H:i' );
|
$datef = __( 'M j, Y @ H:i' );
|
||||||
$stamp = __('Submitted on: <b>%1$s</b>');
|
|
||||||
$date = date_i18n( $datef, strtotime( $comment->comment_date ) );
|
|
||||||
?>
|
?>
|
||||||
<span id="timestamp"><?php printf( $stamp, $date ); ?></span>
|
<span id="timestamp"><?php
|
||||||
|
printf(
|
||||||
|
__( 'Submitted on: %1$s' ),
|
||||||
|
'<b>' . date_i18n( $datef, strtotime( $comment->comment_date ) ) . '</b>'
|
||||||
|
);
|
||||||
|
?></span>
|
||||||
<a href="#edit_timestamp" class="edit-timestamp hide-if-no-js"><span aria-hidden="true"><?php _e( 'Edit' ); ?></span> <span class="screen-reader-text"><?php _e( 'Edit date and time' ); ?></span></a>
|
<a href="#edit_timestamp" class="edit-timestamp hide-if-no-js"><span aria-hidden="true"><?php _e( 'Edit' ); ?></span> <span class="screen-reader-text"><?php _e( 'Edit date and time' ); ?></span></a>
|
||||||
<fieldset id='timestampdiv' class='hide-if-js'>
|
<fieldset id='timestampdiv' class='hide-if-js'>
|
||||||
<legend class="screen-reader-text"><?php _e( 'Date and time' ); ?></legend>
|
<legend class="screen-reader-text"><?php _e( 'Date and time' ); ?></legend>
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.4-alpha-34294';
|
$wp_version = '4.4-alpha-34295';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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
Block a user