diff --git a/core/modules/migrate/migrate.module b/core/modules/migrate/migrate.module index d49714a..89a5a4d 100644 --- a/core/modules/migrate/migrate.module +++ b/core/modules/migrate/migrate.module @@ -15,7 +15,7 @@ function migrate_help($route_name, RouteMatchInterface $route_match) { case 'help.page.migrate': $output = '

' . t('About') . '

'; $output .= '

'; - $output .= t('The Migrate API provides services for migrating data from one place to another (usually, importing it into Drupal entities). The Migrate module implements a general-purpose framework. The Migrate API does not provide a user interface. For more information, see the online documentation for the Migrate module.', array('!migrate' => 'https://www.drupal.org/documentation/modules/migrate')); + $output .= t('The Migrate module provides a framework for migrating data, usually from an external source into your site. It does not provide a user interface. For more information, see the online documentation for the Migrate module.', array('!migrate' => 'https://www.drupal.org/documentation/modules/migrate')); $output .= '

'; return $output; }