public function FlaggingCollectionRevisionRevertTranslationForm::getQuestion in Flag Lists 4.0.x
Same name and namespace in other branches
- 8 src/Form/FlaggingCollectionRevisionRevertTranslationForm.php \Drupal\flag_lists\Form\FlaggingCollectionRevisionRevertTranslationForm::getQuestion()
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 FlaggingCollectionRevisionRevertForm::getQuestion
File
- src/
Form/ FlaggingCollectionRevisionRevertTranslationForm.php, line 72
Class
- FlaggingCollectionRevisionRevertTranslationForm
- Provides a form for reverting a Flagging collection revision.
Namespace
Drupal\flag_lists\FormCode
public function getQuestion() {
return $this
->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()),
]);
}