diff --git a/wp-admin/plugins.php b/wp-admin/plugins.php index 70dd206f83..7264c67aed 100644 --- a/wp-admin/plugins.php +++ b/wp-admin/plugins.php @@ -164,7 +164,8 @@ if( !empty($action) ) { wp_enqueue_script('plugin-install'); add_thickbox(); -$help = '

' . sprintf(__('If something goes wrong with a plugin and you can’t use WordPress, delete or rename that file in the %s directory and it will be automatically deactivated.'), WP_PLUGIN_DIR) . '

'; +$help = '

' . __('Plugins extend and expand the functionality of WordPress. Once a plugin is installed, you may activate it or deactivate it here.') . '

'; +$help .= '

' . sprintf(__('If something goes wrong with a plugin and you can’t use WordPress, delete or rename that file in the %s directory and it will be automatically deactivated.'), WP_PLUGIN_DIR) . '

'; $help .= '

' . sprintf(__('You can find additional plugins for your site by using the new Plugin Browser/Installer functionality or by browsing the WordPress Plugin Directory directly and installing manually. To manually install a plugin you generally just need to upload the plugin file into your %2$s directory. Once a plugin has been installed, you may activate it here.'), 'plugin-install.php', WP_PLUGIN_DIR) . '

'; add_contextual_help('plugins', $help); @@ -207,7 +208,6 @@ if ( !empty($invalid) )

-