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