diff options
author | Joas Schilling <coding@schilljs.com> | 2018-10-09 14:32:14 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2018-10-09 14:32:14 +0200 |
commit | ea21aa3f7a12c5d1bd80eea329de3eb695fde4e5 (patch) | |
tree | 7ff489b7990d01a699dbdf43d1b5ab0bc27b4916 /core/templates/update.admin.php | |
parent | ea411ccec4095e155755b4edf76fd1490e509e5d (diff) | |
download | nextcloud-server-ea21aa3f7a12c5d1bd80eea329de3eb695fde4e5.tar.gz nextcloud-server-ea21aa3f7a12c5d1bd80eea329de3eb695fde4e5.zip |
Use numeric placeholders if there are multiple, so that RTL languages can operate better
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'core/templates/update.admin.php')
-rw-r--r-- | core/templates/update.admin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/templates/update.admin.php b/core/templates/update.admin.php index e8087b297e9..f4a1c72ae8d 100644 --- a/core/templates/update.admin.php +++ b/core/templates/update.admin.php @@ -3,7 +3,7 @@ <?php if ($_['isAppsOnlyUpgrade']) { ?> <h2 class="title"><?php p($l->t('App update required')); ?></h2> <?php } else { ?> - <h2 class="title"><?php p($l->t('%s will be updated to version %s', + <h2 class="title"><?php p($l->t('%1$s will be updated to version %2$s', array($_['productName'], $_['version']))); ?></h2> <?php } ?> <?php if (!empty($_['appsToUpgrade'])) { ?> |