diff --git a/core/modules/text/text.module b/core/modules/text/text.module index 233418a4bcf604c23e97cbeb2429052314e734f9..ea91ce839f3e884e5e93f24a91a07adc3a77e78d 100644 --- a/core/modules/text/text.module +++ b/core/modules/text/text.module @@ -24,17 +24,17 @@ function text_help($route_name, RouteMatchInterface $route_match) { $output .= '
' . t('Managing and displaying text fields') . '
'; $output .= '
' . t('The settings and display of the text field can be configured separately. See the Field UI help for more information on how to manage fields and their display.', array('!field_ui' => \Drupal::url('help.page', array('name' => 'field_ui')))) . '
'; $output .= '
' . t('Creating short text fields') . '
'; - $output .= '
' . t('If you choose Text as the field type on the Manage fields page, then a field with a single row is displayed. You can change the maximum text length in the Field settings when you set up the field.') . '
'; + $output .= '
' . t('If you choose Text (plain) or Text (formatted) as the field type on the Manage fields page, then a field with a single row is displayed. You can change the maximum text length in the Field settings when you set up the field.') . '
'; $output .= '
' . t('Creating long text fields') . '
'; - $output .= '
' . t('If you choose Long text or Long text and summary on the Manage fields page, then users can insert text of unlimited length. On the Manage form display page, you can set the number of rows that are displayed to users.') . '
'; + $output .= '
' . t('If you choose Text (plain, long), Text (formatted, long), or Text (formatted, long, with summary) on the Manage fields page, then users can insert text of unlimited length. On the Manage form display page, you can set the number of rows that are displayed to users.') . '
'; $output .= '
' . t('Trimming the text length') . '
'; $output .= '
' . t('On the Manage display page you can choose to display a trimmed version of the text, and if so, where to cut off the text.') . '
'; $output .= '
' . t('Displaying summaries instead of trimmed text') . '
'; - $output .= '
' . t('As an alternative to using a trimmed version of the text, you can enter a separate summary by choosing the Long text with summary field type on the Manage fields page. Even when Summary input is enabled, and summaries are provided, you can display trimmed text nonetheless by choosing the appropriate format on the Manage display page.') . '
'; + $output .= '
' . t('As an alternative to using a trimmed version of the text, you can enter a separate summary by choosing the Text (formatted, long, with summary) field type on the Manage fields page. Even when Summary input is enabled, and summaries are provided, you can display trimmed text nonetheless by choosing the appropriate format on the Manage display page.') . '
'; $output .= '
' . t('Using text formats and editors') . '
'; - $output .= '
' . t('With the Text processing options you can restrict the input to Plain text only, or allow users to format text. Which options are available to individual users depends on the settings on the Text formats and editors page. If formatted text is submitted, you can still display it without the formatting by choosing Plain text as the Format on the Manage display page.', array('!formats' => \Drupal::url('filter.admin_overview'))) . '
'; + $output .= '
' . t('If you choose Text (plain) or Text (plain, long) you restrict the input to Plain text only. If you choose Text (formatted), Text (formatted, long), or Text (formatted, long with summary) you allow users to write formatted text. Which options are available to individual users depends on the settings on the Text formats and editors page.', array('!formats' => \Drupal::url('filter.admin_overview'))) . '
'; $output .= ''; - return $output; + return $output; } }