diff -u b/core/modules/update/update.module b/core/modules/update/update.module --- b/core/modules/update/update.module +++ b/core/modules/update/update.module @@ -72,12 +72,12 @@ $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 Extend page. For more information, see the online documentation for the Update Manager module.', array('!update' => 'https://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. If you do not want the functionality a module is providing, you should uninstall it.') . '

'; } $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 e-mail notifications at the Update Manager settings page.', array('!update-report' => \Drupal::url('update.status'), '!update-settings' => \Drupal::url('update.settings'))) . '
'; + $output .= '
' . t('An 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 e-mail notifications on 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') . '
';