public function NodeRevisionRevertTranslationForm::getQuestion in Drupal 10
Same name and namespace in other branches
- 8 core/modules/node/src/Form/NodeRevisionRevertTranslationForm.php \Drupal\node\Form\NodeRevisionRevertTranslationForm::getQuestion()
- 9 core/modules/node/src/Form/NodeRevisionRevertTranslationForm.php \Drupal\node\Form\NodeRevisionRevertTranslationForm::getQuestion()
File
- core/modules/ node/ src/ Form/ NodeRevisionRevertTranslationForm.php, line 73 
Class
- NodeRevisionRevertTranslationForm
- Provides a form for reverting a node revision for a single translation.
Namespace
Drupal\node\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()),
  ]);
}