From fe5832ebdfade42930ad6aaa83b37fefe1d61ecb Mon Sep 17 00:00:00 2001 From: "Dominik Schilling (ocean90)" Date: Sun, 8 Oct 2017 16:33:52 +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. git-svn-id: https://develop.svn.wordpress.org/trunk@41792 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/class-wp-customize-nav-menus.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/wp-includes/class-wp-customize-nav-menus.php b/src/wp-includes/class-wp-customize-nav-menus.php index ed039507ad..b15c9dce5b 100644 --- a/src/wp-includes/class-wp-customize-nav-menus.php +++ b/src/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 —' ) );