summaryrefslogtreecommitdiffstats
path: root/lib/private/legacy/app.php
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2018-10-09 16:31:52 +0200
committerGitHub <noreply@github.com>2018-10-09 16:31:52 +0200
commitab3599155f9b51cc17fca188f48269aeb44f9462 (patch)
tree030922d11135677bd059f7b9031bdd4d8e73299d /lib/private/legacy/app.php
parent031add6acc2082c59b1841a1152fc9df3ca914f8 (diff)
parentea21aa3f7a12c5d1bd80eea329de3eb695fde4e5 (diff)
downloadnextcloud-server-ab3599155f9b51cc17fca188f48269aeb44f9462.tar.gz
nextcloud-server-ab3599155f9b51cc17fca188f48269aeb44f9462.zip
Merge pull request #11716 from nextcloud/bugfix/noid/use-numeric-placeholders-for-rtl-translations
Use numeric placeholders if there are multiple, so that RTL languages…
Diffstat (limited to 'lib/private/legacy/app.php')
-rw-r--r--lib/private/legacy/app.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/legacy/app.php b/lib/private/legacy/app.php
index 9c7e6001e5e..4cab92eba64 100644
--- a/lib/private/legacy/app.php
+++ b/lib/private/legacy/app.php
@@ -1096,7 +1096,7 @@ class OC_App {
if (!empty($missing)) {
$missingMsg = implode(PHP_EOL, $missing);
throw new \Exception(
- $l->t('App "%s" cannot be installed because the following dependencies are not fulfilled: %s',
+ $l->t('App "%1$s" cannot be installed because the following dependencies are not fulfilled: %2$s',
[$info['name'], $missingMsg]
)
);