From ba7836897bf060d42ab3abed0ba1e5c1d7e722c2 Mon Sep 17 00:00:00 2001 From: Aaron Jorbin Date: Tue, 5 Mar 2024 00:12:11 +0000 Subject: [PATCH] UI-Copy: Use capital cased singular for Site Icon. Follow up to [41749], [57713], and [57730]. Props johnbillion, audrasjb. Fixes #60686. Built from https://develop.svn.wordpress.org/trunk@57766 git-svn-id: http://core.svn.wordpress.org/trunk@57267 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/options-general.php | 2 +- wp-includes/class-wp-customize-manager.php | 2 +- wp-includes/customize/class-wp-customize-media-control.php | 2 +- wp-includes/version.php | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) 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.