summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2015-03-04 09:58:42 +0100
committerMorris Jobke <hey@morrisjobke.de>2015-03-04 09:58:42 +0100
commitac104416004f7fde56ca633a3aa5a485b4997078 (patch)
tree58e35db38d51ff8f0d231d06ba0688737931f287
parentf1d74e8803efc2d642dd37751eff928ec42b8ec6 (diff)
parenteaccd2a72ad1831a032989e7a7f5956cee06823c (diff)
downloadnextcloud-server-ac104416004f7fde56ca633a3aa5a485b4997078.tar.gz
nextcloud-server-ac104416004f7fde56ca633a3aa5a485b4997078.zip
Merge pull request #14326 from owncloud/remove-unnessary-backslashes-from-translation
Remove unnecessary backslashes from translations
-rw-r--r--lib/private/app.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/app.php b/lib/private/app.php
index 97b975d2453..e39165695cf 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)
)
);