Merge pull request #14326 from owncloud/remove-unnessary-backslashes-from-translation

Remove unnecessary backslashes from translations
This commit is contained in:
Morris Jobke 2015-03-04 09:58:42 +01:00
commit ac10441600
1 changed files with 2 additions and 2 deletions

View File

@ -1068,7 +1068,7 @@ class OC_App {
$version = OC_Util::getVersion(); $version = OC_Util::getVersion();
if (!self::isAppCompatible($version, $info)) { if (!self::isAppCompatible($version, $info)) {
throw new \Exception( 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']) array($info['name'])
) )
); );
@ -1080,7 +1080,7 @@ class OC_App {
if (!empty($missing)) { if (!empty($missing)) {
$missingMsg = join(PHP_EOL, $missing); $missingMsg = join(PHP_EOL, $missing);
throw new \Exception( 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) array($info['name'], $missingMsg)
) )
); );