X-Git-Url: http://aleph1.co.uk/gitweb/?a=blobdiff_plain;ds=sidebyside;f=vendor%2Fdrupal%2Fconsole-en%2Ftranslations%2Fgenerate.plugin.skeleton.yml;fp=vendor%2Fdrupal%2Fconsole-en%2Ftranslations%2Fgenerate.plugin.skeleton.yml;h=1bf61e7359dd7bfc9d9df51c51d938241403d70c;hb=9917807b03b64faf00f6a1f29dcb6eafc454efa5;hp=084ba5edad1b0622e8feb84bc18fbfe471f4a107;hpb=aea91e65e895364e460983b890e295aa5d5540a5;p=yaffs-website diff --git a/vendor/drupal/console-en/translations/generate.plugin.skeleton.yml b/vendor/drupal/console-en/translations/generate.plugin.skeleton.yml index 084ba5eda..1bf61e735 100644 --- a/vendor/drupal/console-en/translations/generate.plugin.skeleton.yml +++ b/vendor/drupal/console-en/translations/generate.plugin.skeleton.yml @@ -1,13 +1,24 @@ description: 'Generate an implementation of a skeleton plugin' help: 'The "%s" command helps you generate a skeleton plugin "%s".' +welcome: 'Welcome to the Drupal Skeleton Plugin generator' + options: - module: common.options.module - plugin: 'The Plugin Id.' - class: 'Plugin class name' + module: 'The Module name.' + plugin: 'The Plugin Id.' + class: 'Plugin class name' + services: 'Load services from the container.' questions: - module: common.questions.module - plugin: 'Enter the Plugin Id' - class: 'Enter the plugin class name' + module: 'Enter the module name' + plugin: 'Enter the Plugin Id' + class: 'Enter the plugin class name' + services: 'Enter your service' messages: - plugin-dont-exist: 'The plugin "%s" does not exist.' - plugin-generator-implemented: 'Plugin "%s" already has an advanced command generator, please use "%s"' + plugin-dont-exist: 'The plugin "%s" does not exist.' + plugin-generator-implemented: 'Plugin "%s" already has an advanced command generator, please use "%s"' +examples: + - description: 'Generate a plugin skeleton specifying module name, the plugin id and the class' + execution: | + drupal generate:plugin:skeleton \ + --module="modulename" \ + --plugin-id="link_relation_type" \ + --class="DefaultLinkRelationType"