From 907134cee2fb05fe02843b1941c172ab0b52ff1a Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Tue, 24 Feb 2015 09:03:47 +0100 Subject: [PATCH] Ensure that all link-like form buttons got proper titles refs #8458 --- .../application/forms/Command/Object/CheckNowCommandForm.php | 3 ++- .../forms/Command/Object/DeleteCommentCommandForm.php | 2 +- .../forms/Command/Object/DeleteDowntimeCommandForm.php | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/modules/monitoring/application/forms/Command/Object/CheckNowCommandForm.php b/modules/monitoring/application/forms/Command/Object/CheckNowCommandForm.php index 1a39574f6..c272b4c30 100644 --- a/modules/monitoring/application/forms/Command/Object/CheckNowCommandForm.php +++ b/modules/monitoring/application/forms/Command/Object/CheckNowCommandForm.php @@ -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') ) ) )); diff --git a/modules/monitoring/application/forms/Command/Object/DeleteCommentCommandForm.php b/modules/monitoring/application/forms/Command/Object/DeleteCommentCommandForm.php index e5bef88d8..6147ed5ff 100644 --- a/modules/monitoring/application/forms/Command/Object/DeleteCommentCommandForm.php +++ b/modules/monitoring/application/forms/Command/Object/DeleteCommentCommandForm.php @@ -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') ) ); diff --git a/modules/monitoring/application/forms/Command/Object/DeleteDowntimeCommandForm.php b/modules/monitoring/application/forms/Command/Object/DeleteDowntimeCommandForm.php index 3ef242b2f..2bbd22a4a 100644 --- a/modules/monitoring/application/forms/Command/Object/DeleteDowntimeCommandForm.php +++ b/modules/monitoring/application/forms/Command/Object/DeleteDowntimeCommandForm.php @@ -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') ) );