X-Git-Url: http://aleph1.co.uk/gitweb/?a=blobdiff_plain;f=vendor%2Fdrupal%2Fconsole-en%2Ftranslations%2Fgenerate.plugin.imageeffect.yml;h=f03b61eefe326671e5b22b252d2d543070e6c270;hb=4e1bfbf98b844da83b18aca92ef00f11a4735806;hp=ac83b21735a929dacf455beefc9aaca96dc1286a;hpb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;p=yaffs-website diff --git a/vendor/drupal/console-en/translations/generate.plugin.imageeffect.yml b/vendor/drupal/console-en/translations/generate.plugin.imageeffect.yml index ac83b2173..f03b61eef 100644 --- a/vendor/drupal/console-en/translations/generate.plugin.imageeffect.yml +++ b/vendor/drupal/console-en/translations/generate.plugin.imageeffect.yml @@ -2,14 +2,25 @@ description: 'Generate image effect plugin.' help: 'The generate:plugin:imageeffect command helps you generate a new image effect plugin.' welcome: 'Welcome to the Drupal Image Effect Plugin generator' options: - module: common.options.module - class: 'Plugin class name' - label: 'Plugin label' - plugin-id: 'Plugin id' - description: 'Plugin Description' + module: 'The Module name.' + class: 'Plugin class name' + label: 'Plugin label' + plugin-id: 'Plugin id' + description: 'Plugin Description' questions: - module: common.questions.module - class: 'Enter the plugin class name' - label: 'Enter the plugin label' - plugin-id: 'Enter the plugin id' - description: 'Enter the plugin Description' + module: 'Enter the module name' + class: 'Enter the plugin class name' + label: 'Enter the plugin label' + plugin-id: 'Enter the plugin id' + description: 'Enter the plugin Description' +suggestions: + my-image-effect: 'My Image Effect' +examples: + - description: 'Generate a image effect plugin specifying the module name, the class, its label, the plugin id and a description' + execution: | + drupal generate:plugin:imageeffect \ + --module="modulename" \ + --class="DefaultImageEffect" \ + --label="Default image effect" \ + --plugin-id="default_image_effect" \ + --description="My Image Effect"