X-Git-Url: http://aleph1.co.uk/gitweb/?a=blobdiff_plain;f=vendor%2Fdrupal%2Fconsole-en%2Ftranslations%2Fgenerate.post.update.yml;h=6957876cd81293324e8721e7d796223a1ba6fdbc;hb=4e1bfbf98b844da83b18aca92ef00f11a4735806;hp=88d29d8f057a69d2e2ca13ece70e892cc9ac5a44;hpb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;p=yaffs-website diff --git a/vendor/drupal/console-en/translations/generate.post.update.yml b/vendor/drupal/console-en/translations/generate.post.update.yml index 88d29d8f0..6957876cd 100644 --- a/vendor/drupal/console-en/translations/generate.post.update.yml +++ b/vendor/drupal/console-en/translations/generate.post.update.yml @@ -1,9 +1,18 @@ description: 'Generate an implementation of hook_post_update_NAME()' help: 'The "%s" command helps you generate a hook post update NAME "%s"' +welcome: 'Welcome to the Drupal Post Updat generator' options: - post-update-name: 'Post Update Name' + module: 'The Module name.' + post-update-name: 'Post Update Name' questions: - post-update-name: 'Please provide the Post Update Name to be implemeted' + module: 'Enter the module name' + post-update-name: 'Please provide the Post Update Name to be implemeted' messages: - wrong-post-update-name: 'The post update name "%s" is invalid' - post-update-name-already-implemented: 'The post update name "%s" was already implemented' + wrong-post-update-name: 'The post update name "%s" is invalid' + post-update-name-already-implemented: 'The post update name "%s" was already implemented' +examples: + - description: 'Generate an implementation of post update hook specifying the module name and the post update name' + execution: | + drupal generate:post:update \ + --module="modulename" \ + --post-update-name="PostUpdateName"