diff --git a/core/modules/block_content/block_content.module b/core/modules/block_content/block_content.module index dde325c..459b122 100644 --- a/core/modules/block_content/block_content.module +++ b/core/modules/block_content/block_content.module @@ -18,7 +18,7 @@ function block_content_help($route_name, RouteMatchInterface $route_match) { $field_ui = \Drupal::moduleHandler()->moduleExists('field_ui') ? \Drupal::url('help.page', array('name' => 'field_ui')) : '#'; $output = ''; $output .= '

' . t('About') . '

'; - $output .= '

' . t('The Custom Block module allows you to create custom block types and block content based on those types. Once created, these custom blocks can be placed in regions just like blocks provided by other modules. For more information, see the online documentation for the Custom Block module.', array(':block-types' => \Drupal::url('entity.block_content_type.collection'), ':block-list' => \Drupal::url('entity.block_content.collection'), ':online-help' => 'https://www.drupal.org/documentation/modules/block_content')) . '

'; + $output .= '

' . t('The Custom Block module allows you to create custom block types and block content based on those types. Once created, these custom blocks can be placed in regions just like blocks provided by other modules. For more information, see the online documentation for the Custom Block module.', array(':block-types' => \Drupal::url('entity.block_content_type.collection'), ':block-list' => \Drupal::url('entity.block_content.collection'), ':online-help' => 'https://www.drupal.org/documentation/modules/block_content')) . '

'; $output .= '

' . t('Uses') . '

'; $output .= '
'; $output .= '
' . t('Creating and managing custom block types') . '
'; @@ -29,7 +29,7 @@ function block_content_help($route_name, RouteMatchInterface $route_match) { return $output; case 'entity.block_content.collection': - $output = '

' . t('Every custom block is based on a block type, each with its own fields and display settings. After creating a block, place it in a region from the Block layout page.', array(':types' => \Drupal::url('entity.block_content_type.collection'), ':blocks' => \Drupal::url('block.admin_display'))) . '

'; + $output = '

' . t('Every custom block is based on a reusable block type. Once created, each block can then be placed in any region from the Block layout page.', array(':block-types' => \Drupal::url('entity.block_content_type.collection'), ':block-layout' => \Drupal::url('block.admin_display'))) . '

'; return $output; case 'entity.block_content_type.collection':