diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2015-02-18 13:29:21 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2015-02-18 14:17:53 +0100 |
commit | eaccd2a72ad1831a032989e7a7f5956cee06823c (patch) | |
tree | 01aef46f7ab10dcd65b33e4b7a09fa00eae3b78e | |
parent | 76c511de92f1b4dc6dcc31ac5ae15ffade29bb18 (diff) | |
download | nextcloud-server-eaccd2a72ad1831a032989e7a7f5956cee06823c.tar.gz nextcloud-server-eaccd2a72ad1831a032989e7a7f5956cee06823c.zip |
Remove unnecessary backslashes from translations
-rw-r--r-- | lib/private/app.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/app.php b/lib/private/app.php index 1af2c36e19f..8e334bedba9 100644 --- a/lib/private/app.php +++ b/lib/private/app.php @@ -1106,7 +1106,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']) ) ); @@ -1118,7 +1118,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) ) ); |