From 95ba00c277a5a9e76f09273593b471e2c3e1b4db Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Sun, 31 Oct 2010 15:38:13 +0000 Subject: [PATCH] Translate a string. git-svn-id: https://develop.svn.wordpress.org/trunk@16119 602fd350-edb4-49c9-b593-d223f7449a82 --- 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 )