You are here

public function CurrencyLocaleDeleteForm::getConfirmText in Currency 8.3

Returns a caption for the button that confirms the action.

Return value

\Drupal\Core\StringTranslation\TranslatableMarkup The form confirmation text.

Overrides EntityConfirmFormBase::getConfirmText

File

src/Entity/CurrencyLocale/CurrencyLocaleDeleteForm.php, line 52

Class

CurrencyLocaleDeleteForm
Provides a currency currency locale delete form.

Namespace

Drupal\currency\Entity\CurrencyLocale

Code

public function getConfirmText() {
  return $this
    ->t('Delete');
}