Fix 'response' column title. Props zeo. See #14579

git-svn-id: https://develop.svn.wordpress.org/trunk@16355 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
scribu 2010-11-13 20:53:21 +00:00
parent 83cfc820ce
commit beb9fea0c4

View File

@ -241,7 +241,7 @@ class WP_Comments_List_Table extends WP_List_Table {
$columns['comment'] = _x( 'Comment', 'column name' );
if ( 'single' !== $mode )
$columns['response'] = _x( 'Comment', 'column name' );
$columns['response'] = _x( 'In Response To', 'column name' );
return $columns;
}