@@ -19,7 +19,7 @@ class FilterDisableForm extends EntityConfirmFormBase {
* {@inheritdoc}
*/
publicfunctiongetQuestion(){
returnt('Are you sure you want to disable the text format %format?',array('%format'=>$this->entity->label()));
return$this->t('Are you sure you want to disable the text format %format?',array('%format'=>$this->entity->label()));
}
/**
...
...
@@ -33,14 +33,14 @@ public function getCancelRoute() {
* {@inheritdoc}
*/
publicfunctiongetConfirmText(){
returnt('Disable');
return$this->t('Disable');
}
/**
* {@inheritdoc}
*/
publicfunctiongetDescription(){
returnt('Disabled text formats are completely removed from the administrative interface, and any content stored with that format will not be displayed. This action cannot be undone.');
return$this->t('Disabled text formats are completely removed from the administrative interface, and any content stored with that format will not be displayed. This action cannot be undone.');
}
/**
...
...
@@ -48,7 +48,7 @@ public function getDescription() {