Skip to content

Commit 5cfdae8

Browse files
Add missing translator comment after [34295].
See #31853. git-svn-id: https://develop.svn.wordpress.org/trunk@34301 602fd350-edb4-49c9-b593-d223f7449a82
1 parent bcc1657 commit 5cfdae8

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

src/wp-admin/edit-form-comment.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,8 @@
9494
?>
9595
<span id="timestamp"><?php
9696
printf(
97-
__( 'Submitted on: %1$s' ),
97+
/* translators: %s: comment date */
98+
__( 'Submitted on: %s' ),
9899
'<b>' . date_i18n( $datef, strtotime( $comment->comment_date ) ) . '</b>'
99100
);
100101
?></span>
@@ -117,7 +118,7 @@
117118

118119
<div class="misc-pub-section misc-pub-response-to">
119120
<?php printf(
120-
/* translators: post link */
121+
/* translators: %s: post link */
121122
__( 'In response to: %s' ),
122123
'<b>' . $post_link . '</b>'
123124
); ?>
@@ -132,7 +133,7 @@
132133
?>
133134
<div class="misc-pub-section misc-pub-reply-to">
134135
<?php printf(
135-
/* translators: comment link */
136+
/* translators: %s: comment link */
136137
__( 'In reply to: %s' ),
137138
'<b><a href="' . $parent_link . '">' . $name . '</a></b>'
138139
); ?>

0 commit comments

Comments
 (0)