diff --git a/core/modules/translation_entity/lib/Drupal/translation_entity/Form/TranslatableForm.php b/core/modules/translation_entity/lib/Drupal/translation_entity/Form/TranslatableForm.php index 6223676..82eddbe 100644 --- a/core/modules/translation_entity/lib/Drupal/translation_entity/Form/TranslatableForm.php +++ b/core/modules/translation_entity/lib/Drupal/translation_entity/Form/TranslatableForm.php @@ -41,7 +41,7 @@ public function getFormID() { /** * {@inheritdoc} */ - protected function getQuestion() { + public function getQuestion() { $action = $this->fieldInfo['translatable'] ? 'disable' : 'enable'; return t('Are you sure you want to %action translation for the %name field?', array('%action' => $action, '%name' => $this->fieldName) @@ -51,7 +51,7 @@ protected function getQuestion() { /** * {@inheritdoc} */ - protected function getDescription() { + public function getDescription() { $description = t('By submitting this form these changes will apply to the %name field everywhere it is used.', array('%name' => $this->fieldName) ); @@ -62,7 +62,7 @@ protected function getDescription() { /** * {@inheritdoc} */ - protected function getCancelPath() { + public function getCancelPath() { return ''; }