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 @@ -16,10 +16,10 @@ $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('Managing and displaying number fields') . '
'; + $output .= '
' . t('The settings and the display of the number fields 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 .= '
' . t('When you add a number field you can choose from three types: decimal, float or, integer. The decimal number field type allows 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 (for example, 2012) or values (for example, 1, 2, 5, 305). It does not allow decimals.') . '
'; $output .= '
'; return $output; }