aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2017-06-09 17:24:10 +0200
committerLukas Reschke <lukas@statuscode.ch>2017-06-13 11:17:43 +0200
commit06a925d88849f5f812ef231bb1b6ca2137549aed (patch)
treea6db7ee1a27da69f3be832d839d8cf6dffe12444
parent3f549609b9cca603418ad7b55401658627e99977 (diff)
downloadnextcloud-server-06a925d88849f5f812ef231bb1b6ca2137549aed.tar.gz
nextcloud-server-06a925d88849f5f812ef231bb1b6ca2137549aed.zip
Remove useless translation and make it better on unlimited
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--apps/files/templates/appnavigation.php13
1 files changed, 8 insertions, 5 deletions
diff --git a/apps/files/templates/appnavigation.php b/apps/files/templates/appnavigation.php
index 49bfaab3e16..0d08ac53c5c 100644
--- a/apps/files/templates/appnavigation.php
+++ b/apps/files/templates/appnavigation.php
@@ -2,12 +2,15 @@
<ul class="with-icon">
<li id="quota" class="section <?php
if ($_['quota'] !== \OCP\Files\FileInfo::SPACE_UNLIMITED) {
- ?>has-tooltip" title="<?php
- p($l->t('%s %%', [$_['usage_relative']]));
- }
- ?>">
+ ?>has-tooltip" title="<?php p($_['usage_relative'] . '%');
+ } ?>">
<a href="#" class="nav-icon-quota svg">
- <p id="quotatext"><?php p($l->t('%s of %s used', [$_['usage'], $_['total_space']])); ?></p>
+ <p id="quotatext"><?php
+ if ($_['quota'] !== \OCP\Files\FileInfo::SPACE_UNLIMITED) {
+ p($l->t('%s of %s used', [$_['usage'], $_['total_space']]));
+ } else {
+ p($l->t('%s used', [$_['usage']]));
+ } ?></p>
<div class="quota-container">
<div style="width:<?php p($_['usage_relative']);?>%"
<?php if($_['usage_relative'] > 80): ?>class="quota-warning"<?php endif; ?>>