Index: src/wp-admin/about.php
===================================================================
--- src/wp-admin/about.php	(revision 45274)
+++ src/wp-admin/about.php	(working copy)
@@ -62,12 +62,19 @@
 				<p>
 					<?php
 					printf(
-						/* translators: 1: link to the WordPress 5.1 release post 2: link to /wp-admin/site-health.php 3: link to /wp-admin/site-health.php?tab=debug */
-						__( 'Building on <a href="%1$s">the Site Health features introduced in 5.1</a>, this release adds two new pages to help debug common configuration issues. It also adds space where developers can include debugging information for site maintainers. <a href="%2$s">Check your site status</a>, and <a href="%3$s">learn how to debug issues</a>.' ),
-						__( 'https://wordpress.org/news/2019/02/betty/' ),
-						admin_url( 'site-health.php' ),
-						admin_url( 'site-health.php?tab=debug' )
+						/* translators: 1: link to the WordPress 5.1 release post */
+						__( 'Building on <a href="%1$s">the Site Health features introduced in 5.1</a>, this release adds two new pages to help debug common configuration issues. It also adds space where developers can include debugging information for site maintainers.' ),
+						__( 'https://wordpress.org/news/2019/02/betty/' )
 					);
+
+					if ( current_user_can( 'install_plugins' ) ) {
+						printf(
+							/* translators: 1: link to /wp-admin/site-health.php 2: link to /wp-admin/site-health.php?tab=debug */
+							__( ' <a href="%1$s">Check your site status</a>, and <a href="%2$s">learn how to debug issues</a>.' ),
+							admin_url( 'site-health.php' ),
+							admin_url( 'site-health.php?tab=debug' )
+						);
+					}
 					?>
 				</p>
 			</div>
