From 292d1644c4322ad9d4a6fa3c3e61f46241d563f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Harold=20Ju=C3=A1rez?= Date: Mon, 15 Jul 2019 12:08:29 -0600 Subject: [PATCH] Specify extension key (#241) --- translations/common.yml | 4 ++-- translations/generate.command.yml | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/translations/common.yml b/translations/common.yml index abc9c4c..c096239 100644 --- a/translations/common.yml +++ b/translations/common.yml @@ -2,8 +2,8 @@ options: class: 'Class name' events: 'Load events from the container' module: 'The Module name.' - extension: 'The extension name.' - extension-type: 'The extension type.' + extension: 'The name of the Extension (modules, profiles or themes name).' + extension-type: 'The type of the Extension (can be module, profile or theme).' services: 'Load services from the container.' tags: 'Set service tags from the container.' inputs: 'Create inputs in a form.' diff --git a/translations/generate.command.yml b/translations/generate.command.yml index 7452034..cf82639 100644 --- a/translations/generate.command.yml +++ b/translations/generate.command.yml @@ -2,7 +2,8 @@ description: 'Generate commands for the console.' help: 'The generate:command command helps you generate a new command.' welcome: 'Welcome to the Drupal Command generator' options: - extension: 'The name of the Extension (that will contain the command).' + extension: 'The name of the Extension (modules, profiles or themes name that will contain the command).' + extension-type: 'The type of the Extension (can be module, profile or theme).' class: 'The Class that describes the command. (Must end with the word ''Command'').' name: 'The Command name.' interact: 'Add interact method.'