Added the Search API Synonym module to deal specifically with licence and license...
[yaffs-website] / vendor / drupal / console-en / translations / generate.plugin.migrate.process.yml
1 description: 'Generate a migrate process plugin'
2 help: 'Creates new process plugin for the migration.'
3 welcome: 'Welcome to the Drupal Migrate Process Plugin generator'
4 options:
5   module: 'The Module name.'
6   class: 'Plugin class name'
7   plugin-id: 'Plugin id'
8 questions:
9   module: 'Enter the module name'
10   class: 'Enter the migration process plugin class name'
11   plugin-id: 'Enter the migration process plugin id'
12 examples:
13   - description: 'Generate a migration plugin process specifying the module name, the class and its id'
14     execution: |
15       drupal generate:plugin:migrate:process  \
16         --module="modulename"  \
17         --class="MigrationProcess"  \
18         --plugin-id="migrationprocess"