diff --git a/wp-includes/class-wp-customize-nav-menus.php b/wp-includes/class-wp-customize-nav-menus.php index c6f5b4a2a8..030336fb51 100644 --- a/wp-includes/class-wp-customize-nav-menus.php +++ b/wp-includes/class-wp-customize-nav-menus.php @@ -336,8 +336,8 @@ final class WP_Customize_Nav_Menus { 'movedDown' => __( 'Menu item moved down' ), 'movedLeft' => __( 'Menu item moved out of submenu' ), 'movedRight' => __( 'Menu item is now a sub-item' ), - /* translators: %s: ▸ is the unicode right-pointing triangle */ - 'customizingMenus' => __( 'Customizing ▸ Menus' ), + /* translators: ▸ is the unicode right-pointing triangle, and %s is the section title in the Customizer */ + 'customizingMenus' => sprintf( __( 'Customizing ▸ %s' ), esc_html( $this->manager->get_panel( 'nav_menus' )->title ) ), /* translators: %s: title of menu item which is invalid */ 'invalidTitleTpl' => __( '%s (Invalid)' ), /* translators: %s: title of menu item in draft status */ diff --git a/wp-includes/version.php b/wp-includes/version.php index 2972a031a3..2b7a826ca1 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.3-beta4-33492'; +$wp_version = '4.3-beta4-33493'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.