diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9438ee2 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +sites/default/files diff --git a/core/modules/text/text.module b/core/modules/text/text.module index e8ee48e..b5c893b 100644 --- a/core/modules/text/text.module +++ b/core/modules/text/text.module @@ -41,9 +41,9 @@ function text_help($path, $arg) { $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('Using text formats and editors') . '
'; - $output .= '
' . t('With the Text processing options you can restrict the input to Plain textonly, or allow users to formated text. Which options are available to individual users depends on the settings on the Text formats and editors page . If formated text is submitted, you can still display it without the formatting by choosing Plain text as Format on the Manage Display page.', array('!formats' => \Drupal::url('filter.admin_overview'))) . '
'; - $output .= '
' . t('Setting and display the text length') . '
'; - $output .= '
' . t('You can change the number of characters that define the maximum text length in the Field settings when you set up the field. Independent from this maximum length, you can change the size of the field in which content can be entered on the Manage Form Display page. On the Manage Display page you can choose whether to displayed a trimmed version of the text, and if so after how many characters the text should be cut off.') . '
'; + $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 Format on the Manage Display page.', array('!formats' => \Drupal::url('filter.admin_overview'))) . '
'; + $output .= '
' . t('Setting the text length') . '
'; + $output .= '
' . t('You can set the maximum text length in the Field settings when you set up the field. On the Manage Display page you can choose whether to display a trimmed version of the text, and if so, where to cut off the text.') . '
'; $output .= ''; return $output; }