6cf9887210b2260867203ef43550b44faab8ff27
[yaffs-website] / vendor / drupal / console-en / translations / create.terms.yml
1 description: 'Create dummy terms for your Drupal 8 application.'
2 help: 'The <info>create:terms</info> command helps you create dummy terms.'
3 welcome: 'Welcome to the Drupal terms creator'
4 arguments:
5   vocabularies: 'Vocabulary(s) to be used in terms creation'
6 options:
7     limit: 'How many terms would you like to create'
8     name-words: 'Maximum number of words in term names'
9 questions:
10     vocabularies: 'Select vocabulary(s) to be used on terms creation'
11     limit: 'Enter how many terms would you like to create'
12     name-words: 'Enter the maximum number of words in term names'
13 messages:
14     term-id: 'Term Id'
15     vocabulary: 'Vocabulary'
16     name: 'Name'
17     invalid-vocabularies: 'Vocabulary(s) "%s" are invalid'
18     created-terms: 'Created "%s" terms successfully'
19 examples:
20     - description: 'Provide the vocabulary term name.'
21       execution: drupal create:terms vocabulary
22     - description: 'Provide the limit of terms to add and limit of title words.'
23       execution: |
24         drupal create:terms tags \
25           --limit="10" \
26           --name-words="5"
27