From ce81b7a849576d99b5aa13077dc5e767d1496638 Mon Sep 17 00:00:00 2001 From: "David A. Kennedy" Date: Fri, 28 Oct 2016 23:44:33 +0000 Subject: [PATCH] Twenty Seventeen: Adds missing theme text domains to starter content * Also, changes the top menu label so it has better context when read alone by assistive technology. Props anilbasnet. Fixes #38542. Built from https://develop.svn.wordpress.org/trunk@39001 git-svn-id: http://core.svn.wordpress.org/trunk@38943 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentyseventeen/functions.php | 6 +++--- wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wp-content/themes/twentyseventeen/functions.php b/wp-content/themes/twentyseventeen/functions.php index 4090cbfad8..5a0c03cd5a 100644 --- a/wp-content/themes/twentyseventeen/functions.php +++ b/wp-content/themes/twentyseventeen/functions.php @@ -57,7 +57,7 @@ function twentyseventeen_setup() { // This theme uses wp_nav_menu() in two locations. register_nav_menus( array( - 'top' => __( 'Top', 'twentyseventeen' ), + 'top' => __( 'Top Menu', 'twentyseventeen' ), 'social' => __( 'Social Links Menu', 'twentyseventeen' ), ) ); @@ -143,7 +143,7 @@ function twentyseventeen_setup() { 'nav_menus' => array( 'top' => array( - 'name' => __( 'Top' ), + 'name' => __( 'Top', 'twentyseventeen' ), 'items' => array( 'page_home', 'page_about', @@ -152,7 +152,7 @@ function twentyseventeen_setup() { ), ), 'social' => array( - 'name' => __( 'Social' ), + 'name' => __( 'Social', 'twentyseventeen' ), 'items' => array( 'link_yelp', 'link_facebook', diff --git a/wp-includes/version.php b/wp-includes/version.php index b378253a89..b3e851db05 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.7-beta1-39000'; +$wp_version = '4.7-beta1-39001'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.