diff --git a/wp-admin/about.php b/wp-admin/about.php index 097752abdd..fbc78dea3f 100644 --- a/wp-admin/about.php +++ b/wp-admin/about.php @@ -42,7 +42,7 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
-

+

@@ -52,7 +52,7 @@ include( ABSPATH . 'wp-admin/admin-header.php' );

-

+

Google’s Noto font family.' ), 'https://www.google.com/get/noto/' ); ?>

@@ -64,7 +64,7 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
-

+

Just write. Sometimes, you just need to concentrate on putting your thoughts into words. Try turning on writing mode. When you start typing, all the distractions will fade away, letting you focus solely on your writing. All your editing tools instantly return when you need them.' ); ?>

@@ -73,22 +73,36 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
-

+

-

-

General Settings screen.' ), $display_version, 40, admin_url( 'options-general.php' ) ); ?>

+

+

' . 40 . ''; + $string = __( 'Right now, WordPress %1$s is already translated into %2$s languages, with more always in progress. You can switch to any translation on the General Settings screen.' ); + if ( ! current_user_can( 'manage_options' ) ) { + $string = strip_tags( $string ); + } + echo sprintf( $string, $display_version, $count, admin_url( 'options-general.php' ) ); + ?>

-

+

your profile that logs you out everywhere, for those times you forget to log off a shared computer.' ), get_edit_profile_url() ); ?>

+
-

+

Embeds.' ), 'http://codex.wordpress.org/Embeds' ); ?>

-

-

plugin installer now offers a list of plugins you may want to try, based on others who have similar plugins installed as you.' ), network_admin_url( 'plugin-install.php?tab=recommended' ) ); ?>

+

+

plugin installer now offers a list of plugins you may want to try, based on others who have similar plugins installed as you.' ); + if ( ! current_user_can( 'install_plugins' ) ) { + $string = strip_tags( $string ); + } + echo sprintf( $string, network_admin_url( 'plugin-install.php?tab=recommended' ) ); + ?>

@@ -100,20 +114,23 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
-

-

%s.' ), 'A AND ( B OR C )' ); ?>

+

+

%s.' ), 'A AND ( B OR C )' ); ?>

-

+

-

<title>' ); ?>

+

" tag */ + printf( __( '%s tags in themes' ), '<title>' ); + ?>

add_theme_support( 'title-tag' )" ); + printf( __( '%s tells WordPress to handle the complexities of document titles.' ), "add_theme_support( 'title-tag' )" ); ?>

-

-

developer reference more complete than ever.' ), 'https://developer.wordpress.org/reference/' ); ?>

+

+

developer reference more complete than ever.' ), 'https://developer.wordpress.org/reference/' ); ?>

@@ -132,6 +149,18 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
+ +