Changeset 29343
- Timestamp:
- 08/01/2014 06:31:52 PM (11 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/list-tables.css
r29225 r29343 262 262 .fixed .column-format { 263 263 width: 10%; 264 } 265 266 .fixed .column-posts { 267 width: 74px; 264 268 } 265 269 … … 1558 1562 /* Taxonomies */ 1559 1563 .tags .column-posts { 1560 width: 50px;1564 width: 74px; 1561 1565 } 1562 1566 -
trunk/src/wp-admin/includes/class-wp-terms-list-table.php
r29206 r29343 128 128 $columns['links'] = __( 'Links' ); 129 129 } else { 130 $post_type_object = get_post_type_object( $this->screen->post_type ); 131 $columns['posts'] = $post_type_object ? $post_type_object->labels->name : __( 'Posts' ); 130 $columns['posts'] = _x( 'Count', 'Number/count of items' ); 132 131 } 133 132
Note: See TracChangeset
for help on using the changeset viewer.