diff --git a/apps/admin_audit/appinfo/info.xml b/apps/admin_audit/appinfo/info.xml
index 74fc880c881..07c327053a0 100644
--- a/apps/admin_audit/appinfo/info.xml
+++ b/apps/admin_audit/appinfo/info.xml
@@ -14,5 +14,4 @@
-
diff --git a/apps/comments/appinfo/info.xml b/apps/comments/appinfo/info.xml
index c61b4a0fc7c..2c207610599 100644
--- a/apps/comments/appinfo/info.xml
+++ b/apps/comments/appinfo/info.xml
@@ -6,7 +6,7 @@
AGPL
Arthur Schiwon, Vincent Petry
- 0.3.0
+ 1.0.0
diff --git a/apps/dav/appinfo/info.xml b/apps/dav/appinfo/info.xml
index 0b58219e848..298df1e7a51 100644
--- a/apps/dav/appinfo/info.xml
+++ b/apps/dav/appinfo/info.xml
@@ -5,7 +5,7 @@
WebDAV endpoint
AGPL
owncloud.org
- 0.2.5
+ 1.0.0
diff --git a/apps/encryption/lib/Controller/StatusController.php b/apps/encryption/lib/Controller/StatusController.php
index a508c3c6b72..6882475e972 100644
--- a/apps/encryption/lib/Controller/StatusController.php
+++ b/apps/encryption/lib/Controller/StatusController.php
@@ -73,18 +73,18 @@ class StatusController extends Controller {
case Session::INIT_EXECUTED:
$status = 'interactionNeeded';
$message = (string)$this->l->t(
- 'Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.'
+ 'Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files.'
);
break;
case Session::NOT_INITIALIZED:
$status = 'interactionNeeded';
$message = (string)$this->l->t(
- 'Encryption App is enabled but your keys are not initialized, please log-out and log-in again'
+ 'Encryption app is enabled but your keys are not initialized, please log-out and log-in again'
);
break;
case Session::INIT_SUCCESSFUL:
$status = 'success';
- $message = (string)$this->l->t('Encryption App is enabled and ready');
+ $message = (string)$this->l->t('Encryption app is enabled and ready');
}
return new DataResponse(
diff --git a/apps/encryption/templates/settings-admin.php b/apps/encryption/templates/settings-admin.php
index 9804db045cd..5c551267ff5 100644
--- a/apps/encryption/templates/settings-admin.php
+++ b/apps/encryption/templates/settings-admin.php
@@ -7,7 +7,7 @@ style('encryption', 'settings-admin');
?>