diff --git a/core/includes/install.core.inc b/core/includes/install.core.inc index c2558858881e3d67669346ba3324ea57bfff98c9..91f91afc9223312917359da405a8ff9d65a820d9 100644 --- a/core/includes/install.core.inc +++ b/core/includes/install.core.inc @@ -1627,8 +1627,16 @@ function install_select_language_form($form, &$form_state, $files = array()) { if (empty($files)) { $form['help'] = array( + '#type' => 'container', + '#states' => array( + 'invisible' => array( + 'select[name="langcode"]' => array('value' => 'en'), + ), + ), + ); + $form['help']['text'] = array( '#markup' => '
Translations will be downloaded from the Drupal Translation website. ' . - 'If you do not want this, select English and continue the installation. For more information, see the online handbook.
', + 'If you do not want this, select English.', ); } $form['actions'] = array('#type' => 'actions');