diff -u b/core/modules/user/user.module b/core/modules/user/user.module --- b/core/modules/user/user.module +++ b/core/modules/user/user.module @@ -56,15 +56,15 @@ $output .= '

' . t('Uses') . '

'; $output .= '
'; $output .= '
' . t('Creating and managing users') . '
'; - $output .= '
' . t('Through the People administration page you can create and cancel user accounts and assign users to roles. By editing one particular user you change his username, email address and password', array('!people' => \Drupal::url('user.admin_account'), '!account-settings' => \Drupal::url('user.account_settings'))) . '
'; + $output .= '
' . t('Through the People administration page you can create and cancel user accounts and assign users to roles. By editing one particular user you change the username, e-mail address, and password', array('!people' => \Drupal::url('user.admin_account'))) . '
'; $output .= '
' . t('User roles') . '
'; $output .= '
' . t('User roles are used to group and classify users; each user can be assigned one or more roles. Typically there are three pre-defined roles: anonymous user (users that are not logged in), authenticated user (users that are registered and logged in) and administrator (users that are registered, logged in as administrator). You can create additional roles on the Roles page.', array('!roles' => \Drupal::url('user.role_list'))) . '
'; $output .= '
' . t('Permissions') . '
'; $output .= '
' . t('After creating roles, you can set permissions for each role on the Permissions page. Granting a permission allows users who have been assigned a particular role to perform an action on the site, such as viewing a particular type of content, editing or creating content, administering settings for a particular module, or using a particular function of the site (such as search).', array('!permissions_user' => \Drupal::url('user.admin_permissions'))) . '
'; $output .= '
' . t('Account settings') . '
'; - $output .= '
' . t('The Account settings page allows you to manage settings for the displayed name of the anonymous user role, default administrator role (this role will be automatically assigned new permissions whenever a module is enabled.), personal contact forms, user registration, and account cancellation. On this page you can also manage settings for account personalization (including signatures), and adapt the text for the e-mails that users receive when they register or request a password recovery.', array('!accounts' => \Drupal::url('user.account_settings'))) . '
'; - $output .= '
' . t('Managing user profile') . '
'; - $output .= '
' . t('Because User accounts are Entity types, you can extend them by adding fields through the Manage fields tab on the Account settings page. By adding fields for e.g., a picture, a biography or address you can a create a custom profile for the users of the website.', array('!entity_help' => \Drupal::url('help.page', array('name' => 'entity')),'!field_help'=>\Drupal::url('help.page', array('name' => 'field')), array('!accounts' => \Drupal::url('user.account_settings')))) . '
'; + $output .= '
' . t('The Account settings page allows you to manage settings for the displayed name of the anonymous user role, default administrator role (this role will be automatically assigned new permissions whenever a module is enabled.), personal contact forms, user registration, and account cancellation. On this page you can also manage settings for account personalization (including signatures), and adapt the text for the e-mail messages that users receive when they register or request a password recovery.', array('!accounts' => \Drupal::url('user.account_settings'))) . '
'; + $output .= '
' . t('Managing user account fields') . '
'; + $output .= '
' . t('Because User accounts are an entity type, you can extend them by adding fields through the Manage fields tab on the Account settings page. By adding fields for e.g., a picture, a biography, or address, you can a create a custom profile for the users of the website.', array('!entity_help' => \Drupal::url('help.page', array('name' => 'entity')),'!field_help'=>\Drupal::url('help.page', array('name' => 'field')), '!accounts' => \Drupal::url('user.account_settings'))) . '
'; $output .= '
'; return $output; case 'admin/people/create':