Index: src/wp-admin/css/list-tables.css
===================================================================
--- src/wp-admin/css/list-tables.css	(revision 28256)
+++ src/wp-admin/css/list-tables.css	(working copy)
@@ -262,7 +262,9 @@
 .fixed .column-format {
 	width: 10%;
 }
-
+.fixed .column-posts {
+    width: 74px;
+}
 .fixed .column-comment .comment-author {
 	display: none;
 }
@@ -1416,7 +1418,7 @@
 
 	/* Taxonomies */
 	.tags .column-posts {
-		width: 50px;
+		width: 74px;
 	}
 
 	.tags .column-slug {
Index: src/wp-admin/includes/class-wp-terms-list-table.php
===================================================================
--- src/wp-admin/includes/class-wp-terms-list-table.php	(revision 28256)
+++ src/wp-admin/includes/class-wp-terms-list-table.php	(working copy)
@@ -128,7 +128,11 @@
 			$columns['links'] = __( 'Links' );
 		} else {
 			$post_type_object = get_post_type_object( $this->screen->post_type );
-			$columns['posts'] = $post_type_object ? $post_type_object->labels->name : __( 'Posts' );
+			if ( $post_type_object ) {
+				$columns['posts'] = ( strlen( $post_type_object->labels->name ) > 5 ) ? _x( 'Count', 'Number/count of posts' ) : $post_type_object->labels->name;
+			} else {
+				$columns['posts'] = __( 'Posts' );
+			}
 		}
 
 		return $columns;
