From f70e3595b82584b4ba5537638a5967f64ef88dc4 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Mon, 9 Dec 2013 06:47:10 +0000 Subject: [PATCH] Tighten up the help documentation on the updates page, and add a section for updating translations. see #25688. Built from https://develop.svn.wordpress.org/trunk@26825 git-svn-id: http://core.svn.wordpress.org/trunk@26712 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/update-core.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/wp-admin/update-core.php b/wp-admin/update-core.php index 5ee441216f..b188a75b33 100644 --- a/wp-admin/update-core.php +++ b/wp-admin/update-core.php @@ -460,7 +460,7 @@ $title = __('WordPress Updates'); $parent_file = 'tools.php'; $updates_overview = '

' . __( 'On this screen, you can update to the latest version of WordPress, as well as update your themes and plugins from the WordPress.org repositories.' ) . '

'; -$updates_overview .= '

' . __( 'For security reasons, it is important to keep your WordPress installation up to date whenever possible. If you see an update notification appear in the Toolbar or navigation menu, make sure to take the time to update.' ) . '

'; +$updates_overview .= '

' . __( 'If an update is available, you᾿ll see a notification appear in the Toolbar and navigation menu.' ) . ' ' . __( 'Keeping your site up to date is an important for your site’s security, and makes the internet a safer place for you and your readers.' ) . '

'; get_current_screen()->add_help_tab( array( 'id' => 'overview', @@ -468,9 +468,13 @@ get_current_screen()->add_help_tab( array( 'content' => $updates_overview ) ); -$updates_howto = '

' . __( 'WordPress — Updating your WordPress installation is a simple one-click procedure; just click on the “Update Now” button when you are notified that a new version is available. In most cases, WordPress can automatically apply maintenance and security updates in the background for you. A message at the top of this screen shows whether or not automatic updates will work with your site.' ) . '

'; +$updates_howto = '

' . __( 'WordPress — Updating your WordPress installation is a simple one-click procedure: just click on the “Update Now” button when you are notified that a new version is available.' ) . ' ' . __( 'In most cases, WordPress will automatically apply maintenance and security updates in the background for you.' ) . '

'; $updates_howto .= '

' . __( 'Themes and Plugins — To update individual themes or plugins from this screen, use the checkboxes to make your selection, then click on the appropriate “Update” button. To update all of your themes or plugins at once, you can check the box at the top of the section to select all before clicking the update button.' ) . '

'; +if ( 'en_US' != get_locale() ) { + $updates_howto .= '

' . __( 'Translations — The files translating WordPress into your language are updated for you whenever any other updates occur. But if these files are out of date, you can click the “Update Translations” button.' ) . '

'; +} + get_current_screen()->add_help_tab( array( 'id' => 'how-to-update', 'title' => __( 'How to Update' ), @@ -480,7 +484,6 @@ get_current_screen()->add_help_tab( array( get_current_screen()->set_help_sidebar( '

' . __('For more information:') . '

' . '

' . __( 'Documentation on Updating WordPress' ) . '

' . - '

' . __( 'Configuring Automatic Background Updates' ) . '

' . '

' . __( 'Support Forums' ) . '

' );