diff --git a/wp-admin/edit.php b/wp-admin/edit.php index c28773c7b..74b86ff86 100644 --- a/wp-admin/edit.php +++ b/wp-admin/edit.php @@ -54,6 +54,29 @@ if ( is_single() ) { } ?> + +
diff --git a/wp-admin/includes/post.php b/wp-admin/includes/post.php index a525ad96e..9fd30e6e7 100644 --- a/wp-admin/includes/post.php +++ b/wp-admin/includes/post.php @@ -488,11 +488,11 @@ function wp_edit_posts_query( $q = false ) { $q['m'] = (int) $q['m']; $q['cat'] = (int) $q['cat']; $post_stati = array( // array( adj, noun ) - 'draft' => array(__('Draft'), _c('Drafts|manage posts header')), - 'future' => array(__('Scheduled'), __('Scheduled posts')), - 'pending' => array(__('Pending Review'), __('Pending posts')), - 'private' => array(__('Private'), __('Private posts')), - 'publish' => array(__('Published'), __('Published posts')) + 'publish' => array(__('Published'), __('Published (%s)')), + 'future' => array(__('Scheduled'), __('Scheduled (5s)')), + 'pending' => array(__('Pending Review'), __('Pending Review (%s)')), + 'draft' => array(__('Draft'), _c('Draft (%s)|manage posts header')), + 'private' => array(__('Private'), __('Private (%s)')) ); $avail_post_stati = $wpdb->get_col("SELECT DISTINCT post_status FROM $wpdb->posts WHERE post_type = 'post'"); diff --git a/wp-admin/wp-admin.css b/wp-admin/wp-admin.css index e4cb9a105..a432e5463 100644 --- a/wp-admin/wp-admin.css +++ b/wp-admin/wp-admin.css @@ -995,6 +995,23 @@ a.view-comment-post-link { height: 15px; } +#statusmenu { + margin: 0; + color: #999; + list-style: none; + white-space: nowrap; + left: 0; +} + +#statusmenu a { + color: #2583ad; + padding: 3px; + line-height: 200%; +} + +#statusmenu a:hover, #statusmenu a.current, #statusmenu a.current:hover { + color: #d54e21; +} /* end menu stuff */ /* Admin Footer */