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:
parent
8679a93f16
commit
bdc30ce968
|
@ -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 */
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue