614b4216dac9a3fb624e0bd8c2d029243d634623
[yaffs-website] / vendor / drupal / console-en / translations / generate.update.yml
1 description: 'Generate an implementation of hook_update_N()'
2 help: 'The <info>"%s"</info> command helps you generate a hook update N "%s"'
3 welcome: 'Welcome to the Drupal Update generator'
4 options:
5   module: 'The Module name.'
6   update-n: 'Update Number'
7 questions:
8   module: 'Enter the module name'
9   update-n: 'Please provide the Update N to be implemeted'
10 messages:
11   wrong-update-n: 'The update number "%s" is invalid'
12 examples:
13   - description: 'Generate an update N hook implementation specifying the module name and the N value'
14     execution: |
15       drupal generate:update  \
16         --module="modulename"  \
17         --update-n="8001"