Issue #2185583 by longwave, InternetDevels: Allow to select "English" language via mouse click in installer language selection screen.

8.0.x
Alex Pott 2014-03-04 13:05:44 +00:00
parent 056096a32e
commit 22fa67d934
1 changed files with 4 additions and 2 deletions

View File

@ -1627,8 +1627,10 @@ function install_select_language_form($form, &$form_state, $files = array()) {
if (empty($files)) {
$form['help'] = array(
'#type' => 'item',
'#markup' => '<p>Translations will be downloaded from the <a href="http://localize.drupal.org">Drupal Translation website</a>. ' .
'If you do not want this, select <em>English</em>.</p>',
'#markup' => \Drupal\Component\Utility\String::format('<p>Translations will be downloaded from the <a href="http://localize.drupal.org">Drupal Translation website</a>.
If you do not want this, select <a href="!english">English</a>.</p>', array(
'!english' => install_full_redirect_url(array('parameters' => array('langcode' => 'en'))),
)),
'#states' => array(
'invisible' => array(
'select[name="langcode"]' => array('value' => 'en'),