parent
ebf8d183a7
commit
77b60588bc
|
@ -72,7 +72,11 @@ class Monitoring_HostsController extends Controller
|
||||||
$this->getTabs()->add(
|
$this->getTabs()->add(
|
||||||
'show',
|
'show',
|
||||||
array(
|
array(
|
||||||
'title' => mt('monitoring', 'Hosts'),
|
'title' => sprintf(
|
||||||
|
$this->translate('Show summarized information for %u hosts'),
|
||||||
|
count($this->hostList)
|
||||||
|
),
|
||||||
|
'label' => $this->translate('Hosts'),
|
||||||
'url' => Url::fromRequest()
|
'url' => Url::fromRequest()
|
||||||
)
|
)
|
||||||
)->activate('show');
|
)->activate('show');
|
||||||
|
|
|
@ -93,7 +93,11 @@ class Monitoring_ServicesController extends Controller
|
||||||
$this->getTabs()->add(
|
$this->getTabs()->add(
|
||||||
'show',
|
'show',
|
||||||
array(
|
array(
|
||||||
'title' => mt('monitoring', 'Services'),
|
'title' => sprintf(
|
||||||
|
$this->translate('Show summarized information for %u services'),
|
||||||
|
count($this->serviceList)
|
||||||
|
),
|
||||||
|
'label' => $this->translate('Services'),
|
||||||
'url' => Url::fromRequest()
|
'url' => Url::fromRequest()
|
||||||
)
|
)
|
||||||
)->activate('show');
|
)->activate('show');
|
||||||
|
|
Loading…
Reference in New Issue