0adc15a1c286e0bb29ea42093622fb281d0a2f8a
[yaffs-website] / vendor / drupal / console-en / translations / user.create.yml
1 description: 'Create users for the application'
2 help: 'The <info>user:create</info> command helps you create users.'
3 welcome: 'Welcome to the Drupal user create'
4 options:
5   username: 'User name to be created'
6   password: 'User password'
7   roles: 'User roles'
8   email: 'User email'
9   status: 'User status'
10 questions:
11   username: 'User name to be created'
12   password: 'User password (empty to auto-generate)'
13   roles: 'User roles (empty to skip)'
14   email: 'User e-mail (empty to skip)'
15   status: 'User status (empty to skip)'
16 messages:
17   user-id: 'User ID'
18   username: 'Username'
19   password: 'Password'
20   email: 'E-mail'
21   roles: 'Roles'
22   created: 'Created'
23   status: 'Status'
24   user-created: 'User "%s" was created successfully'
25 examples:
26   - description: 'Create user specifying username, password, role, email and status'
27     execution: |
28       drupal user:create  john p455w0rd  \
29         --roles='authenticated'  \
30         --email="john@anexusit.com"  \
31         --status="1"
32   - description: 'Create admin user specifying username, password, role, email and status'
33     execution: |
34       drupal user:create  doe p455w0rd  \
35         --roles='administrator'  \
36         --email="doe@anexusit.com"  \
37         --status="1"