diff --git a/core/modules/comment/src/Plugin/views/field/CommentBulkForm.php b/core/modules/comment/src/Plugin/views/field/CommentBulkForm.php
index d428373..4f48c87 100644
--- a/core/modules/comment/src/Plugin/views/field/CommentBulkForm.php
+++ b/core/modules/comment/src/Plugin/views/field/CommentBulkForm.php
@@ -10,12 +10,4 @@
  * @ViewsField("comment_bulk_form")
  */
 class CommentBulkForm extends BulkForm {
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function emptySelectedMessage() {
-    return $this->t('Select one or more comments to perform the update on.');
-  }
-
 }
diff --git a/core/modules/node/src/Plugin/views/field/NodeBulkForm.php b/core/modules/node/src/Plugin/views/field/NodeBulkForm.php
index e5aad56..a948865 100644
--- a/core/modules/node/src/Plugin/views/field/NodeBulkForm.php
+++ b/core/modules/node/src/Plugin/views/field/NodeBulkForm.php
@@ -10,12 +10,4 @@
  * @ViewsField("node_bulk_form")
  */
 class NodeBulkForm extends BulkForm {
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function emptySelectedMessage() {
-    return $this->t('No content selected.');
-  }
-
 }
diff --git a/core/modules/system/src/Plugin/views/field/BulkForm.php b/core/modules/system/src/Plugin/views/field/BulkForm.php
index 65fdc51..0e81c3d 100644
--- a/core/modules/system/src/Plugin/views/field/BulkForm.php
+++ b/core/modules/system/src/Plugin/views/field/BulkForm.php
@@ -399,7 +399,7 @@ public function viewsFormSubmit(&$form, FormStateInterface $form_state) {
    *   Message displayed when no items are selected.
    */
   protected function emptySelectedMessage() {
-    return $this->t('No items selected.');
+    return $this->t('No @entities selected.', ['@entities' => \Drupal::entityTypeManager()->getDefinition($this->getEntityType())->getPluralLabel()]);
   }
 
   /**
diff --git a/core/modules/user/src/Plugin/views/field/UserBulkForm.php b/core/modules/user/src/Plugin/views/field/UserBulkForm.php
index 3d0196a..f10ef5b 100644
--- a/core/modules/user/src/Plugin/views/field/UserBulkForm.php
+++ b/core/modules/user/src/Plugin/views/field/UserBulkForm.php
@@ -30,12 +30,4 @@ public function viewsForm(&$form, FormStateInterface $form_state) {
       }
     }
   }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function emptySelectedMessage() {
-    return $this->t('No users selected.');
-  }
-
 }
