Ticket #17209: 17209c.diff
| File 17209c.diff, 1.3 KB (added by , 12 years ago) |
|---|
-
src/wp-admin/css/list-tables.css
262 262 .fixed .column-format { 263 263 width: 10%; 264 264 } 265 265 .fixed .column-posts { 266 width: 74px; 267 } 266 268 .fixed .column-comment .comment-author { 267 269 display: none; 268 270 } … … 1416 1418 1417 1419 /* Taxonomies */ 1418 1420 .tags .column-posts { 1419 width: 50px;1421 width: 74px; 1420 1422 } 1421 1423 1422 1424 .tags .column-slug { -
src/wp-admin/includes/class-wp-terms-list-table.php
128 128 $columns['links'] = __( 'Links' ); 129 129 } else { 130 130 $post_type_object = get_post_type_object( $this->screen->post_type ); 131 $columns['posts'] = $post_type_object ? $post_type_object->labels->name : __( 'Posts' ); 131 if ( $post_type_object ) { 132 $columns['posts'] = ( strlen( $post_type_object->labels->name ) > 5 ) ? _x( 'Count', 'Number/count of posts' ) : $post_type_object->labels->name; 133 } else { 134 $columns['posts'] = __( 'Posts' ); 135 } 132 136 } 133 137 134 138 return $columns;
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)