summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--core/modules/content_translation/content_translation.install2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/modules/content_translation/content_translation.install b/core/modules/content_translation/content_translation.install
index d44b2d112fb..79b76cf0f02 100644
--- a/core/modules/content_translation/content_translation.install
+++ b/core/modules/content_translation/content_translation.install
@@ -21,7 +21,7 @@ function content_translation_enable() {
// Translation works when at least two languages are added.
if (count(\Drupal::languageManager()->getLanguages()) < 2) {
$t_args = array(':language_url' => \Drupal::url('entity.configurable_language.collection'));
- $message = t('Be sure to <a href=":language_url">add at least two languages</a> to translate content.', $t_args);
+ $message = t('This site has only a single language enabled. <a href=":language_url">Add at least one more language</a> in order to translate content.', $t_args);
drupal_set_message($message, 'warning');
}
// Point the user to the content translation settings.