Add missing translator comment after [34295].

See #31853.
Built from https://develop.svn.wordpress.org/trunk@34301


git-svn-id: http://core.svn.wordpress.org/trunk@34265 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2015-09-18 18:50:24 +00:00
parent 569dbcfeab
commit 8e353f294c
2 changed files with 5 additions and 4 deletions

View File

@ -94,7 +94,8 @@ $datef = __( 'M j, Y @ H:i' );
?>
<span id="timestamp"><?php
printf(
__( 'Submitted on: %1$s' ),
/* translators: %s: comment date */
__( 'Submitted on: %s' ),
'<b>' . date_i18n( $datef, strtotime( $comment->comment_date ) ) . '</b>'
);
?></span>
@ -117,7 +118,7 @@ if ( current_user_can( 'edit_post', $post_id ) ) {
<div class="misc-pub-section misc-pub-response-to">
<?php printf(
/* translators: post link */
/* translators: %s: post link */
__( 'In response to: %s' ),
'<b>' . $post_link . '</b>'
); ?>
@ -132,7 +133,7 @@ if ( $comment->comment_parent ) :
?>
<div class="misc-pub-section misc-pub-reply-to">
<?php printf(
/* translators: comment link */
/* translators: %s: comment link */
__( 'In reply to: %s' ),
'<b><a href="' . $parent_link . '">' . $name . '</a></b>'
); ?>

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.4-alpha-34300';
$wp_version = '4.4-alpha-34301';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.