diff --git a/core/includes/module.inc b/core/includes/module.inc index f1d942f..fa6a969 100644 --- a/core/includes/module.inc +++ b/core/includes/module.inc @@ -206,8 +206,6 @@ function module_load_include($type, $module, $name = NULL) { * * @deprecated as of Drupal 8.0. Use * Drupal::moduleHandler()->install($module_list, $enable_dependencies = TRUE) - * - * @todo The only reason for not removing this right now is that Drush uses it. */ function module_enable($module_list, $enable_dependencies = TRUE) { return Drupal::moduleHandler()->install($module_list, $enable_dependencies); @@ -238,8 +236,6 @@ function module_uninstall($module_list = array(), $uninstall_dependents = TRUE) * * @deprecated as of Drupal 8.0. Use * Drupal::moduleHandler()->uninstall($module_list, $uninstall_dependents = TRUE) - * - * @todo The only reason for not removing this right now is that Drush uses it. */ function module_disable($module_list, $uninstall_dependents = TRUE) { return Drupal::moduleHandler()->uninstall($module_list, $uninstall_dependents); diff --git a/core/modules/locale/lib/Drupal/locale/Form/LocaleSettingsForm.php b/core/modules/locale/lib/Drupal/locale/Form/LocaleSettingsForm.php index dc5aa5a..7bf57dc 100644 --- a/core/modules/locale/lib/Drupal/locale/Form/LocaleSettingsForm.php +++ b/core/modules/locale/lib/Drupal/locale/Form/LocaleSettingsForm.php @@ -40,7 +40,7 @@ public function buildForm(array $form, array &$form_state) { $form['check_disabled_projects'] = array( '#type' => 'checkbox', - '#title' => t('Check for updates of disabled themes'), + '#title' => t('Check for updates of disabled projects'), '#default_value' => $config->get('translation.check_disabled_projects'), );