From 083e3ced3f164ed91b296cb95b418d273dce33bf Mon Sep 17 00:00:00 2001 From: Alex Pott <alex.a.pott@googlemail.com> Date: Sun, 28 Mar 2021 10:36:36 +0100 Subject: [PATCH] Issue #3188654 by kuldeep_mehra27, quietone, ravi.shankar, theking2, adalbertov, catch: Link to translations is incorrect --- core/lib/Drupal/Core/Installer/Form/SelectLanguageForm.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/lib/Drupal/Core/Installer/Form/SelectLanguageForm.php b/core/lib/Drupal/Core/Installer/Form/SelectLanguageForm.php index 55b7cbeea7c5..55fb7b64ac82 100644 --- a/core/lib/Drupal/Core/Installer/Form/SelectLanguageForm.php +++ b/core/lib/Drupal/Core/Installer/Form/SelectLanguageForm.php @@ -72,7 +72,7 @@ public function buildForm(array $form, FormStateInterface $form_state, $install_ '#type' => 'item', // #markup is XSS admin filtered which ensures unsafe protocols will be // removed from the url. - '#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 <a href="' . $link_to_english . '">English</a>.</p>', + '#markup' => '<p>Translations will be downloaded from the <a href="https://localize.drupal.org/download">Drupal Translation website</a>. If you do not want this, select <a href="' . $link_to_english . '">English</a>.</p>', '#states' => [ 'invisible' => [ 'select[name="langcode"]' => ['value' => 'en'], -- GitLab