forms: indentation

This commit is contained in:
Thomas Gelf 2016-04-12 21:06:15 +02:00
parent e951256fdd
commit 6f20b9a3de
2 changed files with 7 additions and 7 deletions

View File

@ -163,7 +163,7 @@ class KickstartForm extends QuickForm
$hint = $this->translate(
'Please make sure that your database exists and your user has'
. ' been granted enough permissions'
. ' been granted enough permissions'
);
$this->addHtmlHint($hint, array('name' => 'HINT_db_perms'));

View File

@ -39,9 +39,9 @@ class SyncRuleForm extends DirectorObjectForm
'label' => $this->translate('Update Policity'),
'description' => $this->translate(
'Define what should happen when an object with a matching key'
. " already exists. You could merge it's properties (import source"
. ' wins), replace it completely with the imported object or ignore'
. ' it (helpful for one-time imports)'
. " already exists. You could merge it's properties (import source"
. ' wins), replace it completely with the imported object or ignore'
. ' it (helpful for one-time imports)'
),
'required' => true,
'multiOptions' => $this->optionalEnum(array(
@ -55,8 +55,8 @@ class SyncRuleForm extends DirectorObjectForm
'label' => $this->translate('Purge'),
'description' => $this->translate(
'Whether to purge existing objects. This means that objects of'
. ' the same type will be removed from Director in case they no'
. ' longer exist at your import source.'
. ' the same type will be removed from Director in case they no'
. ' longer exist at your import source.'
),
'required' => true,
'multiOptions' => $this->optionalEnum(array(
@ -70,7 +70,7 @@ class SyncRuleForm extends DirectorObjectForm
'description' => sprintf(
$this->translate(
'Sync only part of your imported objects with this rule. Icinga Web 2'
. ' filter syntax is allowed, so this could look as follows: %s'
. ' filter syntax is allowed, so this could look as follows: %s'
),
'(host=a|host=b)&!ip=127.*'
),