Revert "Issue #2845644 by vaplas, gaurav.kapoor: Missing a space between two sentences"

This reverts commit e94f731d56.
8.4.x
xjm 2017-02-12 04:44:56 -06:00
parent e94f731d56
commit 8f311af046
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ function content_translation_help($route_name, RouteMatchInterface $route_match)
case 'language.content_settings_page':
$output = '';
if (!\Drupal::languageManager()->isMultilingual()) {
$output .= '<p>' . t('Before you can translate content, there must be at least two languages added on the <a href=":url">languages administration</a> page.', array(':url' => \Drupal::url('entity.configurable_language.collection'))) . '</p>';
$output .= '<br/>' . t('Before you can translate content, there must be at least two languages added on the <a href=":url">languages administration</a> page.', array(':url' => \Drupal::url('entity.configurable_language.collection')));
}
return $output;
}

View File

@ -92,7 +92,7 @@ function language_help($route_name, RouteMatchInterface $route_match) {
break;
case 'language.content_settings_page':
return '<p>' . t("Change language settings for <em>content types</em>, <em>taxonomy vocabularies</em>, <em>user profiles</em>, 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.") . '</p>';
return t('Change language settings for <em>content types</em>, <em>taxonomy vocabularies</em>, <em>user profiles</em>, 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.');
}
}