diff --git a/core/modules/node/src/Form/DeleteMultiple.php b/core/modules/node/src/Form/DeleteMultiple.php
index c75899a..fdcb7fd 100644
--- a/core/modules/node/src/Form/DeleteMultiple.php
+++ b/core/modules/node/src/Form/DeleteMultiple.php
@@ -117,13 +117,13 @@ public function buildForm(array $form, FormStateInterface $form_state) {
if (count($languages) > 1) {
$names = [];
foreach ($languages as $langcode => $language) {
- $names[] = $language->getName();
+ $names[] = $language->getName() . ': ' . $node->getTranslation($langcode)->label();
$key = $node->id() . ':' . $langcode;
unset($items[$key]);
}
$items[$default_key] = [
'label' => [
- '#markup' => $this->t('@label - The following content translations will be deleted:', ['@label' => $node->label()]),
+ '#markup' => $this->t('@label - Since this is the original content, the following content translations will be deleted:', ['@label' => $node->label()]),
],
'deleted_translations' => [
'#theme' => 'item_list',