]> source.dussan.org Git - nextcloud-server.git/commitdiff
Update the occ:encrypt-all prompt
authorMatthew Setter <matthew@matthewsetter.com>
Fri, 24 Feb 2017 11:36:27 +0000 (12:36 +0100)
committerMorris Jobke <hey@morrisjobke.de>
Mon, 20 Mar 2017 04:02:14 +0000 (22:02 -0600)
The message isn't as clear, nor as succinct, as it could be.
Given that, this commit seeks to address both those points.
This commit was prompted by https://github.com/owncloud/documentation/pull/2835.

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
core/Command/Encryption/EncryptAll.php

index 3a0c88c0798eb7832421e2dc187118a3aa2ef070..aee28af8657542407889c49a10529addc1001c4c 100644 (file)
@@ -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 ownCloud 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)) {