diff options
author | Valdnet <47037905+Valdnet@users.noreply.github.com> | 2021-04-12 12:02:46 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2021-05-20 09:22:07 +0200 |
commit | b9d00a96b3b9670baf0db3da274b897860caa6d2 (patch) | |
tree | 4a1d4e3831c77c77fc5dad8008053f80d836c841 /apps/encryption | |
parent | f9b7625790bd3bbabd4fbf298fdffadba01fd6aa (diff) | |
download | nextcloud-server-b9d00a96b3b9670baf0db3da274b897860caa6d2.tar.gz nextcloud-server-b9d00a96b3b9670baf0db3da274b897860caa6d2.zip |
l10n: Unify spelling
Spelling unification in Nextcloud applications.
Diffstat (limited to 'apps/encryption')
-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); } |