From bdc30ce968662e7576d19f08e893ae80180fd9fd Mon Sep 17 00:00:00 2001 From: Weston Ruter Date: Wed, 29 Jul 2015 18:53:25 +0000 Subject: [PATCH] Customizer: Remove redundant translated string. Props obenland. Fixes #33183. Built from https://develop.svn.wordpress.org/trunk@33493 git-svn-id: http://core.svn.wordpress.org/trunk@33460 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-customize-nav-menus.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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.