setup: Clarify that the db user's credentials may be insufficient as well

This commit is contained in:
Johannes Meyer 2015-02-02 16:55:21 +01:00
parent 8bb0e4e0a0
commit c4c6d36b00

View File

@ -103,8 +103,9 @@ class DatabaseCreationPage extends Form
array( array(
'value' => $this->translate( 'value' => $this->translate(
'It seems that either the database you defined earlier does not yet exist and cannot be created' 'It seems that either the database you defined earlier does not yet exist and cannot be created'
. ' using the provided access credentials or the database does not have the required schema to ' . ' using the provided access credentials, the database does not have the required schema to be'
. 'be operated by Icinga Web 2. Please provide appropriate access credentials to solve this.' . ' operated by Icinga Web 2 or the provided access credentials do not have the sufficient '
. 'permissions to access the database. Please provide appropriate access credentials to solve this.'
) )
) )
); );
@ -116,7 +117,9 @@ class DatabaseCreationPage extends Form
array( array(
'required' => false === $skipValidation, 'required' => false === $skipValidation,
'label' => $this->translate('Username'), 'label' => $this->translate('Username'),
'description' => $this->translate('A user which is able to create databases and/or touch the database schema') 'description' => $this->translate(
'A user which is able to create databases and/or touch the database schema'
)
) )
); );
$this->addElement( $this->addElement(