Skip to content

Commit

Permalink
monitoring: Fix layout of the wizard's welcome page
Browse files Browse the repository at this point in the history
refs #5543
  • Loading branch information
Johannes Meyer committed Oct 1, 2015
1 parent 60b9f0c commit 748a3c6
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions modules/monitoring/application/forms/Setup/WelcomePage.php
Expand Up @@ -18,7 +18,7 @@ public function createElements(array $formData)
'note',
'welcome',
array(
'value' => $this->translate('Welcome to the configuration of the monitoring module for Icinga Web 2!'),
'value' => $this->translate('Welcome to the configuration of the monitoring module for Icinga Web 2!'),
'decorators' => array(
'ViewHelper',
array('HtmlTag', array('tag' => 'h2'))
Expand All @@ -30,18 +30,20 @@ public function createElements(array $formData)
'note',
'core_hint',
array(
'value' => $this->translate('This is the core module for Icinga Web 2.')
'value' => $this->translate('This is the core module for Icinga Web 2.'),
'decorators' => array('ViewHelper')
)
);

$this->addElement(
'note',
'description',
array(
'value' => $this->translate(
'value' => $this->translate(
'It offers various status and reporting views with powerful filter capabilities that allow'
. ' you to keep track of the most important events in your monitoring environment.'
)
),
'decorators' => array('ViewHelper')
)
);

Expand Down

0 comments on commit 748a3c6

Please sign in to comment.