Include placeholders in translator comments.

See #31857.
Built from https://develop.svn.wordpress.org/trunk@34304


git-svn-id: http://core.svn.wordpress.org/trunk@34268 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2015-09-18 18:58:24 +00:00
parent ea0cf44097
commit 7adaef50bb
3 changed files with 3 additions and 3 deletions

View File

@ -183,7 +183,7 @@ if ( $comment->comment_approved != '0' ) { // if not unapproved
$parent_link = esc_url( get_comment_link( $parent ) );
$name = get_comment_author( $parent );
printf(
/* translators: comment link */
/* translators: %s: comment link */
' | ' . __( 'In reply to %s.' ),
'<a href="' . $parent_link . '">' . $name . '</a>'
);

View File

@ -611,7 +611,7 @@ class WP_Comments_List_Table extends WP_List_Table {
$parent_link = esc_url( get_comment_link( $parent ) );
$name = get_comment_author( $parent );
printf(
/* translators: comment link */
/* translators: %s: comment link */
' | ' . __( 'In reply to %s.' ),
'<a href="' . $parent_link . '">' . $name . '</a>'
);

View File

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