Remove obsolete translator comment. props zeo. fixes #24464.

git-svn-id: http://core.svn.wordpress.org/trunk@24505 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2013-06-23 08:30:30 +00:00
parent 98d6c31f84
commit 2ebbe00b55

View File

@ -354,8 +354,10 @@ class WP_Comments_List_Table extends WP_List_Table {
echo '<div class="submitted-on">';
/* translators: 2: comment date, 3: comment time */
printf( __( 'Submitted on <a href="%1$s">%2$s at %3$s</a>' ), $comment_url,
/* translators: comment date format. See http://php.net/date */ get_comment_date( __( 'Y/m/d' ) ),
/* translators: comment time format. See http://php.net/date */ get_comment_date( get_option( 'time_format' ) ) );
/* translators: comment date format. See http://php.net/date */
get_comment_date( __( 'Y/m/d' ) ),
get_comment_date( get_option( 'time_format' ) )
);
if ( $comment->comment_parent ) {
$parent = get_comment( $comment->comment_parent );