From 125733fff34b4b1631fee1a96143b18010c38486 Mon Sep 17 00:00:00 2001 From: nacin Date: Sun, 31 Oct 2010 15:38:13 +0000 Subject: [PATCH] Translate a string. git-svn-id: http://svn.automattic.com/wordpress/trunk@16119 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/list-table-posts.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/includes/list-table-posts.php b/wp-admin/includes/list-table-posts.php index 42e1358c3f..9214162cf8 100644 --- a/wp-admin/includes/list-table-posts.php +++ b/wp-admin/includes/list-table-posts.php @@ -275,7 +275,7 @@ class WP_Posts_Table extends WP_List_Table { $posts_columns['tags'] = __( 'Tags' ); $post_status = !empty( $_REQUEST['post_status'] ) ? $_REQUEST['post_status'] : 'all'; if ( !in_array( $post_status, array( 'pending', 'draft', 'future' ) ) && ( empty( $post_type ) || post_type_supports( $post_type, 'comments' ) ) ) - $posts_columns['comments'] = '
Comments
'; + $posts_columns['comments'] = '
' . esc_attr__( 'Comments' ) . '
'; $posts_columns['date'] = __( 'Date' ); if ( 'page' == $post_type )