diff options
author | Joas Schilling <coding@schilljs.com> | 2017-04-18 09:53:02 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2017-04-18 16:40:53 -0500 |
commit | 1c0bffe87f578403b130015f8fee5560cc075b34 (patch) | |
tree | ddf334b5dfd362f9c905ed2e9ed27fd8aa584694 /lib/private/Encryption | |
parent | b072d2c49d6f61c2b55abf12e04bdf2166dbd4f4 (diff) | |
download | nextcloud-server-1c0bffe87f578403b130015f8fee5560cc075b34.tar.gz nextcloud-server-1c0bffe87f578403b130015f8fee5560cc075b34.zip |
Fix translations
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/private/Encryption')
-rw-r--r-- | lib/private/Encryption/Manager.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Encryption/Manager.php b/lib/private/Encryption/Manager.php index 9053e371b65..bfadebd0db0 100644 --- a/lib/private/Encryption/Manager.php +++ b/lib/private/Encryption/Manager.php @@ -193,8 +193,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 exist."; - $hint = $this->l->t('Module with id: %s does not exist. 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 { |