Security update for Core, with self-updated composer
[yaffs-website] / vendor / drupal / console-en / translations / config.export.single.yml
1 description: 'Export a single configuration or a list of configurations as yml file(s).'
2 arguments:
3     name: 'Configuration name.'
4 options:
5     include-dependencies: 'Export dependencies of the configuration as well.'
6     simple-configuration: 'Simple configuration'
7     optional: 'Export config as an optional YAML configuration in your module'
8     remove-uuid: 'If set, the configuration will be exported without uuid key.'
9     remove-config-hash: 'If set, the configuration will be exported without the default site hash key.'
10 questions:
11     config-type: 'Configuration type'
12     name: 'Configuration name'
13     optional: 'Export config in module as an optional configuration'
14     remove-uuid: 'Do you want to remove the uuid from this export?'
15     remove-config-hash: 'Do you want to remove the default site hash from this export?'
16 messages:
17     config-not-found: 'Configuration name not found.'
18     export: 'Configuration was exported at file "%s".'
19     invalid-config-type: 'Invalid config type, please select one of the list'
20     invalid-config-name: 'Invalid config name, please select one of the list'
21     config-exported: 'Configuration(s) exported successfully'
22 examples:
23     - description: 'Provide config settings name to be exported'
24       execution: |
25         drupal config:export:single \
26           --name=config.settings.name
27     - description: 'if uuid and/or config hashes will be removed.'
28       execution: |
29         drupal config:export:single \
30           --name=config.settings.name \
31           --remove-uuid \
32           --remove-config-hash