diff --git a/modules/monitoring/application/controllers/HostsController.php b/modules/monitoring/application/controllers/HostsController.php index 869be92d8..27b9d28f4 100644 --- a/modules/monitoring/application/controllers/HostsController.php +++ b/modules/monitoring/application/controllers/HostsController.php @@ -121,7 +121,7 @@ class Monitoring_HostsController extends Controller $this->view->objectsInDowntime = $objectsInDowntime; $this->view->inDowntimeLink = Url::fromPath('monitoring/list/downtimes') ->setQueryString(Filter::matchAny($downtimeFilterExpressions)->toQueryString()); - $this->view->havingCommentsLink = Url::fromRequest() + $this->view->commentsLink = Url::fromRequest() ->setPath('monitoring/list/comments'); $this->view->hostStatesPieChart = $this->createPieChart( $hostStates, diff --git a/modules/monitoring/application/views/scripts/hosts/show.phtml b/modules/monitoring/application/views/scripts/hosts/show.phtml index a5d36deb1..109d6723b 100644 --- a/modules/monitoring/application/views/scripts/hosts/show.phtml +++ b/modules/monitoring/application/views/scripts/hosts/show.phtml @@ -76,17 +76,43 @@ ) ?>
- + icon('plug') ?> - translate('Schedule downtimes for unhandled problem hosts') ?> + translatePlural( + 'Schedule downtime for unhandled host problem', + 'Schedule downtimes for unhandled host problems', + $unhandledCount + ), + $unhandledCount + ) ?>
- + icon('ok') ?> - translate('Acknowledge unhandled problem hosts') ?> + translatePlural( + 'Acknowledge unhandled host problem', + 'Acknowledge unhandled host problems', + $unhandledCount + ), + $unhandledCount + ) ?>
@@ -123,8 +149,8 @@ icon('plug') ?> translatePlural( - '%u host is in downtime', - '%u hosts are in downtime', + 'List %u host currently in downtime', + 'List %u hosts currently downtime', $inDowntimeCount ), $inDowntimeCount @@ -133,26 +159,26 @@ - getComments()) ?> - + getComments()) ?> +

- icon('comment') ?> translatePlural( - '%u comment', - '%u comments', - $havingCommentsCount + 'List %u host comment', + 'List %u host comments', + $commentCount ), - $havingCommentsCount + $commentCount ) ?>