From 3dfe22a4255427c30bf6186cfc2f185accb8749d Mon Sep 17 00:00:00 2001 From: Dominik Schilling Date: Sun, 8 Oct 2017 16:34:49 +0000 Subject: [PATCH] Customize: Add context to "View All Locations" string. This is about navigation menu locations. Also updates the array alignment to use spaces. See #40104. Built from https://develop.svn.wordpress.org/trunk@41792 git-svn-id: http://core.svn.wordpress.org/trunk@41626 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-customize-nav-menus.php | 8 ++++---- wp-includes/version.php | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/wp-includes/class-wp-customize-nav-menus.php b/wp-includes/class-wp-customize-nav-menus.php index ed039507ad..b15c9dce5b 100644 --- a/wp-includes/class-wp-customize-nav-menus.php +++ b/wp-includes/class-wp-customize-nav-menus.php @@ -583,10 +583,10 @@ final class WP_Customize_Nav_Menus { } $this->manager->add_section( 'menu_locations', array( - 'title' => __( 'View All Locations' ), - 'panel' => 'nav_menus', - 'priority' => 30, - 'description' => $description + 'title' => _x( 'View All Locations', 'menu locations' ), + 'panel' => 'nav_menus', + 'priority' => 30, + 'description' => $description ) ); $choices = array( '0' => __( '— Select —' ) ); diff --git a/wp-includes/version.php b/wp-includes/version.php index a7a6cef689..5ff6de078b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.9-beta1-41791'; +$wp_version = '4.9-beta1-41792'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.