public function LocalTaskUnassignForm::getQuestion

File

translators/tmgmt_local/src/Form/LocalTaskUnassignForm.php, line 19

Class

LocalTaskUnassignForm
Unassign task confirmation form.

Namespace

Drupal\tmgmt_local\Form

Code

public function getQuestion() {
  return new TranslatableMarkup('Are you sure you want to unassign from the translation task @label?', [
    '@label' => $this
      ->getEntity()
      ->label(),
  ]);
}