diff -u b/core/modules/locale/lib/Drupal/locale/Form/TranslationStatusForm.php b/core/modules/locale/lib/Drupal/locale/Form/TranslationStatusForm.php --- b/core/modules/locale/lib/Drupal/locale/Form/TranslationStatusForm.php +++ b/core/modules/locale/lib/Drupal/locale/Form/TranslationStatusForm.php @@ -68,9 +68,6 @@ * @ingroup forms */ public function buildForm(array $form, array &$form_state) { - $this->moduleHandler->loadInclude('locale', 'translation.inc'); - $this->moduleHandler->loadInclude('locale', 'compare.inc'); - $languages = locale_translatable_language_list(); $status = locale_translation_get_status(); $options = array(); @@ -194,6 +191,7 @@ // @todo Calling locale_translation_build_projects() is an expensive way to // get a module name. In follow-up issue http://drupal.org/node/1842362 // the project name will be stored to display use, like here. + $this->moduleHandler->loadInclude('locale', 'compare.inc'); $project_data = locale_translation_build_projects(); foreach ($status as $project_id => $project) {