protected function LanguageDeleteForm::getDeletionMessage in Drupal 8
Same name and namespace in other branches
- 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\FormCode
protected function getDeletionMessage() {
return $this
->t('The %language (%langcode) language has been removed.', [
'%language' => $this->entity
->label(),
'%langcode' => $this->entity
->id(),
]);
}