diff --git a/core/modules/update/update.module b/core/modules/update/update.module index b8cb1c8..a8beacd 100644 --- a/core/modules/update/update.module +++ b/core/modules/update/update.module @@ -73,37 +73,21 @@ function update_help($route_name, RouteMatchInterface $route_match) { case 'help.page.update': $output = ''; $output .= '

' . t('About') . '

'; - $output .= '

' . t("The Update Manager module periodically checks for new versions of your site's software (including contributed modules and themes), and alerts administrators to available updates. In order to provide update information, anonymous usage statistics are sent to Drupal.org. If desired, you may disable the Update Manager module from the Module administration page. For more information, see the online handbook entry for Update Manager module.", [ - '@update' => 'http://drupal.org/documentation/modules/update', - '@modules' => \Drupal::url('system.modules_list'), - ]) . '

'; + $output .= '

' . t('The Update Manager module periodically checks for new versions of your site\'s software (including contributed modules and themes), and alerts administrators to available updates. The Update Manager system is also used by some other modules to manage updates and downloads. For example, the Interface Translation module uses the Update Manager to download translation from the localization server, and anonymous usage statistics are sent to Drupal.org. If desired, you may disable the Update Manager module from the Extend page; if you do so, functionality that depends on the Update Manager system will not work. For more information, see the online documentation for the Update Manager module.', array('!update' => 'http://drupal.org/documentation/modules/update', '!modules' => \Drupal::url('system.modules_list'))) . '

'; // Only explain the Update manager if it has not been disabled. if (update_manager_access()) { - $output .= '

' . t('The Update manager also allows administrators to update and install modules and themes through the administration interface.') . '

'; + $output .= '

' . t('The Update Manager also allows administrators to update and install modules and themes through the administration interface.') . '

'; } $output .= '

' . t('Uses') . '

'; $output .= '
'; $output .= '
' . t('Checking for available updates') . '
'; - $output .= '
' . t('A report of available updates will alert you when new releases are available for download. You may configure options for the frequency for checking updates (which are performed during cron runs) and email notifications at the Update Manager settings page.', [ - '@update-report' => \Drupal::url('update.status'), - '@cron' => 'http://drupal.org/cron', - '@update-settings' => \Drupal::url('update.settings'), - ]) . '
'; + $output .= '
' . t('The Available updates report displays core, core modules, contributed modules, and themes for which there are new releases available for download. On the report page, you can also check manually for updates. You can configure the frequency of update checks, which are performed during cron runs, and whether notifications are sent at the Update Manager settings page.', array('!update-report' => \Drupal::url('update.status'), '!update-settings' => \Drupal::url('update.settings'))) . '
'; // Only explain the Update manager if it has not been disabled. if (update_manager_access()) { $output .= '
' . t('Performing updates through the user interface') . '
'; - $output .= '
' . t('The Update Manager module allows administrators to perform updates directly through the administration interface. At the top of the modules and themes pages you will see a link to update to new releases. This will direct you to the update page where you see a listing of all the missing updates and confirm which ones you want to upgrade. From there, you are prompted for your FTP/SSH password, which then transfers the files into your Drupal installation, overwriting your old files. More detailed instructions can be found in the online handbook.', [ - '@modules_page' => \Drupal::url('system.modules_list'), - '@themes_page' => \Drupal::url('system.themes_page'), - '@update-page' => \Drupal::url('update.report_update'), - '@update' => 'http://drupal.org/documentation/modules/update', - ]) . '
'; + $output .= '
' . t('The Update Manager module allows administrators to perform updates directly through the administration interface. At the top of the Extend page and the Appearance page are links to update to new releases. This will direct you to the Update page where all available updates are listed, and where you can confirm whether you want to update them. If you haven\'t got sufficient access rights to your web server, you could be prompted for your FTP/SSH password. Afterwards the files are transferred into your site installation, overwriting your old files.', array('!modules_page' => \Drupal::url('system.modules_list'), '!themes_page' => \Drupal::url('system.themes_page'), '!update-page' => \Drupal::url('update.report_update'))) . '
'; $output .= '
' . t('Installing new modules and themes through the user interface') . '
'; - $output .= '
' . t('You can also install new modules and themes in the same fashion, through the install page, or by clicking the Install new module/theme link at the top of the modules and themes pages. In this case, you are prompted to provide either the URL to the download, or to upload a packaged release file from your local computer.', [ - '@modules_page' => \Drupal::url('system.modules_list'), - '@themes_page' => \Drupal::url('system.themes_page'), - '@install' => \Drupal::url('update.report_install'), - ]) . '
'; + $output .= '
' . t('You can also install new modules and themes in the same fashion, through the Install page, or by clicking the Install new module/theme link at the top of the Extend page and the Appearance page. In this case, you are prompted to provide either the URL to the download, or to upload a packaged release file from your local computer.', array('!modules_page' => \Drupal::url('system.modules_list'), '!themes_page' => \Drupal::url('system.themes_page'), '!install' => \Drupal::url('update.report_install'))) . '
'; } $output .= '
'; return $output;