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
This commit is contained in:
Weston Ruter 2015-07-29 18:53:25 +00:00
parent 8679a93f16
commit bdc30ce968
2 changed files with 3 additions and 3 deletions

View File

@ -336,8 +336,8 @@ final class WP_Customize_Nav_Menus {
'movedDown' => __( 'Menu item moved down' ), 'movedDown' => __( 'Menu item moved down' ),
'movedLeft' => __( 'Menu item moved out of submenu' ), 'movedLeft' => __( 'Menu item moved out of submenu' ),
'movedRight' => __( 'Menu item is now a sub-item' ), 'movedRight' => __( 'Menu item is now a sub-item' ),
/* translators: %s: &#9656 is the unicode right-pointing triangle */ /* translators: ▸ is the unicode right-pointing triangle, and %s is the section title in the Customizer */
'customizingMenus' => __( 'Customizing ▸ Menus' ), 'customizingMenus' => sprintf( __( 'Customizing ▸ %s' ), esc_html( $this->manager->get_panel( 'nav_menus' )->title ) ),
/* translators: %s: title of menu item which is invalid */ /* translators: %s: title of menu item which is invalid */
'invalidTitleTpl' => __( '%s (Invalid)' ), 'invalidTitleTpl' => __( '%s (Invalid)' ),
/* translators: %s: title of menu item in draft status */ /* translators: %s: title of menu item in draft status */

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @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. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.