Merge pull request #16721 from owncloud/fix-grammar-enc-module

Fixing grammar - refs https://www.transifex.com/projects/p/owncloud/t
This commit is contained in:
Clark Tomlinson 2015-06-03 09:54:50 -04:00
commit 00742a9d68
1 changed files with 2 additions and 2 deletions

View File

@ -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 {