Make WordPress Core

Ticket #36049: 36049.diff

File 36049.diff, 1.2 KB (added by johnbillion, 9 years ago)
  • src/wp-admin/includes/class-wp-links-list-table.php

     
    103103                                'selected' => $cat_id,
    104104                                'name' => 'cat_id',
    105105                                'taxonomy' => 'link_category',
    106                                 'show_option_all' => __( 'All categories' ),
     106                                'show_option_all' => get_taxonomy( 'link_category' )->labels->all_items,
    107107                                'hide_empty' => true,
    108108                                'hierarchical' => 1,
    109109                                'show_count' => 0,
  • src/wp-admin/includes/class-wp-posts-list-table.php

     
    426426
    427427                        if ( is_object_in_taxonomy( $this->screen->post_type, 'category' ) ) {
    428428                                $dropdown_options = array(
    429                                         'show_option_all' => __( 'All categories' ),
     429                                        'show_option_all' => get_taxonomy( 'category' )->labels->all_items,
    430430                                        'hide_empty' => 0,
    431431                                        'hierarchical' => 1,
    432432                                        'show_count' => 0,