Add proper titles to the monitoring module's config tabs

refs #8458
This commit is contained in:
Johannes Meyer 2015-02-23 17:04:40 +01:00
parent a5514392db
commit c6b61617ee
1 changed files with 4 additions and 2 deletions

View File

@ -67,11 +67,13 @@ $this->provideRestriction(
);
$this->provideConfigTab('backends', array(
'title' => 'Backends',
'title' => $this->translate('Configure how to retrieve monitoring information'),
'label' => $this->translate('Backends'),
'url' => 'config'
));
$this->provideConfigTab('security', array(
'title' => 'Security',
'title' => $this->translate('Configure how to protect your monitoring environment against prying eyes'),
'label' => $this->translate('Security'),
'url' => 'config/security'
));
$this->provideSetupWizard('Icinga\Module\Monitoring\MonitoringWizard');