From 68981ccac4b4af1a5dc54dcabbbf65e5d500855c Mon Sep 17 00:00:00 2001 From: scribu Date: Sat, 13 Nov 2010 20:58:39 +0000 Subject: [PATCH] Add back 'Submitted on ' text. Props zeo. See #14579 git-svn-id: http://svn.automattic.com/wordpress/trunk@16356 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/class-wp-comments-list-table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/includes/class-wp-comments-list-table.php b/wp-admin/includes/class-wp-comments-list-table.php index 2e054a8d04..9cf6cdeed6 100644 --- a/wp-admin/includes/class-wp-comments-list-table.php +++ b/wp-admin/includes/class-wp-comments-list-table.php @@ -336,7 +336,7 @@ class WP_Comments_List_Table extends WP_List_Table { echo '
'; /* translators: 2: comment date, 3: comment time */ - printf( __( '%2$s at %3$s' ), $comment_url, + 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' ) ) );