This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
drupalcampbristol/vendor/drupal/console-en/translations/generate.profile.yml

38 lines
1.6 KiB
YAML
Raw Normal View History

2018-11-23 12:29:20 +00:00
description: 'Generate a profile.'
help: 'The <info>generate:profile</info> command helps you generate a new installation profile.'
welcome: 'Welcome to the Drupal installation profile generator'
options:
profile: 'The profile name'
machine-name: 'The machine name (lowercase and underscore only)'
profile-path: 'The path of the profile'
description: 'Profile description'
core: 'Core version'
dependencies: 'Module dependencies separated by commas (i.e. context, panels)'
themes: 'the theme name'
distribution: 'The distribution name'
questions:
profile: 'Enter the name of the new profile'
machine-name: 'Enter the machine name'
profile-path: 'Enter the profile Path'
description: 'Enter the description'
core: 'Enter Drupal Core version'
dependencies: 'Would you like to add module dependencies?'
themes: 'Enter theme name'
distribution: 'Is this install profile intended to be a distribution?'
suggestions:
my-useful-profile: 'My Useful Profile'
my-kick-ass-distribution: 'My Kick-ass Distribution'
warnings:
module-unavailable: 'Warning: The following modules are not available in your local environment "%s"'
errors:
directory-exists: 'The target directory "%s" is not empty.'
examples:
- description: 'Generate a profile specifying the profile name, the machine name, a description, the core and its module dependencies'
execution: |
drupal generate:profile \
--profile="NewProfileName" \
--machine-name="newprofilename" \
--description="My Useful Profile" \
--core="8.x" \
--dependencies="modulename"