Index: wp-admin/js/nav-menu.js
===================================================================
--- wp-admin/js/nav-menu.js	(revision 23732)
+++ wp-admin/js/nav-menu.js	(working copy)
@@ -428,40 +428,36 @@
 
 				// Where can they move this menu item?
 				if ( 0 !== position ) {
-					var thisLink = menuItem.find( '.menus-move-up' ),
-						thisLinkText = thisLink.text();
-					thisLink.prop('title', menus.move + ' ' + thisLinkText).show();
+					var thisLink = menuItem.find( '.menus-move-up' );
+					thisLink.prop( 'title', menus.moveUp ).show();
 				}
 
 				if ( 0 !== position && isPrimaryMenuItem ) {
-					var thisLink = menuItem.find( '.menus-move-top' ),
-						thisLinkText = thisLink.text();
-					thisLink.prop('title', menus.move + ' ' + thisLinkText).show();
+					var thisLink = menuItem.find( '.menus-move-top' );
+					thisLink.prop( 'title', menus.moveToTop ).show();
 				}
 
 				if ( position + 1 !== totalMenuItems && 0 !== position ) {
-					var thisLink = menuItem.find( '.menus-move-down' ),
-						thisLinkText = thisLink.text();
-					thisLink.prop('title', menus.move + ' ' + thisLinkText).show();
+					var thisLink = menuItem.find( '.menus-move-down' );
+					thisLink.prop( 'title', menus.moveDown ).show();
 				}
 
 				if ( 0 === position && 0 !== hasSameDepthSibling ) {
-					var thisLink = menuItem.find( '.menus-move-down' ),
-						thisLinkText = thisLink.text();
-					thisLink.prop('title', menus.move + ' ' + thisLinkText).show();
+					var thisLink = menuItem.find( '.menus-move-down' );
+					thisLink.prop( 'title', menus.moveDown ).show();
 				}
 
 				if ( ! isPrimaryMenuItem ) {
 					var thisLink = menuItem.find( '.menus-move-left' ),
-						thisLinkText = menus.outFrom + ' ' + prevItemNameLeft;
-					thisLink.prop('title', menus.move + ' ' + thisLinkText).html(thisLinkText).show();
+						thisLinkText = menus.outFrom.replace( '%s', prevItemNameLeft );
+					thisLink.prop( 'title', menus.moveOutFrom.replace( '%s', prevItemNameLeft ) ).html( thisLinkText ).show();
 				}
 
 				if ( 0 !== position ) {
 					if ( menuItem.find( '.menu-item-data-parent-id' ).val() !== menuItem.prev().find( '.menu-item-data-db-id' ).val() ) {
 						var thisLink = menuItem.find( '.menus-move-right' ),
-							thisLinkText = menus.under + ' ' + prevItemNameRight;
-						thisLink.prop('title', menus.move + ' ' + thisLinkText).html(thisLinkText).show();
+							thisLinkText = menus.under.replace( '%s', prevItemNameRight );
+						thisLink.prop( 'title', menus.moveUnder.replace( '%s', prevItemNameRight ) ).html( thisLinkText ).show();
 					}
 				}
 
@@ -471,17 +467,16 @@
 						totalMenuItems = primaryItems.length,
 
 						// String together help text for primary menu items
-						title = itemName + '. ' + menus.menuFocus.replace('%d', itemPosition).replace('%d', totalMenuItems) + '.';
+						title = menus.menuFocus.replace( '%s', itemName ).replace( '%d', itemPosition ).replace( '%d', totalMenuItems );
 				} else {
 					var parentItem = menuItem.prevAll( '.menu-item-depth-' + parseInt( depth - 1 ) ).first(),
 						parentItemId = parentItem.find( '.menu-item-data-db-id' ).val(),
 						parentItemName = parentItem.find( '.menu-item-title' ).text(),
 						subItems = $( '.menu-item .menu-item-data-parent-id[value="' + parentItemId + '"]' ),
-						itemPosition = $(subItems.parents('.menu-item').get().reverse()).index( menuItem ) + 1;
+						itemPosition = $( subItems.parents('.menu-item').get().reverse() ).index( menuItem ) + 1;
 
 						// String together help text for sub menu items
-
-						title = itemName + '. ' + menus.subMenuFocus.replace('%d', itemPosition) + parentItemName + '.';
+						title = menus.subMenuFocus.replace( '%s', itemName ).replace( '%d', itemPosition ).replace( '%s', parentItemName );
 				}
 
 				$this.prop('title', title).html( title );
Index: wp-admin/nav-menus.php
===================================================================
--- wp-admin/nav-menus.php	(revision 23732)
+++ wp-admin/nav-menus.php	(working copy)
@@ -355,12 +355,16 @@
 $one_theme_location_no_menus = ( 1 == count( get_registered_nav_menus() ) && ! $add_new_screen && empty( $nav_menus ) && ! empty( $page_count->publish ) ) ? true : false;
 
 $l10n = array(
-	"oneThemeLocationNoMenus" => ( $one_theme_location_no_menus ) ? 'true' : 'false',
-	"move" => __( 'Move' ),
-	"menuFocus" => __( 'Menu item %d of %d' ),
-	"subMenuFocus" => __( 'Sub item number %d under' ),
-	"under" => __( 'Under' ),
-	"outFrom" => __( 'Out from under' )
+	'oneThemeLocationNoMenus' => ( $one_theme_location_no_menus ) ? 'true' : 'false',
+	'moveUp'       => __( 'Move up one' ),
+	'moveDown'     => __( 'Move down one' ),
+	'moveUnder'    => __( 'Move under %s' ),
+	'moveOutFrom'  => __( 'Move out from under %s' ),
+	'moveToTop'    => __( 'Move to the top' ),
+	'menuFocus'    => __( '%s. Menu item %d of %d.' ),
+	'subMenuFocus' => __( '%s. Sub item number %d under %s.' ),
+	'under'        => __( 'Under %s' ),
+	'outFrom'      => __( 'Out from under %s' )
 );
 wp_localize_script( 'nav-menu', 'menus', $l10n );
 
