diff -u b/core/modules/datetime/datetime.module b/core/modules/datetime/datetime.module --- b/core/modules/datetime/datetime.module +++ b/core/modules/datetime/datetime.module @@ -34,15 +34,13 @@ case 'admin/help#datetime': $output = ''; $output .= '

' . t('About') . '

'; - $output .= '

' . t('The Datetime module allows you to create fields for storing dates and time. It also provides a form API element called datetime for use in programming modules. 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 Datetime module.', array('!field' => \Drupal::url('help.page', array('name' => 'field')), '!field_ui' => \Drupal::url('help.page', array('name' => 'field_ui')), '!datetime_do' => 'https://drupal.org/documentation/modules/datetime')) . '

'; + $output .= '

' . t('The Datetime module provides a Date field that allows storing dates and times. It also provides the Form API element datetime and datelist for use in programming modules. See the Field module help and the Field UI module help pages for general information on fields and how to create and manage them. For more information, see the online documentation for the Datetime module.', array('!field' => \Drupal::url('help.page', array('name' => 'field')), '!field_ui' => \Drupal::url('help.page', array('name' => 'field_ui')), '!datetime_do' => 'https://drupal.org/documentation/modules/datetime')) . '

'; $output .= '

' . t('Uses') . '

'; $output .= '
'; $output .= '
' . t('Managing and displaying date fields') . '
'; - $output .= '
' . t('The settings and the display of the date 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('The settings and the display of the Date 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('Displaying dates') . '
'; - $output .= '
' . t('Date fields can be displayed using two formatters: the Plain fotmatter which uses the ISO format and the Default formatter which uses human readable formats.') . '
'; - $output .= '
' . t('Validating dates') . '
'; - $output .= '
' . t('Date fields are validated when the content is saved.') . '
'; + $output .= '
' . t('Dates can be displayed using the Plain or the Default formatter. The Plain formatter displays the date in the ISO 8601 format. If you choose the Default formatter, you can choose a format from a predefined list that can be managed on the Date and time formats page.', array('!date_format_list'=> \Drupal::url('system.date_format_list'))) . '
'; $output .= '
'; return $output; }