diff -u b/core/modules/entity/entity.module b/core/modules/entity/entity.module --- b/core/modules/entity/entity.module +++ b/core/modules/entity/entity.module @@ -18,8 +18,10 @@ case 'admin/help#entity': $output = ''; $output .= '

' . t('About') . '

'; - $output .= '

' . t('The Entity module manages various types of content for the website. These types of content are collectively know as "entities", which are grouped into "entity types" (such as basic content, comments, custom blocks, taxonomy terms, and user accounts). Most entity types are further grouped into sub-types (such as content types within the basic content entity type, and vocabularies within the taxonomy term entity type); some entity types, such as user accounts, do not have sub-types. For programmers, there are also "configuration entity types", which can be used to manage complex module configuration.') . '

'; - $output .= '

' . t('Content entity types store most of their text, file, and other information in fields. See the Field module help and the Field UI help pages for general information on fields and how to create and manage them. For more information, see the online documentation for the Entity module.', array('!field' => \Drupal::url('help.page', array('name' => 'field')), '!field_ui' => \Drupal::url('help.page', array('name' => 'field_ui')), '!entity_documentation' => 'https://drupal.org/documentation/modules/entity')) . '

'; + $output .= '

' . t('The Entity module manages various types of content and configuration for the website. This information is collectively know as "entities", which are grouped into "entity types" (such as basic content, comments, custom blocks, taxonomy terms, user accounts, and views configuration). Some entity types are further grouped into sub-types (such as content types within the basic content entity type, and vocabularies within the taxonomy term entity type); other entity types, such as user accounts, do not have sub-types.') . '

'; + $output .= '

' . t('Content entity types store most of their text, file, and other information in fields. See the Field module help and the Field UI help pages for general information on fields and how to create and manage them.') . '

'; + $output .= '

' . t('Configuration entity types are used to store complex configuration, such as individual views in the Views module, and settings for your basic content types. Configuration stored in this way can be exported, imported, and managed using the Configuration Manager module. See the Configuration Manager module help page for more information.', array('!config-help' => \Drupal::url('help.page', array('name' => 'config')))) . '

'; + $output .= '

' . t('For more information, see the online documentation for the Entity module.', array('!field' => \Drupal::url('help.page', array('name' => 'field')), '!field_ui' => \Drupal::url('help.page', array('name' => 'field_ui')), '!entity_documentation' => 'https://drupal.org/documentation/modules/entity')) . '

'; $output .= '

' . t('Uses') . '

'; $output .= '
'; $output .= '
' . t('Managing view modes') . '
';