Add missing translator comment after [34295].
See #31853. git-svn-id: https://develop.svn.wordpress.org/trunk@34301 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
bcc165791f
commit
5cfdae8b2b
|
@ -94,7 +94,8 @@ $datef = __( 'M j, Y @ H:i' );
|
||||||
?>
|
?>
|
||||||
<span id="timestamp"><?php
|
<span id="timestamp"><?php
|
||||||
printf(
|
printf(
|
||||||
__( 'Submitted on: %1$s' ),
|
/* translators: %s: comment date */
|
||||||
|
__( 'Submitted on: %s' ),
|
||||||
'<b>' . date_i18n( $datef, strtotime( $comment->comment_date ) ) . '</b>'
|
'<b>' . date_i18n( $datef, strtotime( $comment->comment_date ) ) . '</b>'
|
||||||
);
|
);
|
||||||
?></span>
|
?></span>
|
||||||
|
@ -117,7 +118,7 @@ if ( current_user_can( 'edit_post', $post_id ) ) {
|
||||||
|
|
||||||
<div class="misc-pub-section misc-pub-response-to">
|
<div class="misc-pub-section misc-pub-response-to">
|
||||||
<?php printf(
|
<?php printf(
|
||||||
/* translators: post link */
|
/* translators: %s: post link */
|
||||||
__( 'In response to: %s' ),
|
__( 'In response to: %s' ),
|
||||||
'<b>' . $post_link . '</b>'
|
'<b>' . $post_link . '</b>'
|
||||||
); ?>
|
); ?>
|
||||||
|
@ -132,7 +133,7 @@ if ( $comment->comment_parent ) :
|
||||||
?>
|
?>
|
||||||
<div class="misc-pub-section misc-pub-reply-to">
|
<div class="misc-pub-section misc-pub-reply-to">
|
||||||
<?php printf(
|
<?php printf(
|
||||||
/* translators: comment link */
|
/* translators: %s: comment link */
|
||||||
__( 'In reply to: %s' ),
|
__( 'In reply to: %s' ),
|
||||||
'<b><a href="' . $parent_link . '">' . $name . '</a></b>'
|
'<b><a href="' . $parent_link . '">' . $name . '</a></b>'
|
||||||
); ?>
|
); ?>
|
||||||
|
|
Loading…
Reference in New Issue