diff --git a/src/Plugin/Field/FieldWidget/InlineParagraphsWidget.php b/src/Plugin/Field/FieldWidget/InlineParagraphsWidget.php
index 43aa267..ca7ce9d 100644
--- a/src/Plugin/Field/FieldWidget/InlineParagraphsWidget.php
+++ b/src/Plugin/Field/FieldWidget/InlineParagraphsWidget.php
@@ -869,7 +869,7 @@ public function formMultipleElements(FieldItemListInterface $items, array &$form
         'text' => [
           '#type' => 'container',
           'value' => [
-            '#markup' => $this->t('No @title added yet.', ['@title' => $this->getSetting('title')]),
+            '#markup' => $this->t('No @title added yet.', ['@title' => count($bundles) == 1 ? $bundles[array_keys($bundles)[0]]['label'] : $title]),
             '#prefix' => '<em>',
             '#suffix' => '</em>',
           ]
diff --git a/src/Plugin/Field/FieldWidget/ParagraphsWidget.php b/src/Plugin/Field/FieldWidget/ParagraphsWidget.php
index 632fa7b..35f3a72 100644
--- a/src/Plugin/Field/FieldWidget/ParagraphsWidget.php
+++ b/src/Plugin/Field/FieldWidget/ParagraphsWidget.php
@@ -926,7 +926,7 @@ public function formMultipleElements(FieldItemListInterface $items, array &$form
         'text' => [
           '#type' => 'container',
           'value' => [
-            '#markup' => $this->t('No @title added yet.', ['@title' => $this->getSetting('title')]),
+            '#markup' => $this->t('No @title added yet.', ['@title' => count($bundles) == 1 ? $bundles[array_keys($bundles)[0]]['label'] : $title]),
             '#prefix' => '<em>',
             '#suffix' => '</em>',
           ]
diff --git a/src/Tests/Classic/ParagraphsAdministrationTest.php b/src/Tests/Classic/ParagraphsAdministrationTest.php
index b111028..21d5b79 100644
--- a/src/Tests/Classic/ParagraphsAdministrationTest.php
+++ b/src/Tests/Classic/ParagraphsAdministrationTest.php
@@ -523,7 +523,7 @@ public function testParagraphsCreation() {
     // Verify that the text displayed is correct when no paragraph has been
     // added yet.
     $this->drupalGet('node/add/article');
-    $this->assertText('No Paragraph added yet.');
+    $this->assertText('No Paragraphs added yet.');
 
     $this->drupalGet('admin/content/files');
     $this->clickLink('1 place');
