diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2019-03-15 16:40:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-15 16:40:47 +0100 |
commit | b0cc93979d9d7d439e2e8f63371d19ad2062fab9 (patch) | |
tree | 67b56b0579dbf9cbbf1d650de30303bb5c92ee56 /core | |
parent | c01019b5368d786e0603fc20ac240306a74ae9cb (diff) | |
parent | f2f070503da0ac88a73056bdbcd4aa74ed2945a3 (diff) | |
download | nextcloud-server-b0cc93979d9d7d439e2e8f63371d19ad2062fab9.tar.gz nextcloud-server-b0cc93979d9d7d439e2e8f63371d19ad2062fab9.zip |
Merge pull request #14706 from nextcloud/warn-sqlite-fix
Fix language of SQLite warning, follow-up to #14682
Diffstat (limited to 'core')
-rw-r--r-- | core/templates/installation.php | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/core/templates/installation.php b/core/templates/installation.php index 88be253949f..29c6bd352f4 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -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 ?> |