diff --git a/wp-admin/options-general.php b/wp-admin/options-general.php index c704829b49..28aa16cb9a 100644 --- a/wp-admin/options-general.php +++ b/wp-admin/options-general.php @@ -199,7 +199,7 @@ $tagline_description = sprintf(

512 × 512' ); + printf( __( 'The Site Icon is what you see in browser tabs, bookmark bars, and within the WordPress mobile apps. It should be square and at least %s pixels.' ), '512 × 512' ); ?>

diff --git a/wp-includes/class-wp-customize-manager.php b/wp-includes/class-wp-customize-manager.php index 51e979dfe0..baad9fedab 100644 --- a/wp-includes/class-wp-customize-manager.php +++ b/wp-includes/class-wp-customize-manager.php @@ -5199,7 +5199,7 @@ final class WP_Customize_Manager { 'label' => __( 'Site Icon' ), 'description' => sprintf( /* translators: %s: Site Icon size in pixels. */ - '

' . __( 'Site Icons are what you see in browser tabs, bookmark bars, and within the WordPress mobile apps. They should be square and at least %s pixels.' ) . '

', + '

' . __( 'The Site Icon is what you see in browser tabs, bookmark bars, and within the WordPress mobile apps. It should be square and at least %s pixels.' ) . '

', '512 × 512' ), 'section' => 'title_tagline', diff --git a/wp-includes/customize/class-wp-customize-media-control.php b/wp-includes/customize/class-wp-customize-media-control.php index ba8d8e9d31..c4af7c24ed 100644 --- a/wp-includes/customize/class-wp-customize-media-control.php +++ b/wp-includes/customize/class-wp-customize-media-control.php @@ -245,7 +245,7 @@ class WP_Customize_Media_Control extends WP_Customize_Control { case 'image': return array( 'select' => __( 'Select image' ), - 'site_icon' => __( 'Select site icon' ), + 'site_icon' => __( 'Select Site Icon' ), 'change' => __( 'Change image' ), 'default' => __( 'Default' ), 'remove' => __( 'Remove' ), diff --git a/wp-includes/version.php b/wp-includes/version.php index abaa4a5cc3..959e13b893 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.5-beta3-57765'; +$wp_version = '6.5-beta3-57766'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.