diff --git a/wp-content/themes/twentyfifteen/inc/template-tags.php b/wp-content/themes/twentyfifteen/inc/template-tags.php index 0a617c098f..57eaba62a1 100644 --- a/wp-content/themes/twentyfifteen/inc/template-tags.php +++ b/wp-content/themes/twentyfifteen/inc/template-tags.php @@ -119,7 +119,8 @@ function twentyfifteen_entry_meta() { if ( ! is_single() && ! post_password_required() && ( comments_open() || get_comments_number() ) ) { echo ''; - comments_popup_link( __( 'Leave a comment', 'twentyfifteen' ), __( '1 Comment', 'twentyfifteen' ), __( '% Comments', 'twentyfifteen' ) ); + /* translators: %s: post title */ + comments_popup_link( sprintf( __( 'Leave a comment on %s' ), get_the_title() ) ); echo ''; } } diff --git a/wp-includes/version.php b/wp-includes/version.php index 206479df89..4b540b50ce 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.3-alpha-33002'; +$wp_version = '4.3-alpha-33003'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.