Add description to database prefix field to avoid confusion when not specifying a database prefix.

This commit is contained in:
torvista 2018-08-19 00:09:34 +02:00
parent 8426f0e6cb
commit 710ce6a9f7
2 changed files with 5 additions and 4 deletions

View File

@ -172,7 +172,7 @@ if (! empty($force_install_message))
?> ?>
<ul> <ul>
<li>/var/lib/dolibarr/documents</li> <li>/var/lib/dolibarr/documents</li>
<li>C:/My Documents/dolibarr/</li> <li>C:/My Documents/dolibarr/documents</li>
</ul> </ul>
</td> </td>
</tr> </tr>
@ -200,7 +200,7 @@ if (! empty($force_install_message))
<td class="comment"><?php print $langs->trans("Examples").":<br>"; ?> <td class="comment"><?php print $langs->trans("Examples").":<br>"; ?>
<ul> <ul>
<li>http://localhost/</li> <li>http://localhost/</li>
<li>http://www.myserver.com:8180/dolibarr</li> <li>https://www.myserver.com:8180/dolibarr</li>
</ul> </ul>
</td> </td>
</tr> </tr>
@ -382,7 +382,7 @@ if (! empty($force_install_message))
} ?> } ?>
> >
</td> </td>
<td class="comment"><?php echo $langs->trans("DatabasePrefix"); ?></td> <td class="comment"><?php echo $langs->trans("DatabasePrefixDescription"); ?></td>
</tr> </tr>
<tr class="hidesqlite"> <tr class="hidesqlite">

View File

@ -50,13 +50,14 @@ ServerPortDescription=Database server port. Keep empty if unknown.
DatabaseServer=Database server DatabaseServer=Database server
DatabaseName=Database name DatabaseName=Database name
DatabasePrefix=Database table prefix DatabasePrefix=Database table prefix
DatabasePrefixDescription=Database table prefix. If empty, defaults to llx_.
AdminLogin=User account for the Dolibarr database owner. AdminLogin=User account for the Dolibarr database owner.
PasswordAgain=Retype password confirmation PasswordAgain=Retype password confirmation
AdminPassword=Password for Dolibarr database owner. AdminPassword=Password for Dolibarr database owner.
CreateDatabase=Create database CreateDatabase=Create database
CreateUser=Create user account or grant user account permission on the Dolibarr database CreateUser=Create user account or grant user account permission on the Dolibarr database
DatabaseSuperUserAccess=Database server - Superuser access DatabaseSuperUserAccess=Database server - Superuser access
CheckToCreateDatabase=Check the box if the database does not exist yet and so must be created.<br>In this case, you must fill in the user name and password for the superuser account at the bottom of this page. CheckToCreateDatabase=Check the box if the database does not exist yet and so must be created.<br>In this case, you must also fill in the user name and password for the superuser account at the bottom of this page.
CheckToCreateUser=Check the box if:<br>the database user account does not yet exist and so must be created, or<br>if the user account exists but the database does not exist and permissions must be granted.<br>In this case, you must enter the user account and password and <b>also</b> the superuser account name and password at the bottom of this page. If this box is unchecked, database owner and password must already exist. CheckToCreateUser=Check the box if:<br>the database user account does not yet exist and so must be created, or<br>if the user account exists but the database does not exist and permissions must be granted.<br>In this case, you must enter the user account and password and <b>also</b> the superuser account name and password at the bottom of this page. If this box is unchecked, database owner and password must already exist.
DatabaseRootLoginDescription=Superuser account name (to create new databases or new users), mandatory if the database or its owner does not already exist. DatabaseRootLoginDescription=Superuser account name (to create new databases or new users), mandatory if the database or its owner does not already exist.
KeepEmptyIfNoPassword=Leave empty if superuser has no password (NOT recommended) KeepEmptyIfNoPassword=Leave empty if superuser has no password (NOT recommended)