diff options
author | Valdnet <47037905+Valdnet@users.noreply.github.com> | 2021-05-20 11:27:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-20 11:27:24 +0200 |
commit | 7ffee26aa8768736593c77dcb12d17978a6e06b2 (patch) | |
tree | f570754f02d47e081d61a9f0bf783ebd8d7cc780 /apps/encryption/lib/Crypto/Encryption.php | |
parent | 5432c958be918bece086ccf32ffd86f68bbda675 (diff) | |
parent | dc981623aa040c7e16dfcff16916a7706c689750 (diff) | |
download | nextcloud-server-7ffee26aa8768736593c77dcb12d17978a6e06b2.tar.gz nextcloud-server-7ffee26aa8768736593c77dcb12d17978a6e06b2.zip |
Merge pull request #26511 from nextcloud/Valdnet-patch-4
l10n: Unify spelling
Diffstat (limited to 'apps/encryption/lib/Crypto/Encryption.php')
-rw-r--r-- | apps/encryption/lib/Crypto/Encryption.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/encryption/lib/Crypto/Encryption.php b/apps/encryption/lib/Crypto/Encryption.php index 51c5122eb93..9f3cc964e40 100644 --- a/apps/encryption/lib/Crypto/Encryption.php +++ b/apps/encryption/lib/Crypto/Encryption.php @@ -366,8 +366,8 @@ class Encryption implements IEncryptionModule { */ public function decrypt($data, $position = 0) { if (empty($this->fileKey)) { - $msg = 'Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.'; - $hint = $this->l->t('Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.'); + $msg = 'Cannot decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.'; + $hint = $this->l->t('Cannot decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.'); $this->logger->error($msg); throw new DecryptionFailedException($msg, $hint); @@ -492,7 +492,7 @@ class Encryption implements IEncryptionModule { // valid private/public key $msg = 'Encryption module "' . $this->getDisplayName() . '" is not able to read ' . $path; - $hint = $this->l->t('Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you.'); + $hint = $this->l->t('Cannot read this file, probably this is a shared file. Please ask the file owner to reshare the file with you.'); $this->logger->warning($msg); throw new DecryptionFailedException($msg, $hint); } |