Make WordPress Core

Changeset 29871


Ignore:
Timestamp:
10/11/2014 02:22:08 AM (10 years ago)
Author:
SergeyBiryukov
Message:

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

props afercia.
see #29921.

Location:
trunk/src/wp-admin/includes
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-links-list-table.php

    r29870 r29871  
    7373                'name' => 'cat_id',
    7474                'taxonomy' => 'link_category',
    75                 'show_option_all' => __( 'View all categories' ),
     75                'show_option_all' => __( 'All categories' ),
    7676                'hide_empty' => true,
    7777                'hierarchical' => 1,
  • trunk/src/wp-admin/includes/class-wp-posts-list-table.php

    r29870 r29871  
    229229            if ( is_object_in_taxonomy( $this->screen->post_type, 'category' ) ) {
    230230                $dropdown_options = array(
    231                     'show_option_all' => __( 'View all categories' ),
     231                    'show_option_all' => __( 'All categories' ),
    232232                    'hide_empty' => 0,
    233233                    'hierarchical' => 1,
Note: See TracChangeset for help on using the changeset viewer.