From b98640a50816e62d7463e84288848e8d3c61666d Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sun, 23 Jun 2013 08:30:30 +0000 Subject: [PATCH] Remove obsolete translator comment. props zeo. fixes #24464. git-svn-id: https://develop.svn.wordpress.org/trunk@24505 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/class-wp-comments-list-table.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/wp-admin/includes/class-wp-comments-list-table.php b/wp-admin/includes/class-wp-comments-list-table.php index e7ea21218f..23f3169d04 100644 --- a/wp-admin/includes/class-wp-comments-list-table.php +++ b/wp-admin/includes/class-wp-comments-list-table.php @@ -354,8 +354,10 @@ class WP_Comments_List_Table extends WP_List_Table { echo '
'; /* translators: 2: comment date, 3: comment time */ printf( __( 'Submitted on %2$s at %3$s' ), $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 );