Index: wp-admin/edit.php
===================================================================
--- wp-admin/edit.php	(revision 32564)
+++ wp-admin/edit.php	(working copy)
@@ -280,7 +280,17 @@
 ?>
 <div class="wrap">
 <h2><?php
+if ( ! empty( $_REQUEST['post_status'] ) ) {
+	$status = get_post_status_object( $_REQUEST['post_status'] );
+	echo esc_html( $status->label ) . ' ';
+}
+
 echo esc_html( $post_type_object->labels->name );
+
+if ( ! empty( $_REQUEST['paged'] ) ) {
+	printf( ' <span class="subtitle current-page">' . __( '(page %d)' ) . '</span>', $pagenum );
+}
+
 if ( current_user_can( $post_type_object->cap->create_posts ) )
 	echo ' <a href="' . esc_url( admin_url( $post_new_file ) ) . '" class="add-new-h2">' . esc_html( $post_type_object->labels->add_new ) . '</a>';
 if ( ! empty( $_REQUEST['s'] ) )
