protected function DateFormatLocalizeResetForm::getQuestion

Returns the question to ask the user.

Return value

string The form question. The page title will be set to this value.

Overrides ConfirmFormBase::getQuestion

File

drupal/core/modules/system/lib/Drupal/system/Form/DateFormatLocalizeResetForm.php, line 60
Contains \Drupal\system\Form\DateFormatLocalizeResetForm.

Class

DateFormatLocalizeResetForm
Builds a form for enabling a module.

Namespace

Drupal\system\Form

Code

protected function getQuestion() {
  return t('Are you sure you want to reset the date formats for %language to the global defaults?', array(
    '%language' => $this->language->name,
  ));
}