From a59ade22906f0dc05aa70503a31745b40b85a6e4 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 3 Nov 2021 03:16:57 +0000 Subject: [PATCH] Help/About: Improve typography in the `Welcome to your WordPress Dashboard!` text. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Per the general consensus in #8714 and similar tickets, user-facing strings should use “curly quotes” for better typography. Remove the `svn:executable` property that appears to be added accidentally. Follow-up to [38049], [42200], [46585], [51995]. See #54321. Built from https://develop.svn.wordpress.org/trunk@52001 git-svn-id: http://core.svn.wordpress.org/trunk@51590 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/index.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/index.php b/wp-admin/index.php index f1c482bdaa..ccdf525c0c 100644 --- a/wp-admin/index.php +++ b/wp-admin/index.php @@ -34,7 +34,7 @@ $title = __( 'Dashboard' ); $parent_file = 'index.php'; $help = '

' . __( 'Welcome to your WordPress Dashboard!' ) . '

'; -$help .= '

' . __( 'The Dashboard is the first place you will come to every time you log into your site. It is where you will find all your WordPress tools. If you need help, just click the "Help" tab above the screen title.' ) . '

'; +$help .= '

' . __( 'The Dashboard is the first place you will come to every time you log into your site. It is where you will find all your WordPress tools. If you need help, just click the “Help” tab above the screen title.' ) . '

'; $screen = get_current_screen(); diff --git a/wp-includes/version.php b/wp-includes/version.php index cab6e6430d..a5d1355ad0 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '5.9-alpha-52000'; +$wp_version = '5.9-alpha-52001'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.