From d4058b73c2e8b713a9b77bf3bc9737e6dd5a7f54 Mon Sep 17 00:00:00 2001 From: Matthew Setter Date: Fri, 24 Feb 2017 12:36:27 +0100 Subject: [PATCH 1/2] Update the occ:encrypt-all prompt 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 --- core/Command/Encryption/EncryptAll.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/Command/Encryption/EncryptAll.php b/core/Command/Encryption/EncryptAll.php index 3a0c88c079..aee28af865 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 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)) { From 0f2ee2088547c0b2c64bd9a47d494bd0a4c71a58 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Sun, 19 Mar 2017 21:58:12 -0600 Subject: [PATCH 2/2] ownC -> Nextc Signed-off-by: Morris Jobke --- core/Command/Encryption/EncryptAll.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/Command/Encryption/EncryptAll.php b/core/Command/Encryption/EncryptAll.php index aee28af865..584bc8a70c 100644 --- a/core/Command/Encryption/EncryptAll.php +++ b/core/Command/Encryption/EncryptAll.php @@ -109,7 +109,7 @@ class EncryptAll extends Command { } $output->writeln("\n"); - $output->writeln('You are about to encrypt all files stored in your ownCloud installation.'); + $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.');