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:
parent
ea0cf44097
commit
7adaef50bb
|
@ -183,7 +183,7 @@ if ( $comment->comment_approved != '0' ) { // if not unapproved
|
||||||
$parent_link = esc_url( get_comment_link( $parent ) );
|
$parent_link = esc_url( get_comment_link( $parent ) );
|
||||||
$name = get_comment_author( $parent );
|
$name = get_comment_author( $parent );
|
||||||
printf(
|
printf(
|
||||||
/* translators: comment link */
|
/* translators: %s: comment link */
|
||||||
' | ' . __( 'In reply to %s.' ),
|
' | ' . __( 'In reply to %s.' ),
|
||||||
'<a href="' . $parent_link . '">' . $name . '</a>'
|
'<a href="' . $parent_link . '">' . $name . '</a>'
|
||||||
);
|
);
|
||||||
|
|
|
@ -611,7 +611,7 @@ class WP_Comments_List_Table extends WP_List_Table {
|
||||||
$parent_link = esc_url( get_comment_link( $parent ) );
|
$parent_link = esc_url( get_comment_link( $parent ) );
|
||||||
$name = get_comment_author( $parent );
|
$name = get_comment_author( $parent );
|
||||||
printf(
|
printf(
|
||||||
/* translators: comment link */
|
/* translators: %s: comment link */
|
||||||
' | ' . __( 'In reply to %s.' ),
|
' | ' . __( 'In reply to %s.' ),
|
||||||
'<a href="' . $parent_link . '">' . $name . '</a>'
|
'<a href="' . $parent_link . '">' . $name . '</a>'
|
||||||
);
|
);
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @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.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue