Changeset 31821
- Timestamp:
- 03/18/2015 09:51:36 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment-template.php
r31803 r31821 1281 1281 1282 1282 $id = get_the_ID(); 1283 $span = '<span class="screen-reader-text">';1284 1283 $title = get_the_title(); 1285 $span_close = '</span>';1286 1287 1284 $number = get_comments_number( $id ); 1288 1285 1289 1286 if ( false === $zero ) { 1290 /* translators: 1: Opening span tag with a class, 2: post title, 3: closing span tag */ 1291 $zero = sprintf( __( 'No Comments%1$s on %2$s%3$s' ), $span, $title, $span_close ); 1292 } 1287 /* translators: %s: post title */ 1288 $zero = sprintf( __( 'No Comments<span class="screen-reader-text"> on %s</span>' ), $title ); 1289 } 1290 1293 1291 if ( false === $one ) { 1294 /* translators: 1: Opening span tag with a class, 2: post title, 3: closing span tag */ 1295 $one = sprintf( __( '1 Comment%1$s on %2$s%3$s' ), $span, $title, $span_close ); 1296 } 1292 /* translators: %s: post title */ 1293 $one = sprintf( __( '1 Comment<span class="screen-reader-text"> on %s</span>' ), $title ); 1294 } 1295 1297 1296 if ( false === $more ) { 1298 /* translators: 1: Opening span tag with a class, 2: post title, 3: closing span tag, 4: number of comments*/1299 $more = sprintf( _n( '%4$s Comment%1$s on %2$s%3$s', '%4$s Comments%1$s on %2$s%3$s', $number ),1300 $span, $title, $span_close, number_format_i18n( $number )1301 );1302 } 1297 /* translators: 1: Number of comments 2: post title */ 1298 $more = _n( '%1$s Comment<span class="screen-reader-text"> on %2$s</span>', '%1$s Comments<span class="screen-reader-text"> on %2$s</span>', $number ); 1299 $more = sprintf( $more, number_format_i18n( $number ), $title ); 1300 } 1301 1303 1302 if ( false === $none ) { 1304 /* translators: 1: Opening span tag with a class, 2: post title, 3: closing span tag*/1305 $none = sprintf( __( 'Comments Off %1$s on %2$s%3$s' ), $span, $title, $span_close );1303 /* translators: %s: post title */ 1304 $none = sprintf( __( 'Comments Off<span class="screen-reader-text"> on %s</span>' ), $title ); 1306 1305 } 1307 1306
Note: See TracChangeset
for help on using the changeset viewer.