diff --git a/wp-admin/includes/meta-boxes.php b/wp-admin/includes/meta-boxes.php
index 97ca20a..f8589ed 100644
--- a/wp-admin/includes/meta-boxes.php
+++ b/wp-admin/includes/meta-boxes.php
@@ -187,7 +187,7 @@ if ( 0 != $post->ID ) {
 		/* translators: Post date information. 1: Date on which the post was published */
 		$stamp = __('Published on: <b>%1$s</b>');
 	} elseif ( '0000-00-00 00:00:00' == $post->post_date_gmt ) { // draft, 1 or more saves, no date specified
-		$stamp = __('Publish <b>immediately</b>');
+		$stamp = __('Publish: <b>Immediately</b>');
 	} elseif ( time() < strtotime( $post->post_date_gmt . ' +0000' ) ) { // draft, 1 or more saves, future date specified
 		/* translators: Post date information. 1: Date on which the post is to be published */
 		$stamp = __('Schedule for: <b>%1$s</b>');
@@ -197,7 +197,7 @@ if ( 0 != $post->ID ) {
 	}
 	$date = date_i18n( $datef, strtotime( $post->post_date ) );
 } else { // draft (no saves, and thus no date specified)
-	$stamp = __('Publish <b>immediately</b>');
+	$stamp = __('Publish: <b>Immediately</b>');
 	$date = date_i18n( $datef, strtotime( current_time('mysql') ) );
 }
 
