diff --git a/core/modules/node/src/Plugin/migrate/builder/d6/Node.php b/core/modules/node/src/Plugin/migrate/builder/d6/Node.php
index 1fcd488..ac08be1 100644
--- a/core/modules/node/src/Plugin/migrate/builder/d6/Node.php
+++ b/core/modules/node/src/Plugin/migrate/builder/d6/Node.php
@@ -51,6 +51,8 @@ public function buildMigrations(array $template) {
       $node_type = $row->getSourceProperty('type');
       $values = $template;
       $values['id'] = $template['id'] . '__' . $node_type;
+      $label = $template['label'];
+      $values['label'] = $this->t("@label (@type)", ['@label' => $label, '@type' => $node_type]);
       $values['source']['node_type'] = $node_type;
       $migration = Migration::create($values);
 
diff --git a/core/modules/node/src/Tests/Migrate/d6/MigrateNodeBuilderTest.php b/core/modules/node/src/Tests/Migrate/d6/MigrateNodeBuilderTest.php
index cba397f..b94580a 100644
--- a/core/modules/node/src/Tests/Migrate/d6/MigrateNodeBuilderTest.php
+++ b/core/modules/node/src/Tests/Migrate/d6/MigrateNodeBuilderTest.php
@@ -23,6 +23,7 @@ public function testCreateMigrations() {
     $templates = [
       'd6_node' => [
         'id' => 'd6_node',
+        'label' => 'Drupal 6 nodes',
         'builder' => [
           'plugin' => 'd6_node',
         ],
@@ -53,6 +54,17 @@ public function testCreateMigrations() {
     $this->assertIdentical('d6_node__test_page', $migrations[8]->id());
     $this->assertIdentical('d6_node__test_planet', $migrations[9]->id());
     $this->assertIdentical('d6_node__test_story', $migrations[10]->id());
+    $this->assertIdentical('Drupal 6 nodes (article)', $migrations[0]->label());
+    $this->assertIdentical('Drupal 6 nodes (company)', $migrations[1]->label());
+    $this->assertIdentical('Drupal 6 nodes (employee)', $migrations[2]->label());
+    $this->assertIdentical('Drupal 6 nodes (event)', $migrations[3]->label());
+    $this->assertIdentical('Drupal 6 nodes (page)', $migrations[4]->label());
+    $this->assertIdentical('Drupal 6 nodes (sponsor)', $migrations[5]->label());
+    $this->assertIdentical('Drupal 6 nodes (story)', $migrations[6]->label());
+    $this->assertIdentical('Drupal 6 nodes (test_event)', $migrations[7]->label());
+    $this->assertIdentical('Drupal 6 nodes (test_page)', $migrations[8]->label());
+    $this->assertIdentical('Drupal 6 nodes (test_planet)', $migrations[9]->label());
+    $this->assertIdentical('Drupal 6 nodes (test_story)', $migrations[10]->label());
   }
 
 }
