e51388f78196deec1b8440d590c7727535d133ee
[yaffs-website] / vendor / drupal / console-en / translations / create.nodes.yml
1 description: 'Create dummy nodes for your Drupal 8 application.'
2 help: 'The <info>create:nodes</info> command helps you create dummy nodes.'
3 welcome: 'Welcome to the Drupal nodes generator'
4 arguments:
5   content-types: 'Content type(s) to be used in node creation'
6 options:
7     limit: 'How many nodes would you like to create'
8     title-words: 'Maximum number of words in node titles'
9     time-range: 'How far back in time should the nodes be dated'
10 questions:
11     content-type: 'Select content type(s) to be used on node creation'
12     limit: 'Enter how many nodes would you like to generate'
13     title-words: 'Enter the maximum number of words in titles'
14     time-range: 'How far back in time should the nodes be dated?'
15     time-ranges:
16         - 'Now'
17         - '1 hour ago'
18         - '1 day ago'
19         - '1 week ago'
20         - '1 month ago'
21         - '1 year ago'
22 messages:
23     node-id: 'Node Id'
24     content-type: 'Content type'
25     title: 'Title'
26     created: 'Created Time'
27     invalid-content-types: 'Content types "%s" are invalid'
28     created-nodes: 'Created "%s" nodes successfully'
29 examples:
30     - description: 'Provide the content type name.'
31       execution: drupal create:nodes content-name
32     - description: 'Provide the limit of publications, limit of title words, time range and language.'
33       execution: |
34         drupal create:nodes content-name \
35           --limit="5" \
36           --title-words="5" \
37           --time-range="1" \
38           --language="und"
39