diff --git a/core/modules/migrate_drupal_i18n/migrate_drupal_i18n.module b/core/modules/migrate_drupal_i18n/migrate_drupal_i18n.module index eb8238a20e..bc6fd48805 100644 --- a/core/modules/migrate_drupal_i18n/migrate_drupal_i18n.module +++ b/core/modules/migrate_drupal_i18n/migrate_drupal_i18n.module @@ -17,6 +17,10 @@ function migrate_drupal_i18n_help($route_name, RouteMatchInterface $route_match) $output = ''; $output .= '
' . t('The Migrate Drupal i18n module is a requirement for i18n migrations..'); + + $output .= '
' . t('The Migrate Drupal i18n module is a requirement for i18n migrations. For more information, see the online documentation for the Migrate Drupal i18n module.', + [':migrate' => 'https://www.drupal.org/upgrade/migrate']) . '
'; + return $output; } }