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

props afercia.
see #29921.

git-svn-id: https://develop.svn.wordpress.org/trunk@29871 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2014-10-11 02:22:08 +00:00
parent 8d2f5d0cc5
commit c50be6a735
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,