diff --git a/src/wp-admin/includes/plugin-install.php b/src/wp-admin/includes/plugin-install.php
index f2f02e0218..df3e75482b 100644
|
a
|
b
|
function install_popular_tags( $args = array() ) { |
| 267 | 267 | */ |
| 268 | 268 | function install_dashboard() { |
| 269 | 269 | ?> |
| 270 | | <p> |
| 271 | | <?php |
| 272 | | printf( |
| 273 | | /* translators: %s: https://wordpress.org/plugins/ */ |
| 274 | | __( 'Plugins extend and expand the functionality of WordPress. You may automatically install plugins from the <a href="%s">WordPress Plugin Directory</a> or upload a plugin in .zip format by clicking the button at the top of this page.' ), |
| 275 | | __( 'https://wordpress.org/plugins/' ) |
| 276 | | ); |
| 277 | | ?> |
| 278 | | </p> |
| 279 | 270 | |
| 280 | 271 | <?php display_plugins_table(); ?> |
| 281 | 272 | |
| … |
… |
function display_plugins_table() { |
| 410 | 401 | 'https://make.wordpress.org/core/handbook/about/release-cycle/features-as-plugins/' |
| 411 | 402 | ); |
| 412 | 403 | break; |
| | 404 | case 'install_plugins_featured': |
| | 405 | printf( |
| | 406 | /* translators: %s: https://wordpress.org/plugins/ */ |
| | 407 | '<p>' . __( 'Plugins extend and expand the functionality of WordPress. You may automatically install plugins from the <a href="%s">WordPress Plugin Directory</a> or upload a plugin in .zip format by clicking the button at the top of this page.' ) . '</p>', |
| | 408 | __( 'https://wordpress.org/plugins/' ) |
| | 409 | ); |
| | 410 | break; |
| 413 | 411 | } |
| 414 | 412 | |
| 415 | 413 | ?> |