diff options
author | provokateurin <kate@provokateurin.de> | 2024-10-14 12:09:35 +0200 |
---|---|---|
committer | provokateurin <kate@provokateurin.de> | 2024-10-14 13:59:24 +0200 |
commit | 51d9d63a01b878b38630a5def73b08cad2d30f44 (patch) | |
tree | 4df6f48f47c04fbeb68d459e4e6c5be75fdc8fe2 /apps/encryption/lib | |
parent | 3f75c4808d5153588c671c6a47c6aadb501f6308 (diff) | |
download | nextcloud-server-51d9d63a01b878b38630a5def73b08cad2d30f44.tar.gz nextcloud-server-51d9d63a01b878b38630a5def73b08cad2d30f44.zip |
chore: Use more gender neutral language
Signed-off-by: provokateurin <kate@provokateurin.de>
Diffstat (limited to 'apps/encryption/lib')
-rw-r--r-- | apps/encryption/lib/Crypto/DecryptAll.php | 2 | ||||
-rw-r--r-- | apps/encryption/lib/Crypto/Encryption.php | 2 | ||||
-rw-r--r-- | apps/encryption/lib/Hooks/UserHooks.php | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/apps/encryption/lib/Crypto/DecryptAll.php b/apps/encryption/lib/Crypto/DecryptAll.php index e153712fb99..6aa3ee9ac07 100644 --- a/apps/encryption/lib/Crypto/DecryptAll.php +++ b/apps/encryption/lib/Crypto/DecryptAll.php @@ -73,7 +73,7 @@ class DecryptAll { $recoveryKeyId = $this->keyManager->getRecoveryKeyId(); if (!empty($user)) { $output->writeln('You can only decrypt the users files if you know'); - $output->writeln('the users password or if he activated the recovery key.'); + $output->writeln('the users password or if they activated the recovery key.'); $output->writeln(''); $questionUseLoginPassword = new ConfirmationQuestion( 'Do you want to use the users login password to decrypt all files? (y/n) ', diff --git a/apps/encryption/lib/Crypto/Encryption.php b/apps/encryption/lib/Crypto/Encryption.php index f5b6a40aecc..5261fea1e19 100644 --- a/apps/encryption/lib/Crypto/Encryption.php +++ b/apps/encryption/lib/Crypto/Encryption.php @@ -432,7 +432,7 @@ class Encryption implements IEncryptionModule { * e.g. if all encryption keys exists * * @param string $path - * @param string $uid user for whom we want to check if he can read the file + * @param string $uid user for whom we want to check if they can read the file * @return bool * @throws DecryptionFailedException */ diff --git a/apps/encryption/lib/Hooks/UserHooks.php b/apps/encryption/lib/Hooks/UserHooks.php index 2424370e47f..a17686489d4 100644 --- a/apps/encryption/lib/Hooks/UserHooks.php +++ b/apps/encryption/lib/Hooks/UserHooks.php @@ -175,7 +175,7 @@ class UserHooks implements IHook { // Get existing decrypted private key $user = $this->userSession->getUser(); - // current logged in user changes his own password + // current logged in user changes their own password if ($user && $params['uid'] === $user->getUID()) { $privateKey = $this->session->getPrivateKey(); |