Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / drupal / console-en / translations / generate.profile.yml
1 description: 'Generate a profile.'
2 help: 'The <info>generate:profile</info> command helps you generate a new installation profile.'
3 welcome: 'Welcome to the Drupal installation profile generator'
4 options:
5   profile: 'The profile name'
6   machine-name: 'The machine name (lowercase and underscore only)'
7   profile-path: 'The path of the profile'
8   description: 'Profile description'
9   core: 'Core version'
10   dependencies: 'Module dependencies separated by commas (i.e. context, panels)'
11   themes: 'the theme name'
12   distribution: 'The distribution name'
13 questions:
14   profile: 'Enter the name of the new profile'
15   machine-name: 'Enter the machine name'
16   profile-path: 'Enter the profile Path'
17   description: 'Enter the description'
18   core: 'Enter Drupal Core version'
19   dependencies: 'Would you like to add module dependencies?'
20   themes: 'Enter theme name'
21   distribution: 'Is this install profile intended to be a distribution?'
22 suggestions:
23   my-useful-profile: 'My Useful Profile'
24   my-kick-ass-distribution: 'My Kick-ass Distribution'
25 warnings:
26   module-unavailable: 'Warning: The following modules are not available in your local environment "%s"'
27 errors:
28   directory-exists: 'The target directory "%s" is not empty.'
29 examples:
30   - description: 'Generate a profile specifying the profile name, the machine name, a description, the core and its module dependencies'
31     execution: |
32       drupal generate:profile  \
33         --profile="NewProfileName"  \
34         --machine-name="newprofilename"  \
35         --description="My Useful Profile"  \
36         --core="8.x"  \
37         --dependencies="modulename"