diff -u b/core/modules/number/number.module b/core/modules/number/number.module --- b/core/modules/number/number.module +++ b/core/modules/number/number.module @@ -13,7 +13,14 @@ case 'admin/help#number': $output = ''; $output .= '

' . t('About') . '

'; - $output .= '

' . t('The Number module defines various numeric field types for the Field module. Numbers can be in integer, decimal, or floating-point form, and they can be formatted when displayed. Number fields can be limited to a specific set of input values or to a range of values. See the Field module help page for more information about fields.', array('@field-help' => \Drupal::url('help.page', array('name' => 'field')))) . '

'; + $output .= '

' . t('The Number module allows you to create fields that contain various numeric field types. 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 Number module.', array('!field' => \Drupal::url('help.page', array('name' => 'field')), '!field_ui' => \Drupal::url('help.page', array('name' => 'field_ui')), '!number_do' => 'https://drupal.org/documentation/modules/number')) . '

'; + $output .= '

' . t('Uses') . '

'; + $output .= '
'; + $output .= '
' . t('Managing and displaying link fields') . '
'; + $output .= '
' . t('The settings and the display of the link 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('Choosing number field type') . '
'; + $output .= '
' . t('When you add a number field you can choose from three types: decimal, float or integer. The decimal number field type allow users to enter exact decimal values. The float number field type allows users to enter approximate decimal values. The integer number field type allows users to enter whole numbers, such as years (e.g. 2012) or values (e.g. 1, 2, 5, 305). It does not allow decimals.') . '
'; + $output .= '
'; return $output; } }