From 11ccab09e089278d5eaf984dba831674fcd35dfa Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 4 Oct 2017 19:58:31 +0000 Subject: [PATCH] Customize: Improve the wording for Site Icon control intro. Props michelleweber, dlh, menakas, melchoyce. Fixes #40430. git-svn-id: https://develop.svn.wordpress.org/trunk@41749 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/class-wp-customize-manager.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/wp-includes/class-wp-customize-manager.php b/src/wp-includes/class-wp-customize-manager.php index 873b093dfc..9b920d6a2a 100644 --- a/src/wp-includes/class-wp-customize-manager.php +++ b/src/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,