diff --git a/lib/private/app.php b/lib/private/app.php
index 97b975d24537e2226bfe075dddbff8febd2ed269..e39165695cfd78d81715afd3680e2861ff2ffe1d 100644
--- a/lib/private/app.php
+++ b/lib/private/app.php
@@ -1068,7 +1068,7 @@ class OC_App {
 			$version = OC_Util::getVersion();
 			if (!self::isAppCompatible($version, $info)) {
 				throw new \Exception(
-					$l->t('App \"%s\" can\'t be installed because it is not compatible with this version of ownCloud.',
+					$l->t('App "%s" cannot be installed because it is not compatible with this version of ownCloud.',
 						array($info['name'])
 					)
 				);
@@ -1080,7 +1080,7 @@ class OC_App {
 			if (!empty($missing)) {
 				$missingMsg = join(PHP_EOL, $missing);
 				throw new \Exception(
-					$l->t('App \"%s\" cannot be installed because the following dependencies are not fulfilled: %s',
+					$l->t('App "%s" cannot be installed because the following dependencies are not fulfilled: %s',
 						array($info['name'], $missingMsg)
 					)
 				);