Index: src/wp-admin/includes/template.php
===================================================================
--- src/wp-admin/includes/template.php	(revision 32321)
+++ src/wp-admin/includes/template.php	(working copy)
@@ -1691,6 +1691,11 @@
 	if ( 'pending' == $post->post_status && 'pending' != $post_status )
 		/* translators: post state */
 		$post_states['pending'] = _x('Pending', 'post state');
+	if ( 'future' == $post->post_status )
+		if ( time() > strtotime($post->post_date) )
+			$post_states['scheduled'] = __('Missed Schedule');
+		else
+			$post_states['scheduled'] = __('Scheduled');
 	if ( is_sticky($post->ID) )
 		$post_states['sticky'] = __('Sticky');
 
