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 /apps/files/templates | |
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 'apps/files/templates')
-rw-r--r-- | apps/files/templates/appnavigation.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/templates/appnavigation.php b/apps/files/templates/appnavigation.php index a2361d92005..c6361d0ca4f 100644 --- a/apps/files/templates/appnavigation.php +++ b/apps/files/templates/appnavigation.php @@ -17,7 +17,7 @@ <a href="#" class="icon-quota svg"> <p id="quotatext"><?php if ($_['quota'] !== \OCP\Files\FileInfo::SPACE_UNLIMITED) { - p($l->t('%s of %s used', [$_['usage'], $_['total_space']])); + p($l->t('%1$s of %2$s used', [$_['usage'], $_['total_space']])); } else { p($l->t('%s used', [$_['usage']])); } ?></p> |