diff --git a/apps/encryption/appinfo/info.xml b/apps/encryption/appinfo/info.xml
index 53a2459f8647edd26193c110b1b696b2646368a3..8d3b680fc0839ee5c158aff690544479a5875209 100644
--- a/apps/encryption/appinfo/info.xml
+++ b/apps/encryption/appinfo/info.xml
@@ -16,7 +16,7 @@
 		based on AES 128 or 256 bit keys. More information is available in
 		the Encryption documentation
 	</description>
-	<name>ownCloud Default Encryption Module</name>
+	<name>Default encryption module</name>
 	<license>AGPL</license>
 	<author>Bjoern Schiessle, Clark Tomlinson</author>
 	<requiremin>8</requiremin>
diff --git a/apps/encryption/lib/crypto/encryption.php b/apps/encryption/lib/crypto/encryption.php
index df3f9a0997e1a33796c229fdeee9ba20771e56dd..f527955b496240ea07ba92cc9369f1b4fbc0db71 100644
--- a/apps/encryption/lib/crypto/encryption.php
+++ b/apps/encryption/lib/crypto/encryption.php
@@ -36,7 +36,7 @@ use OCP\ILogger;
 class Encryption implements IEncryptionModule {
 
 	const ID = 'OC_DEFAULT_MODULE';
-	const DISPLAY_NAME = 'ownCloud Default Encryption';
+	const DISPLAY_NAME = 'Default encryption module';
 
 	/**
 	 * @var Crypt
@@ -304,7 +304,7 @@ class Encryption implements IEncryptionModule {
 	 */
 	public function update($path, $uid, array $accessList) {
 		$fileKey = $this->keyManager->getFileKey($path, $uid);
-		
+
 		if (!empty($fileKey)) {
 
 			$publicKeys = array();
diff --git a/lib/private/encryption/manager.php b/lib/private/encryption/manager.php
index 1a42646daf6eff9d4c7fd0714469d366460770c7..45f45045643eef5ef6528b4560f1abd94b5dfafb 100644
--- a/lib/private/encryption/manager.php
+++ b/lib/private/encryption/manager.php
@@ -79,7 +79,7 @@ class Manager implements IManager {
 		$oldEncryption = $this->config->getAppValue('files_encryption', 'installed_version');
 		if (!empty($oldEncryption)) {
 			$warning = 'Installation is in transit between the old Encryption (ownCloud <= 8.0)
-			and the new encryption. Please enable the "ownCloud Default Encryption Module"
+			and the new encryption. Please enable the "Default encryption module"
 			and run \'occ encryption:migrate\'';
 			$this->logger->warning($warning);
 			return false;
diff --git a/lib/private/encryption/util.php b/lib/private/encryption/util.php
index 45d4dd90d9f799957790d1c6c8f76d960e123be5..b77672d2f6b69dc9e5deb8c55624e3863f5722dc 100644
--- a/lib/private/encryption/util.php
+++ b/lib/private/encryption/util.php
@@ -114,7 +114,7 @@ class Util {
 				// ownCloud <= 8.0 with the old encryption
 				$id = \OCA\Encryption\Crypto\Encryption::ID;
 			} else {
-				throw new ModuleDoesNotExistsException('ownCloud default encryption module missing');
+				throw new ModuleDoesNotExistsException('Default encryption module missing');
 			}
 		}
 
diff --git a/settings/templates/admin.php b/settings/templates/admin.php
index 3c21a5470923c29866be2c6047acbeb462db29af..f9a99b589afd1e65acb793bfe00c32bf4b5e7a7d 100644
--- a/settings/templates/admin.php
+++ b/settings/templates/admin.php
@@ -358,7 +358,7 @@ if ($_['cronErrors']) {
 		<div id="migrationWarning" class="<?php if ($_['encryptionReady']) p('hidden'); ?>">
 			<?php
 			if ($_['encryptionReady'] === false && $_['externalBackendsEnabled'] === true) {
-				p($l->t('You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the "ownCloud Default Encryption Module" and run \'occ encryption:migrate\''));
+				p($l->t('You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the "Default encryption module" and run \'occ encryption:migrate\''));
 			} elseif ($_['encryptionReady'] === false && $_['externalBackendsEnabled'] === false) {
 				p($l->t('You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one.')); ?>
 				<input type="submit" name="startmigration" id="startmigration"