hechoendrupal / drupal-console-core

This project contains commands and features to be shared across DrupalConsole projects.
134 stars 69 forks source link

Help Text not Translating Custom Command #380

Open dmlb2000 opened 4 years ago

dmlb2000 commented 4 years ago

I'm getting behavior similar to https://github.com/hechoendrupal/drupal-console-core/issues/261 the help text isn't translating for my custom command I generated using Drupal Console.

I'm using Drupal 8.8.2 and Drupal Console 1.9.4 with a vanilla install using composer to manage dependencies.

I created a custom module in the modules directory and a basic custom_module.info.yml file. I then ran drupal generate:command trying to make a new command.

The command shows up in list

$ drupal list | grep form:submit
  form:submit                                 commands.form.submit.description

The file console/translations/en/form.submit.yml exists in the custom_module root directory but it's still not pulling the text in the translation file correctly.

Any help would be appreciated.