diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-02-25 17:46:41 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-02-25 17:46:41 +0100 |
commit | 921a76ae2e4550d242c384f53af54f09e21b4fb6 (patch) | |
tree | 1b67d79296ca14a0be81a7eb2fa61af973a7cea8 /core/js | |
parent | 14c592fe865748f38dd6ee31634d053f83a8e791 (diff) | |
parent | 649a1ba2550afb12a0cfbadfdd5fec03001fc0e9 (diff) | |
download | nextcloud-server-921a76ae2e4550d242c384f53af54f09e21b4fb6.tar.gz nextcloud-server-921a76ae2e4550d242c384f53af54f09e21b4fb6.zip |
Merge pull request #14245 from cmeh/master
Message clean-up
Diffstat (limited to 'core/js')
-rw-r--r-- | core/js/setupchecks.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/js/setupchecks.js b/core/js/setupchecks.js index db5365c124d..00e73162c55 100644 --- a/core/js/setupchecks.js +++ b/core/js/setupchecks.js @@ -21,7 +21,7 @@ var messages = []; if (xhr.status !== 207 && xhr.status !== 401) { messages.push( - t('core', 'Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken.') + t('core', 'Your web server is not yet set up properly to allow file synchronization because the WebDAV interface seems to be broken.') ); } deferred.resolve(messages); @@ -51,12 +51,12 @@ if (xhr.status === 200 && data) { if (!data.serverHasInternetConnection) { messages.push( - t('core', 'This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps donĀ“t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features.') + t('core', 'This server has no working Internet connection. This means that some of the features like mounting external storage, notifications about updates or installation of third-party apps will not work. Accessing files remotely and sending of notification emails might not work, either. We suggest to enable Internet connection for this server if you want to have all features.') ); } if(!data.dataDirectoryProtected) { messages.push( - t('core', 'Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root.') + t('core', 'Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. We strongly suggest that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root.') ); } } else { |