diff options
author | Morris Jobke <hey@morrisjobke.de> | 2016-10-24 11:21:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-24 11:21:56 +0200 |
commit | f054adb4291c83b05777688360780146af5f7d94 (patch) | |
tree | f25545e33ea5b0cdf8350760d9187bf5bd2100bc | |
parent | 57a5551c3d542f1412754d0f519cfaf03ced4eb3 (diff) | |
parent | f19d4ec29b3226bc7f58f9cfa0e1c28fa9d88ed8 (diff) | |
download | nextcloud-server-f054adb4291c83b05777688360780146af5f7d94.tar.gz nextcloud-server-f054adb4291c83b05777688360780146af5f7d94.zip |
Merge pull request #1866 from xcellardoor/master
Modified the SQLite warning of server/settings/templates/admin/tiptri…
-rw-r--r-- | settings/templates/admin/tipstricks.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/settings/templates/admin/tipstricks.php b/settings/templates/admin/tipstricks.php index e924a96dead..0282deda420 100644 --- a/settings/templates/admin/tipstricks.php +++ b/settings/templates/admin/tipstricks.php @@ -34,8 +34,8 @@ if ($_['databaseOverload']) { ?> <li> - <?php p($l->t('SQLite is used as database. For larger installations we recommend to switch to a different database backend.')); ?><br> - <?php p($l->t('Especially when using the desktop client for file syncing the use of SQLite is discouraged.')); ?><br> + <?php p($l->t('SQLite is currently being used as the backend database. For larger installations we recommend that you switch to a different database backend.')); ?><br> + <?php p($l->t('This is particularly recommended when using the desktop client for file synchronisation.')); ?><br> <?php print_unescaped($l->t('To migrate to another database use the command line tool: \'occ db:convert-type\', or see the <a target="_blank" rel="noreferrer" href="%s">documentation ↗</a>.', link_to_docs('admin-db-conversion') )); ?> </li> <?php } ?> |