diff --git a/src/wp-admin/index.php b/src/wp-admin/index.php index 40e74bb273..adbfe25ccd 100644 --- a/src/wp-admin/index.php +++ b/src/wp-admin/index.php @@ -69,9 +69,17 @@ if ( current_user_can( 'edit_posts' ) ) if ( is_blog_admin() && current_user_can( 'edit_posts' ) ) $help .= '

' . __( "Quick Draft — Allows you to create a new post and save it as a draft. Also displays links to the 5 most recent draft posts you've started." ) . '

'; if ( ! is_multisite() && current_user_can( 'install_plugins' ) ) - $help .= '

' . __( 'WordPress News — Latest news from the official WordPress project, the WordPress Planet, and popular and recent plugins.' ) . '

'; + $help .= '

' . sprintf( + /* translators: %s: WordPress Planet URL */ + __( 'WordPress News — Latest news from the official WordPress project, the WordPress Planet, and popular plugins.' ), + __( 'https://planet.wordpress.org/' ) + ) . '

'; else - $help .= '

' . __( 'WordPress News — Latest news from the official WordPress project, the WordPress Planet.' ) . '

'; + $help .= '

' . sprintf( + /* translators: %s: WordPress Planet URL */ + __( 'WordPress News — Latest news from the official WordPress project and the WordPress Planet.' ), + __( 'https://planet.wordpress.org/' ) + ) . '

'; if ( current_user_can( 'edit_theme_options' ) ) $help .= '

' . __( 'Welcome — Shows links for some of the most common tasks when setting up a new site.' ) . '

';