Changeset 35376
- Timestamp:
- 10/23/2015 04:47:57 PM (9 years ago)
- Location:
- trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/edit-tags.php
r34891 r35376 56 56 57 57 get_current_screen()->set_screen_reader_content( array( 58 'heading_pagination' => $tax->labels-> pagination,59 'heading_list' => $tax->labels-> list,58 'heading_pagination' => $tax->labels->items_list_navigation, 59 'heading_list' => $tax->labels->items_list, 60 60 ) ); 61 61 -
trunk/src/wp-admin/edit.php
r35357 r35376 250 250 251 251 get_current_screen()->set_screen_reader_content( array( 252 'heading_views' => $post_type_object->labels-> views,253 'heading_pagination' => $post_type_object->labels-> pagination,254 'heading_list' => $post_type_object->labels-> list,252 'heading_views' => $post_type_object->labels->filter_items_list, 253 'heading_pagination' => $post_type_object->labels->items_list_navigation, 254 'heading_list' => $post_type_object->labels->items_list, 255 255 ) ); 256 256 -
trunk/src/wp-includes/post-functions.php
r35240 r35376 1331 1331 * - use_featured_image - Default is Use as featured image. 1332 1332 * - menu_name - Default is the same as `name`. 1333 * - views- String for the table views hidden heading.1334 * - pagination - String for the table pagination hidden heading.1335 * - list - String for the table hidden heading.1333 * - filter_items_list - String for the table views hidden heading. 1334 * - items_list_navigation - String for the table pagination hidden heading. 1335 * - items_list - String for the table hidden heading. 1336 1336 * 1337 1337 * Above, the first default value is for non-hierarchical post types (like posts) … … 1368 1368 'remove_featured_image' => array( __( 'Remove featured image' ), __( 'Remove featured image' ) ), 1369 1369 'use_featured_image' => array( __( 'Use as featured image' ), __( 'Use as featured image' ) ), 1370 ' views' => array( __( 'Filter posts list' ), __( 'Filter pages list' ) ),1371 ' pagination' => array( __( 'Posts list navigation' ), __( 'Pages list navigation' ) ),1372 ' list' => array( __( 'Posts list' ), __( 'Pages list' ) ),1370 'filter_items_list' => array( __( 'Filter posts list' ), __( 'Filter pages list' ) ), 1371 'items_list_navigation' => array( __( 'Posts list navigation' ), __( 'Pages list navigation' ) ), 1372 'items_list' => array( __( 'Posts list' ), __( 'Pages list' ) ), 1373 1373 ); 1374 1374 $nohier_vs_hier_defaults['menu_name'] = $nohier_vs_hier_defaults['name']; -
trunk/src/wp-includes/taxonomy-functions.php
r35333 r35376 495 495 * - not_found - Default is "No tags found"/"No categories found", used in the meta box and taxonomy list table. 496 496 * - no_terms - Default is "No tags"/"No categories", used in the posts and media list tables. 497 * - pagination - String for the table pagination hidden heading.498 * - list - String for the table hidden heading.497 * - items_list_navigation - String for the table pagination hidden heading. 498 * - items_list - String for the table hidden heading. 499 499 * 500 500 * Above, the first default value is for non-hierarchical taxonomies (like tags) and the second one is for hierarchical taxonomies (like categories). … … 535 535 'not_found' => array( __( 'No tags found.' ), __( 'No categories found.' ) ), 536 536 'no_terms' => array( __( 'No tags' ), __( 'No categories' ) ), 537 ' pagination' => array( __( 'Tags list navigation' ), __( 'Categories list navigation' ) ),538 ' list' => array( __( 'Tags list' ), __( 'Categories list' ) ),537 'items_list_navigation' => array( __( 'Tags list navigation' ), __( 'Categories list navigation' ) ), 538 'items_list' => array( __( 'Tags list' ), __( 'Categories list' ) ), 539 539 ); 540 540 $nohier_vs_hier_defaults['menu_name'] = $nohier_vs_hier_defaults['name'];
Note: See TracChangeset
for help on using the changeset viewer.