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

git-svn-id: http://svn.automattic.com/wordpress/trunk@16355 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
scribu 2010-11-13 20:53:21 +00:00
parent e496292ae5
commit e875f0f5da

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;
}