From 88835bea753b44c24174cf306de7d22cf78b2f41 Mon Sep 17 00:00:00 2001 From: Tonya Mork Date: Tue, 2 Nov 2021 22:53:54 +0000 Subject: [PATCH] Help/About: Improve the Welcome text in `wp-admin/_index.php`. Improves the `Welcome to your WordPress Dashboard!` copy in the `Overview` section of the help tab. Follow-up to [18914], [19007], [37680]. Props webcommsat, marybaum, costdev, audrasjb. Fixes #54321. git-svn-id: https://develop.svn.wordpress.org/trunk@51995 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/_index.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) mode change 100644 => 100755 src/wp-admin/_index.php diff --git a/src/wp-admin/_index.php b/src/wp-admin/_index.php old mode 100644 new mode 100755 index 80e3f25031..f1c482bdaa --- a/src/wp-admin/_index.php +++ b/src/wp-admin/_index.php @@ -33,7 +33,8 @@ if ( wp_is_mobile() ) { $title = __( 'Dashboard' ); $parent_file = 'index.php'; -$help = '

' . __( 'Welcome to your WordPress Dashboard! This is the screen you will see when you log in to your site, and gives you access to all the site management features of WordPress. You can get help for any screen by clicking the Help tab above the screen title.' ) . '

'; +$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.' ) . '

'; $screen = get_current_screen();