public function PetRevisionRevertTranslationForm::getQuestion in Previewable email templates 8.3
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 PetRevisionRevertForm::getQuestion
File
- src/
Form/ PetRevisionRevertTranslationForm.php, line 70
Class
- PetRevisionRevertTranslationForm
- Provides a form for reverting a Pet revision for a single translation.
Namespace
Drupal\pet\FormCode
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()),
]);
}