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 @@ -52,15 +52,19 @@ case 'admin/help#user': $output = ''; $output .= '

' . t('About') . '

'; - $output .= '

' . t('The User module allows users to register, log in, and log out. It also allows users with proper permissions to manage user roles (used to classify users) and permissions associated with those roles. For more information, see the online handbook entry for User module.', array('@user' => 'http://drupal.org/documentation/modules/user')) . '

'; + $output .= '

' . t('The User module allows users to register, log in, and log out. It also allows users with proper permissions to manage user roles and permissions. For more information, see the online documentation for the User module.', array('!user_docs' => 'https://drupal.org/documentation/modules/user')) . '

'; $output .= '

' . t('Uses') . '

'; $output .= '
'; $output .= '
' . t('Creating and managing users') . '
'; - $output .= '
' . t('The User module allows users with the appropriate permissions to create user accounts through the People administration page, where they can also assign/remove users to/from one or more roles, and block or delete user accounts. If allowed, users without accounts (anonymous users) can create their own accounts on the Create new account page.', array('@permissions' => url('admin/people/permissions', array('fragment' => 'module-user')), '@people' => url('admin/people'), '@register' => url('user/register'))) . '
'; - $output .= '
' . t('User roles and permissions') . '
'; - $output .= '
' . t('Roles are used to group and classify users; each user can be assigned one or more roles. By default there are three 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). Depending on choices you made when you installed Drupal, the installation process may have defined more roles, and you can create additional custom roles on the Roles page. 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' => url('admin/people/permissions'), '@roles' => url('admin/people/roles'))) . '
'; + $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('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-mail messages that are sent automatically during the user registration process.', array('@accounts' => url('admin/config/people/accounts'))) . '
'; + $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 .= '
'; return $output; case 'admin/people/create':