Changeset 45932 for trunk/src/wp-includes/class-walker-comment.php
- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-walker-comment.php
r45926 r45932 284 284 <?php 285 285 printf( 286 /* translators: %s: comment author link*/286 /* translators: %s: Comment author link. */ 287 287 __( '%s <span class="says">says:</span>' ), 288 288 sprintf( '<cite class="fn">%s</cite>', get_comment_author_link( $comment ) ) … … 297 297 <div class="comment-meta commentmetadata"><a href="<?php echo esc_url( get_comment_link( $comment, $args ) ); ?>"> 298 298 <?php 299 /* translators: 1: comment date, 2: comment time*/299 /* translators: 1: Comment date, 2: Comment time. */ 300 300 printf( __( '%1$s at %2$s' ), get_comment_date( '', $comment ), get_comment_time() ); 301 301 ?> … … 374 374 <?php 375 375 printf( 376 /* translators: %s: comment author link*/376 /* translators: %s: Comment author link. */ 377 377 __( '%s <span class="says">says:</span>' ), 378 378 sprintf( '<b class="fn">%s</b>', get_comment_author_link( $comment ) ) … … 385 385 <time datetime="<?php comment_time( 'c' ); ?>"> 386 386 <?php 387 /* translators: 1: comment date, 2: comment time*/387 /* translators: 1: Comment date, 2: Comment time. */ 388 388 printf( __( '%1$s at %2$s' ), get_comment_date( '', $comment ), get_comment_time() ); 389 389 ?>
Note: See TracChangeset
for help on using the changeset viewer.