diff --git a/core/modules/language/src/Plugin/Block/LanguageBlock.php b/core/modules/language/src/Plugin/Block/LanguageBlock.php index a4c02c0..5e3f333 100644 --- a/core/modules/language/src/Plugin/Block/LanguageBlock.php +++ b/core/modules/language/src/Plugin/Block/LanguageBlock.php @@ -107,7 +107,7 @@ public function blockForm($form, FormStateInterface $form_state) { $links = $this->languageManager->getLanguageSwitchLinks($type, $path); // Warn the user that if there are no links to show, the block won't appear. if (empty($links)) { - drupal_set_message($this->t('You do not have any language detection method enabled that provide URL based detection. The language switcher module will not be shown.'), 'warning'); + drupal_set_message($this->t('You do not have any language detection method enabled that provides URL based detection. The language switcher module will not be shown.'), 'warning'); } return $form;