Fix language of SQLite warning, follow-up to #14682

Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
This commit is contained in:
Jan-Christoph Borchardt 2019-03-15 01:59:26 +01:00
parent 21cd04d195
commit f2f070503d
No known key found for this signature in database
GPG Key ID: CBD846FC845CBE17
1 changed files with 3 additions and 4 deletions

View File

@ -153,10 +153,9 @@ script('core', [
<?php if(!$_['dbIsSet'] OR count($_['errors']) > 0): ?>
<fieldset id="sqliteInformation" class="warning">
<legend><?php p($l->t('Performance warning'));?></legend>
<p><?php p($l->t('You have choosen SQLite as database.'));?></p>
<p><?php p($l->t('SQLite should only be choosen for minimal and development instances.'));?></p>
<p><?php p($l->t('For productive instances we recommend to choose a different database backend.'));?></p>
<p><?php p($l->t('Using clients for file syncing the use of SQLite is highly discouraged.')); ?></p>
<p><?php p($l->t('You chose SQLite as database.'));?></p>
<p><?php p($l->t('SQLite should only be used for minimal and development instances. For production we recommend a different database backend.'));?></p>
<p><?php p($l->t('If you use clients for file syncing, the use of SQLite is highly discouraged.')); ?></p>
</fieldset>
<?php endif ?>