diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-03-20 01:34:49 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-20 01:34:49 -0600 |
commit | 5979f481348c0dcee099e5da8d3f2793ebc09c88 (patch) | |
tree | 63ced28a2f6198d00bb8958226d8c65fad338b1c /core | |
parent | 55df840bd95812f2a3970d0b9355a46a1d6ed2db (diff) | |
parent | 0f2ee2088547c0b2c64bd9a47d494bd0a4c71a58 (diff) | |
download | nextcloud-server-5979f481348c0dcee099e5da8d3f2793ebc09c88.tar.gz nextcloud-server-5979f481348c0dcee099e5da8d3f2793ebc09c88.zip |
Merge pull request #3934 from nextcloud/downstream-27246
Update the occ:encrypt-all prompt
Diffstat (limited to 'core')
-rw-r--r-- | core/Command/Encryption/EncryptAll.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/Command/Encryption/EncryptAll.php b/core/Command/Encryption/EncryptAll.php index 3a0c88c0798..584bc8a70c7 100644 --- a/core/Command/Encryption/EncryptAll.php +++ b/core/Command/Encryption/EncryptAll.php @@ -109,10 +109,10 @@ class EncryptAll extends Command { } $output->writeln("\n"); - $output->writeln('You are about to start to encrypt all files stored in your ownCloud.'); - $output->writeln('It will depend on the encryption module you use which files get encrypted.'); - $output->writeln('Depending on the number and size of your files this can take some time'); - $output->writeln('Please make sure that no user access his files during this process!'); + $output->writeln('You are about to encrypt all files stored in your Nextcloud installation.'); + $output->writeln('Depending on the number of available files, and their size, this may take quite some time.'); + $output->writeln('Please ensure that no user accesses their files during this time!'); + $output->writeln('Note: The encryption module you use determines which files get encrypted.'); $output->writeln(''); $question = new ConfirmationQuestion('Do you really want to continue? (y/n) ', false); if ($this->questionHelper->ask($input, $output, $question)) { |