Remove "View" prefix from category filter dropdowns, for consistency with [27626].

props afercia.
see #29921.
Built from https://develop.svn.wordpress.org/trunk@29871


git-svn-id: http://core.svn.wordpress.org/trunk@29630 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2014-10-11 02:23:18 +00:00
parent 2c0947eeee
commit f013b7e64b
2 changed files with 2 additions and 2 deletions

View File

@ -72,7 +72,7 @@ class WP_Links_List_Table extends WP_List_Table {
'selected' => $cat_id,
'name' => 'cat_id',
'taxonomy' => 'link_category',
'show_option_all' => __( 'View all categories' ),
'show_option_all' => __( 'All categories' ),
'hide_empty' => true,
'hierarchical' => 1,
'show_count' => 0,

View File

@ -228,7 +228,7 @@ class WP_Posts_List_Table extends WP_List_Table {
if ( is_object_in_taxonomy( $this->screen->post_type, 'category' ) ) {
$dropdown_options = array(
'show_option_all' => __( 'View all categories' ),
'show_option_all' => __( 'All categories' ),
'hide_empty' => 0,
'hierarchical' => 1,
'show_count' => 0,