From 73ee8e006d062a6f1d89b2e7d32e33ed900c3002 Mon Sep 17 00:00:00 2001 From: ryan Date: Sun, 19 Apr 2009 01:27:18 +0000 Subject: [PATCH] Move leader text to contextual help. see #9527 git-svn-id: http://svn.automattic.com/wordpress/trunk@11001 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/plugins.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) )

-