Index: wp-admin/edit-form-advanced.php
===================================================================
--- wp-admin/edit-form-advanced.php	(revision 23885)
+++ wp-admin/edit-form-advanced.php	(working copy)
@@ -142,33 +142,43 @@
 
 	$all_post_formats = array(
 		'standard' => array (
+			'title'       => $post_type_object->labels->post_format_standard,
 			'description' => __( 'Add a title and use the editor to compose your post.' )
 		),
 		'image' => array (
+			'title'       => $post_type_object->labels->post_format_image,
 			'description' => __( 'Select or upload an image to use for your post.' )
 		),
 		'gallery' => array (
+			'title'       => $post_type_object->labels->post_format_gallery,
 			'description' => __( 'Use the Add Media button to select or upload images for your gallery.' )
 		),
 		'link' => array (
+			'title'       => $post_type_object->labels->post_format_link,
 			'description' => __( 'Add a link URL below.' )
 		),
 		'video' => array (
+			'title'       => $post_type_object->labels->post_format_video,
 			'description' => __( 'Select or upload a video, or paste a video embed code into the box.' )
 		),
 		'audio' => array (
+			'title'       => $post_type_object->labels->post_format_audio,
 			'description' => __( 'Select or upload an audio file, or paste an audio embed code into the box.' )
 		),
 		'chat' => array (
+			'title'       => $post_type_object->labels->post_format_chat,
 			'description' => __( 'Copy a chat or Q&A transcript into the editor.' )
 		),
 		'status' => array (
+			'title'       => $post_type_object->labels->post_format_status,
 			'description' => __( 'Use the editor to compose a status update. What&#8217;s new?' )
 		),
 		'quote' => array (
+			'title'       => $post_type_object->labels->post_format_quote,
 			'description' => __( 'Copy a quotation into the box. Also add the source and URL if you have them.' )
 		),
 		'aside' => array (
+			'title'       => $post_type_object->labels->post_format_aside,
 			'description' => __( 'An aside is a quick thought or side topic. Use the editor to compose one.' )
 		)
 	);
@@ -183,7 +193,7 @@
 			$active_post_format_description = $attr['description'];
 		}
 
-		$post_format_options .= '<a ' . $class . ' href="?format=' . $slug . '" data-description="' . $attr['description'] . '" data-wp-format="' . $slug . '" title="' . ucfirst( sprintf( __( '%s Post' ), $slug ) ) . '"><div class="' . $slug . '"></div></a>';
+		$post_format_options .= '<a ' . $class . ' href="?format=' . $slug . '" data-description="' . esc_attr( $attr['description'] ) . '" data-wp-format="' . $slug . '" title="' . esc_attr( $attr['title'] ) . '"><div class="' . $slug . '"></div></a>';
 	}
 
 	$current_post_format = array( 'currentPostFormat' => esc_html( $active_post_type_slug ) );
@@ -394,7 +404,7 @@
 
 <?php if ( ! empty( $post_format_options ) ) : ?>
 <div class="post-format-options">
-	<span class="post-format-tip">Standard Post</span>
+	<span class="post-format-tip"><?php echo $all_post_formats[$post_format]['title']; ?></span>
 	<?php echo $post_format_options; ?>
 </div>
 <?php endif; ?>
Index: wp-admin/includes/meta-boxes.php
===================================================================
--- wp-admin/includes/meta-boxes.php	(revision 23885)
+++ wp-admin/includes/meta-boxes.php	(working copy)
@@ -315,7 +315,7 @@
 			$post_formats[0][] = $post_format;
 	?>
 	<div id="post-formats-select">
-		<input type="radio" name="post_format" class="post-format" id="post-format-0" value="0" <?php checked( $post_format, '0' ); ?> /> <label for="post-format-0"><?php _e('Standard'); ?></label>
+		<input type="radio" name="post_format" class="post-format" id="post-format-0" value="0" <?php checked( $post_format, '0' ); ?> /> <label for="post-format-0"><?php echo get_post_format_string( 'standard' ); ?></label>
 		<?php foreach ( $post_formats[0] as $format ) : ?>
 		<br /><input type="radio" name="post_format" class="post-format" id="post-format-<?php echo esc_attr( $format ); ?>" value="<?php echo esc_attr( $format ); ?>" <?php checked( $post_format, $format ); ?> /> <label for="post-format-<?php echo esc_attr( $format ); ?>"><?php echo esc_html( get_post_format_string( $format ) ); ?></label>
 		<?php endforeach; ?><br />
Index: wp-admin/options-writing.php
===================================================================
--- wp-admin/options-writing.php	(revision 23885)
+++ wp-admin/options-writing.php	(working copy)
@@ -87,7 +87,7 @@
 <th scope="row"><label for="default_post_format"><?php _e('Default Post Format') ?></label></th>
 <td>
 	<select name="default_post_format" id="default_post_format">
-		<option value="0"><?php _e('Standard'); ?></option>
+		<option value="0"><?php echo get_post_format_string( 'standard' ); ?></option>
 <?php foreach ( $post_formats[0] as $format ): ?>
 		<option<?php selected( get_option('default_post_format'), $format ); ?> value="<?php echo esc_attr( $format ); ?>"><?php echo esc_html( get_post_format_string( $format ) ); ?></option>
 <?php endforeach; ?>
Index: wp-includes/post.php
===================================================================
--- wp-includes/post.php	(revision 23885)
+++ wp-includes/post.php	(working copy)
@@ -1436,7 +1436,17 @@
 		'not_found' => array( __('No posts found.'), __('No pages found.') ),
 		'not_found_in_trash' => array( __('No posts found in Trash.'), __('No pages found in Trash.') ),
 		'parent_item_colon' => array( null, __('Parent Page:') ),
-		'all_items' => array( __( 'All Posts' ), __( 'All Pages' ) )
+		'all_items' => array( __( 'All Posts' ), __( 'All Pages' ) ),
+		'post_format_standard' => array( _x( 'Standard Post', 'Post format' ), _x( 'Standard Page', 'Post format' ) ),
+		'post_format_aside'    => array( _x( 'Aside Post',    'Post format' ), _x( 'Aside Page',    'Post format' ) ),
+		'post_format_chat'     => array( _x( 'Chat Post',     'Post format' ), _x( 'Chat Page',     'Post format' ) ),
+		'post_format_gallery'  => array( _x( 'Gallery Post',  'Post format' ), _x( 'Gallery Page',  'Post format' ) ),
+		'post_format_link'     => array( _x( 'Link Post',     'Post format' ), _x( 'Link Page',     'Post format' ) ),
+		'post_format_image'    => array( _x( 'Image Post',    'Post format' ), _x( 'Image Page',    'Post format' ) ),
+		'post_format_quote'    => array( _x( 'Quote Post',    'Post format' ), _x( 'Quote Page',    'Post format' ) ),
+		'post_format_status'   => array( _x( 'Status Post',   'Post format' ), _x( 'Status Page',   'Post format' ) ),
+		'post_format_video'    => array( _x( 'Video Post',    'Post format' ), _x( 'Video Page',    'Post format' ) ),
+		'post_format_audio'    => array( _x( 'Audio Post',    'Post format' ), _x( 'Audio Page',    'Post format' ) ),
 	);
 	$nohier_vs_hier_defaults['menu_name'] = $nohier_vs_hier_defaults['name'];
 
