Index: src/wp-includes/comment-template.php
===================================================================
--- src/wp-includes/comment-template.php	(revision 31393)
+++ src/wp-includes/comment-template.php	(working copy)
@@ -1274,27 +1274,21 @@
 	global $wpcommentspopupfile, $wpcommentsjavascript;
 
 	$id = get_the_ID();
-	$span = '<span class="screen-reader-text">';
 	$title = get_the_title();
-	$span_close = '</span>';
 
 	$number = get_comments_number( $id );
 
 	if ( false === $zero ) {
-		/* translators: 1: Opening span tag with a class, 2: post title, 3: closing span tag */
-		$zero = sprintf( __( 'No Comments%1$s on %2$s%3$s' ), $span, $title, $span_close );
+		$zero = sprintf( __( 'No Comments<span class="screen-reader-text"> on %s</span>' ), $title );
 	}
 	if ( false === $one ) {
-		/* translators: 1: Opening span tag with a class, 2: post title, 3: closing span tag */
-		$one = sprintf( __( '1 Comment%1$s on %2$s%3$s' ), $span, $title, $span_close );
+		$one = sprintf( __( '1 Comment<span class="screen-reader-text"> on %s</span>' ), $title );
 	}
 	if ( false === $more ) {
-		/* translators: 1: Opening span tag with a class, 2: post title, 3: closing span tag, 4: number of comments */
-		$more = sprintf( __( '%4$d Comments%1$s on %2$s%3$s' ), $span, $title, $span_close, $number );
+		$more = sprintf( __( '%2$d Comments<span class="screen-reader-text"> on %1$s</span>' ), $title, $number );
 	}
 	if ( false === $none ) {
-		/* translators: 1: Opening span tag with a class, 2: post title, 3: closing span tag */
-		$none = sprintf( __( 'Comments Off%1$s on %2$s%3$s' ), $span, $title, $span_close );
+		$none = sprintf( __( 'Comments Off<span class="screen-reader-text"> on %s</span>' ), $title );
 	}
 
 	if ( 0 == $number && !comments_open() && !pings_open() ) {
