Make WordPress Core

Ticket #25688: 25688.7.diff

File 25688.7.diff, 3.5 KB (added by kpdesign, 11 years ago)

Incorporates latest text changes, adds entities for special characters

  • src/wp-admin/update-core.php

     
    464464'id'            => 'overview',
    465465'title'         => __('Overview'),
    466466'content'       =>
    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>'
     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 you have updates available, a notification will appear in the navigation menu.') . '</p>' .
     468        '<p>' . __('It is important to keep your WordPress installation up to date for security reasons. Updating is an easy process, so when you see a notification, make sure you take the time to update.') . '</p>' .
     469        '<p>' . sprintf( __('You will need to update when a new major version has been released. WordPress is able to <a target="_blank" href="%s">automatically apply</a> maintenance and security updates in the background. Check below to see if your site is able to apply these updates automatically.'), esc_url( 'http://codex.wordpress.org/Updating_WordPress#Automatic_Background_Updates' ) ) . '</p>'
    469470) );
    470471
    471472get_current_screen()->add_help_tab( array(
     
    472473'id'            => 'how-to-update',
    473474'title'         => __('How to Update'),
    474475'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>' .
    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>'
     476        '<p>' . __('Updating your WordPress installation is a simple process &mdash; click the &#8220;Update Now&#8221; button when you are notified that a new major version of WordPress is available.') . '</p>' .
     477        '<p>' . sprintf( __('For maintenance and security releases, WordPress is able to <a target="_blank" href="%s">automatically apply</a> the updates in the background. Check below to see if your site is able to apply these updates automatically.'), esc_url( 'http://codex.wordpress.org/Updating_WordPress#Automatic_Background_Updates' ) ) . '</p>' .
     478        '<p>' . __('To update themes or plugins from this screen, use the checkboxes to make your selection, then click on the appropriate &#8220;Update&#8221; button. Check the box at the top of the Themes or Plugins section to select all, and update them all at once.') . '</p>'
    477479) );
    478480
    479481get_current_screen()->set_help_sidebar(
    480482        '<p><strong>' . __('For more information:') . '</strong></p>' .
    481483        '<p>' . __('<a href="http://codex.wordpress.org/Dashboard_Updates_Screen" target="_blank">Documentation on Updating WordPress</a>') . '</p>' .
     484        '<p>' . __('<a href="http://codex.wordpress.org/Configuring_Automatic_Background_Updates" target="_blank">Configuring Automatic Background Updates</a>') . '</p>' .
    482485        '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
    483486);
    484487