Security update for Core, with self-updated composer
[yaffs-website] / vendor / drupal / console-en / translations / user.delete.yml
1 description: 'Delete users from the application'
2 help: 'The <info>user:delete</info> command helps you delete users.'
3 welcome: 'Welcome to the Drupal user delete'
4 options:
5   user: 'User name/id to be deleted'
6   roles: 'Users with the listed roles to be deleted'
7 questions:
8   user: 'User name/id to be deleted (empty to skip)'
9   roles: 'Select role(s) associated with users to be deleted'
10 messages:
11   user-id: 'User ID'
12   username: 'Username'
13   user-deleted: 'User "%s" was deleted successfully'
14   users-deleted: '"%s" users were deleted successfully'
15 errors:
16   invalid-user: 'User name/id "%s" is invalid'
17 examples:
18   - description: 'Delete user with the id number 2'
19     execution: |
20       drupal user:delete  \
21         --user="2"
22   - description: 'Delete user with the username "jmolivas"'
23     execution: |
24       drupal user:delete  \
25         --user="jmolivas"
26   - description: 'Delete users with the role "authenticated"'
27     execution: |
28       drupal user:delete  \
29         --role="authenticated"