From 7aacfcf907aaa4e7b411ef1e3f26cd2b72388a9e Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Mon, 23 Feb 2015 16:58:48 +0100 Subject: [PATCH] Add proper title to the tactical overview's tab refs #8458 --- .../application/controllers/TacticalController.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/monitoring/application/controllers/TacticalController.php b/modules/monitoring/application/controllers/TacticalController.php index 8a3da2b9c..33681528c 100644 --- a/modules/monitoring/application/controllers/TacticalController.php +++ b/modules/monitoring/application/controllers/TacticalController.php @@ -11,7 +11,11 @@ class Monitoring_TacticalController extends MonitoringController $this->getTabs()->add( 'tactical_overview', array( - 'title' => $this->translate('Tactical Overview'), + 'title' => $this->translate( + 'Show an overview of all hosts and services, their current' + . ' states and monitoring feature utilisation' + ), + 'label' => $this->translate('Tactical Overview'), 'url' => Url::fromRequest() ) )->activate('tactical_overview');