From 18f6ff8702755ac0eaad9de5bf0dd8b3a08aaf41 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Mon, 23 Feb 2015 17:28:20 +0100 Subject: [PATCH] Add proper titles to the servicegroups component view refs #8458 --- .../views/scripts/show/components/servicegroups.phtml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/modules/monitoring/application/views/scripts/show/components/servicegroups.phtml b/modules/monitoring/application/views/scripts/show/components/servicegroups.phtml index 50b71d839..093e03286 100644 --- a/modules/monitoring/application/views/scripts/show/components/servicegroups.phtml +++ b/modules/monitoring/application/views/scripts/show/components/servicegroups.phtml @@ -4,9 +4,12 @@ if (empty($object->servicegroups)) return; $list = array(); foreach ($object->servicegroups as $name => $alias) { - $list[] = $this->qlink($alias, 'monitoring/list/services', array( - 'servicegroup' => $name - )); + $list[] = $this->qlink( + $alias, + 'monitoring/list/services', + array('servicegroup' => $name), + array('title' => sprintf($this->translate('List all services in the group "%s"'), $alias)) + ); } printf(