Index: wp-admin/includes/template.php
===================================================================
--- wp-admin/includes/template.php	(revision 25800)
+++ wp-admin/includes/template.php	(working copy)
@@ -652,7 +652,7 @@
 	$cur_hh = gmdate( 'H', $time_adj );
 	$cur_mn = gmdate( 'i', $time_adj );

-	$month = "<select " . ( $multi ? '' : 'id="mm" ' ) . "name=\"mm\"$tab_index_attribute>\n";
+	$month = '<span><label for="mm">' . __( 'Month' ) . "</label><br /><select " . ( $multi ? '' : 'id="mm" ' ) . "name=\"mm\"$tab_index_attribute>\n";
 	for ( $i = 1; $i < 13; $i = $i +1 ) {
 		$monthnum = zeroise($i, 2);
 		$month .= "\t\t\t" . '<option value="' . $monthnum . '"';
@@ -661,12 +661,12 @@
 		/* translators: 1: month number (01, 02, etc.), 2: month abbreviation */
 		$month .= '>' . sprintf( __( '%1$s-%2$s' ), $monthnum, $wp_locale->get_month_abbrev( $wp_locale->get_month( $i ) ) ) . "</option>\n";
 	}
-	$month .= '</select>';
+	$month .= '</select></span>';

-	$day = '<input type="text" ' . ( $multi ? '' : 'id="jj" ' ) . 'name="jj" value="' . $jj . '" size="2" maxlength="2"' . $tab_index_attribute . ' autocomplete="off" />';
-	$year = '<input type="text" ' . ( $multi ? '' : 'id="aa" ' ) . 'name="aa" value="' . $aa . '" size="4" maxlength="4"' . $tab_index_attribute . ' autocomplete="off" />';
-	$hour = '<input type="text" ' . ( $multi ? '' : 'id="hh" ' ) . 'name="hh" value="' . $hh . '" size="2" maxlength="2"' . $tab_index_attribute . ' autocomplete="off" />';
-	$minute = '<input type="text" ' . ( $multi ? '' : 'id="mn" ' ) . 'name="mn" value="' . $mn . '" size="2" maxlength="2"' . $tab_index_attribute . ' autocomplete="off" />';
+	$day = '<span><label for="jj">' . __( 'Day' ) . '</label><br /><input type="text" ' . ( $multi ? '' : 'id="jj" ' ) . 'name="jj" value="' . $jj . '" size="2" maxlength="2"' . $tab_index_attribute . ' autocomplete="off" /></span>';
+	$year = '<span><label for="aa">' . __( 'Year' ) . '</label><br /><input type="text" ' . ( $multi ? '' : 'id="aa" ' ) . 'name="aa" value="' . $aa . '" size="4" maxlength="4"' . $tab_index_attribute . ' autocomplete="off" /></span>';
+	$hour = '<span><label for="hh"><abbr title="' . __( 'Hour' ) . '">' . __( 'HH' ) . '</abbr></label><br /><input type="text" ' . ( $multi ? '' : 'id="hh" ' ) . 'name="hh" value="' . $hh . '" size="2" maxlength="2"' . $tab_index_attribute . ' autocomplete="off" /></span>';
+	$minute = '<span><label for="mn"><abbr title="' . __( 'Minute' ) . '">' . __( 'MM' ) . '</abbr></label><br /><input type="text" ' . ( $multi ? '' : 'id="mn" ' ) . 'name="mn" value="' . $mn . '" size="2" maxlength="2"' . $tab_index_attribute . ' autocomplete="off" /></span>';

 	echo '<div class="timestamp-wrap">';
 	/* translators: 1: month, 2: day, 3: year, 4: hour, 5: minute */
Index: wp-admin/css/wp-admin.css
===================================================================
--- wp-admin/css/wp-admin.css	(revision 25800)
+++ wp-admin/css/wp-admin.css	(working copy)
@@ -3374,6 +3374,11 @@
 	border-style: solid;
 }

+.timestamp-wrap > span,
+.timestamp-wrap > span label {
+	display: inline-block;
+}
+
 .notification-dialog {
 	position: fixed;
 	top: 30%;
