diff --git a/core/modules/content_translation/content_translation.module b/core/modules/content_translation/content_translation.module index a8416db42b6..70413d99d76 100644 --- a/core/modules/content_translation/content_translation.module +++ b/core/modules/content_translation/content_translation.module @@ -42,7 +42,7 @@ function content_translation_help($route_name, RouteMatchInterface $route_match) case 'language.content_settings_page': $output = ''; if (!\Drupal::languageManager()->isMultilingual()) { - $output .= '

' . t('Before you can translate content, there must be at least two languages added on the languages administration page.', array(':url' => \Drupal::url('entity.configurable_language.collection'))) . '

'; + $output .= '
' . t('Before you can translate content, there must be at least two languages added on the languages administration page.', array(':url' => \Drupal::url('entity.configurable_language.collection'))); } return $output; } diff --git a/core/modules/language/language.module b/core/modules/language/language.module index 516f54fb7b1..6876b49c2bb 100644 --- a/core/modules/language/language.module +++ b/core/modules/language/language.module @@ -92,7 +92,7 @@ function language_help($route_name, RouteMatchInterface $route_match) { break; case 'language.content_settings_page': - return '

' . t("Change language settings for content types, taxonomy vocabularies, user profiles, or any other supported element on your site. By default, language settings hide the language selector and the language is the site's default language.") . '

'; + return t('Change language settings for content types, taxonomy vocabularies, user profiles, or any other supported element on your site. By default, language settings hide the language selector and the language is the site\'s default language.'); } }