From 7adaef50bb5cae3dde0952e628c74240cb84e5e1 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 18 Sep 2015 18:58:24 +0000 Subject: [PATCH] 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 --- wp-admin/comment.php | 2 +- wp-admin/includes/class-wp-comments-list-table.php | 2 +- wp-includes/version.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-admin/comment.php b/wp-admin/comment.php index 2c5dc9c976..1532e944b7 100644 --- a/wp-admin/comment.php +++ b/wp-admin/comment.php @@ -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.' ), '' . $name . '' ); diff --git a/wp-admin/includes/class-wp-comments-list-table.php b/wp-admin/includes/class-wp-comments-list-table.php index a8ef8ced6a..67109d71d2 100644 --- a/wp-admin/includes/class-wp-comments-list-table.php +++ b/wp-admin/includes/class-wp-comments-list-table.php @@ -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.' ), '' . $name . '' ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 685892f949..21cde83462 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -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.