I18N: Remove `<a>` tag from translatable string in `wp-admin/comment.php`.

Props ramiy.
See #34686.

git-svn-id: https://develop.svn.wordpress.org/trunk@35665 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2015-11-18 17:32:08 +00:00
parent 7ce972bb33
commit 7b6a8a5b7e
1 changed files with 8 additions and 9 deletions

View File

@ -194,15 +194,14 @@ if ( $comment->comment_approved != '0' ) { // if not unapproved
<tr> <tr>
<th scope="row"><?php _e( 'Submitted on' ); ?></th> <th scope="row"><?php _e( 'Submitted on' ); ?></th>
<td> <td>
<?php <a href="<?php echo esc_url( get_comment_link( $comment ) ); ?>"><?php
/* translators: 2: comment date, 3: comment time */ /* translators: 1: comment date, 2: comment time */
printf( __( '<a href="%1$s">%2$s at %3$s</a>' ), printf( __( '%1$s at %2$s' ),
esc_url( get_comment_link( $comment ) ), /* translators: comment date format. See http://php.net/date */
/* translators: comment date format. See http://php.net/date */ get_comment_date( __( 'Y/m/d' ), $comment ),
get_comment_date( __( 'Y/m/d' ), $comment ), get_comment_date( get_option( 'time_format' ), $comment )
get_comment_date( get_option( 'time_format' ), $comment ) );
); ?></a>
?>
</td> </td>
</tr> </tr>
<tr> <tr>