diff --git wp-admin/update-core.php wp-admin/update-core.php
index e16fbdf..d087f4d 100644
|
|
get_current_screen()->add_help_tab( array( |
465 | 465 | 'title' => __('Overview'), |
466 | 466 | 'content' => |
467 | 467 | '<p>' . __('This screen lets you update to the latest version of WordPress as well as update your themes and plugins from the WordPress.org repository. When updates are available, the number of available updates will appear in a bubble on the left hand menu as a notification.') . '</p>' . |
468 | | '<p>' . __('It is very important to keep your WordPress installation up to date for security reasons, so when you see a number appear, make sure you take the time to update, which is an easy process.') . '</p>' |
| 468 | '<p>' . __('Since 3.7 WordPress has the ability apply maintenance and security releases. You’ll still need to click “Update Now” once a major or named versions has been released. Please check below to see if your site has the ability to apply the updates automatically.') . '</p>' |
469 | 469 | ) ); |
470 | 470 | |
471 | 471 | get_current_screen()->add_help_tab( array( |
472 | 472 | 'id' => 'how-to-update', |
473 | 473 | 'title' => __('How to Update'), |
474 | 474 | 'content' => |
475 | | '<p>' . __('Updating your WordPress installation is a simple one-click procedure; just click on the Update button when it says a new version is available.') . '</p>' . |
| 475 | '<p>' . __('Updating your WordPress installation is a simple one-click procedure; just click on the Update button when it says a new version is available. Since 3.7 WordPress has the ability apply maintenance and security releases. Please check below to see if your site has the ability to apply the updates automatically.') . '</p>' . |
476 | 476 | '<p>' . __('To update themes or plugins from this screen, use the checkboxes to make your selection and click on the appropriate Update button. Check the box at the top of the Themes or Plugins section to select all and update them all at once.') . '</p>' |
477 | 477 | ) ); |
478 | 478 | |
479 | 479 | get_current_screen()->set_help_sidebar( |
480 | 480 | '<p><strong>' . __('For more information:') . '</strong></p>' . |
481 | 481 | '<p>' . __('<a href="http://codex.wordpress.org/Dashboard_Updates_Screen" target="_blank">Documentation on Updating WordPress</a>') . '</p>' . |
| 482 | '<p>' . __('<a href="http://codex.wordpress.org/Configuring_Automatic_Background_Updates" target="_blank">Configuring Automatic Background Updates</a>') . '</p>' . |
482 | 483 | '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' |
483 | 484 | ); |
484 | 485 | |