You are here

public function EventRevisionRevertTranslationForm::getQuestion in Event 8

Returns the question to ask the user.

Return value

\Drupal\Core\StringTranslation\TranslatableMarkup The form question. The page title will be set to this value.

Overrides EventRevisionRevertForm::getQuestion

File

src/Form/EventRevisionRevertTranslationForm.php, line 71

Class

EventRevisionRevertTranslationForm
Provides a form for reverting a Event revision for a single translation.

Namespace

Drupal\event\Form

Code

public function getQuestion() {
  return t('Are you sure you want to revert @language translation to the revision from %revision-date?', [
    '@language' => $this->languageManager
      ->getLanguageName($this->langcode),
    '%revision-date' => $this->dateFormatter
      ->format($this->revision
      ->getRevisionCreationTime()),
  ]);
}