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

View File

@ -67,11 +67,13 @@ $this->provideRestriction(
); );
$this->provideConfigTab('backends', array( $this->provideConfigTab('backends', array(
'title' => 'Backends', 'title' => $this->translate('Configure how to retrieve monitoring information'),
'label' => $this->translate('Backends'),
'url' => 'config' 'url' => 'config'
)); ));
$this->provideConfigTab('security', array( $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' 'url' => 'config/security'
)); ));
$this->provideSetupWizard('Icinga\Module\Monitoring\MonitoringWizard'); $this->provideSetupWizard('Icinga\Module\Monitoring\MonitoringWizard');