X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fdrupal%2Fconsole-en%2Ftranslations%2Fgenerate.update.yml;fp=vendor%2Fdrupal%2Fconsole-en%2Ftranslations%2Fgenerate.update.yml;h=614b4216dac9a3fb624e0bd8c2d029243d634623;hp=ca77f19a778c550e965e53e9ae843346bf543eb4;hb=9917807b03b64faf00f6a1f29dcb6eafc454efa5;hpb=aea91e65e895364e460983b890e295aa5d5540a5 diff --git a/vendor/drupal/console-en/translations/generate.update.yml b/vendor/drupal/console-en/translations/generate.update.yml index ca77f19a7..614b4216d 100644 --- a/vendor/drupal/console-en/translations/generate.update.yml +++ b/vendor/drupal/console-en/translations/generate.update.yml @@ -1,8 +1,17 @@ description: 'Generate an implementation of hook_update_N()' help: 'The "%s" command helps you generate a hook update N "%s"' +welcome: 'Welcome to the Drupal Update generator' options: - update-n: 'Update Number' + module: 'The Module name.' + update-n: 'Update Number' questions: - update-n: 'Please provide the Update N to be implemeted' + module: 'Enter the module name' + update-n: 'Please provide the Update N to be implemeted' messages: - wrong-update-n: 'The update number "%s" is invalid' + wrong-update-n: 'The update number "%s" is invalid' +examples: + - description: 'Generate an update N hook implementation specifying the module name and the N value' + execution: | + drupal generate:update \ + --module="modulename" \ + --update-n="8001"