You are here

protected function LanguageDeleteForm::getDeletionMessage in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/language/src/Form/LanguageDeleteForm.php \Drupal\language\Form\LanguageDeleteForm::getDeletionMessage()
  2. 9 core/modules/language/src/Form/LanguageDeleteForm.php \Drupal\language\Form\LanguageDeleteForm::getDeletionMessage()

Gets the message to display to the user after deleting the entity.

Return value

string The translated string of the deletion message.

Overrides EntityDeleteFormTrait::getDeletionMessage

File

core/modules/language/src/Form/LanguageDeleteForm.php, line 31

Class

LanguageDeleteForm
Defines a confirmation form for deleting a language entity.

Namespace

Drupal\language\Form

Code

protected function getDeletionMessage() {
  return $this
    ->t('The %language (%langcode) language has been removed.', [
    '%language' => $this->entity
      ->label(),
    '%langcode' => $this->entity
      ->id(),
  ]);
}