6957876cd81293324e8721e7d796223a1ba6fdbc
[yaffs-website] / vendor / drupal / console-en / translations / generate.post.update.yml
1 description: 'Generate an implementation of hook_post_update_NAME()'
2 help: 'The <info>"%s"</info> command helps you generate a hook post update NAME "%s"'
3 welcome: 'Welcome to the Drupal Post Updat generator'
4 options:
5   module: 'The Module name.'
6   post-update-name: 'Post Update Name'
7 questions:
8   module: 'Enter the module name'
9   post-update-name: 'Please provide the Post Update Name to be implemeted'
10 messages:
11   wrong-post-update-name: 'The post update name "%s" is invalid'
12   post-update-name-already-implemented: 'The post update name "%s" was already implemented'
13 examples:
14   - description: 'Generate an implementation of post update hook specifying the module name and the post update name'
15     execution: |
16       drupal generate:post:update  \
17         --module="modulename"  \
18         --post-update-name="PostUpdateName"