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

Props ramiy.
See #34686.
Built from https://develop.svn.wordpress.org/trunk@35665


git-svn-id: http://core.svn.wordpress.org/trunk@35629 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2015-11-18 17:33:30 +00:00
parent 5539193dd0
commit 7cb5ca6b33
2 changed files with 9 additions and 10 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>

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.4-beta4-35664'; $wp_version = '4.4-beta4-35665';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.