summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClark Tomlinson <fallen013@gmail.com>2015-06-03 09:54:50 -0400
committerClark Tomlinson <fallen013@gmail.com>2015-06-03 09:54:50 -0400
commit00742a9d68f4c42e51b24411542240c93aa4d493 (patch)
tree2f9091c150363ccb06682a1ebd0d3cb23b375e1f
parent3d289a58cd77fc1921d343313caf84c22e292d7b (diff)
parent5dc5b7f86df5ac4943a4e8cd66e93d559d9bf6ca (diff)
downloadnextcloud-server-00742a9d68f4c42e51b24411542240c93aa4d493.tar.gz
nextcloud-server-00742a9d68f4c42e51b24411542240c93aa4d493.zip
Merge pull request #16721 from owncloud/fix-grammar-enc-module
Fixing grammar - refs https://www.transifex.com/projects/p/owncloud/t…
-rw-r--r--lib/private/encryption/manager.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/encryption/manager.php b/lib/private/encryption/manager.php
index eeddea26b1a..4841533cac1 100644
--- a/lib/private/encryption/manager.php
+++ b/lib/private/encryption/manager.php
@@ -151,8 +151,8 @@ class Manager implements IManager {
if (isset($this->encryptionModules[$moduleId])) {
return call_user_func($this->encryptionModules[$moduleId]['callback']);
} else {
- $message = "Module with id: $moduleId does not exists.";
- $hint = $this->l->t('Module with id: %s does not exists. Please enable it in your apps settings or contact your administrator.', [$moduleId]);
+ $message = "Module with id: $moduleId does not exist.";
+ $hint = $this->l->t('Module with id: %s does not exist. Please enable it in your apps settings or contact your administrator.', [$moduleId]);
throw new Exceptions\ModuleDoesNotExistsException($message, $hint);
}
} else {