diff --git a/core/modules/migrate_drupal_i18n/migrate_drupal_i18n.info.yml b/core/modules/migrate_drupal_i18n/migrate_drupal_i18n.info.yml index ad5bc63965..8b478808f8 100644 --- a/core/modules/migrate_drupal_i18n/migrate_drupal_i18n.info.yml +++ b/core/modules/migrate_drupal_i18n/migrate_drupal_i18n.info.yml @@ -1,6 +1,6 @@ name: 'Migrate Drupal i18n' type: module -description: 'Provides a requirement for all i18n migrations.' +description: 'Required for all i18n migrations.' package: 'Core (Experimental)' core: 8.x dependencies: diff --git a/core/modules/migrate_drupal_i18n/migrate_drupal_i18n.module b/core/modules/migrate_drupal_i18n/migrate_drupal_i18n.module new file mode 100644 index 0000000000..eb8238a20e --- /dev/null +++ b/core/modules/migrate_drupal_i18n/migrate_drupal_i18n.module @@ -0,0 +1,22 @@ +' . t('About') . ''; + $output .= '
' . t('The Migrate Drupal i18n module is a requirement for i18n migrations..'); + return $output; + } +}