From 387269d5e54258da746d93e5df08fc4d103c2918 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 3 Nov 2021 03:15:21 +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. git-svn-id: https://develop.svn.wordpress.org/trunk@52001 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/_index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/_index.php b/src/wp-admin/_index.php index f1c482bdaa..ccdf525c0c 100755 --- a/src/wp-admin/_index.php +++ b/src/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();