From 08b57142212e84535c6b898fa06ee699af321ca9 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 4 Oct 2017 19:59:48 +0000 Subject: [PATCH] Customize: Improve the wording for Site Icon control intro. Props michelleweber, dlh, menakas, melchoyce. Fixes #40430. Built from https://develop.svn.wordpress.org/trunk@41749 git-svn-id: http://core.svn.wordpress.org/trunk@41583 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-customize-manager.php | 5 +++-- wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/wp-includes/class-wp-customize-manager.php b/wp-includes/class-wp-customize-manager.php index 873b093dfc..9b920d6a2a 100644 --- a/wp-includes/class-wp-customize-manager.php +++ b/wp-includes/class-wp-customize-manager.php @@ -4340,9 +4340,10 @@ final class WP_Customize_Manager { $this->add_control( new WP_Customize_Site_Icon_Control( $this, 'site_icon', array( 'label' => __( 'Site Icon' ), 'description' => sprintf( + '

' . __( 'Site Icons are what you see in browser tabs, bookmark bars, and within the WordPress mobile apps. Upload one here!' ) . '

' . /* translators: %s: site icon size in pixels */ - __( 'The Site Icon is used as a browser and app icon for your site. Icons must be square, and at least %s pixels wide and tall.' ), - '512' + '

' . __( 'Site Icons should be square and at least %s pixels.' ) . '

', + '512 × 512' ), 'section' => 'title_tagline', 'priority' => 60, diff --git a/wp-includes/version.php b/wp-includes/version.php index f68a714cd9..ebea03624f 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.9-alpha-41748'; +$wp_version = '4.9-alpha-41749'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.