Ensure that all link-like form buttons got proper titles

refs #8458
This commit is contained in:
Johannes Meyer 2015-02-24 09:03:47 +01:00
parent 956efe5ef9
commit 907134cee2
3 changed files with 4 additions and 3 deletions

View File

@ -39,7 +39,8 @@ class CheckNowCommandForm extends ObjectsCommandForm
. $this->translate('Check now'),
'decorators' => array('ViewHelper'),
'escape' => false,
'class' => 'link-like'
'class' => 'link-like',
'title' => $this->translate('Schedule the next active check to run immediately')
)
)
));

View File

@ -54,7 +54,7 @@ class DeleteCommentCommandForm extends ObjectsCommandForm
array(
'ignore' => true,
'label' => 'X',
'title' => $this->translate('Delete comment'),
'title' => $this->translate('Delete this comment'),
'decorators' => array('ViewHelper')
)
);

View File

@ -54,7 +54,7 @@ class DeleteDowntimeCommandForm extends ObjectsCommandForm
array(
'ignore' => true,
'label' => 'X',
'title' => $this->translate('Delete downtime'),
'title' => $this->translate('Delete this downtime'),
'decorators' => array('ViewHelper')
)
);