diff options
author | Daniel Kesselberg <mail@danielkesselberg.de> | 2019-06-24 18:35:37 +0200 |
---|---|---|
committer | Daniel Kesselberg <mail@danielkesselberg.de> | 2019-06-24 18:35:37 +0200 |
commit | 5c3fc44f33696e118abfec612493a9663891aca1 (patch) | |
tree | f09f9dcaf848317fb150b4e42f38709fbfcb156f /apps | |
parent | d059ee34a09fe32e56a236d9ff2c5d9060b2f063 (diff) | |
download | nextcloud-server-5c3fc44f33696e118abfec612493a9663891aca1.tar.gz nextcloud-server-5c3fc44f33696e118abfec612493a9663891aca1.zip |
Don't show absolute number in tooltip
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to 'apps')
-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 7f174b08a6c..b4436714985 100644 --- a/apps/files/templates/appnavigation.php +++ b/apps/files/templates/appnavigation.php @@ -17,7 +17,7 @@ </li> <?php else: ?> <li id="quota" class="has-tooltip pinned <?php p($pinned === 0 ? 'first-pinned ' : '') ?>" - title="<?php p($l->t('%s (%s%%) of %s used', [$_['usage'], $_['usage_relative'], $_['total_space']])); ?>"> + title="<?php p($l->t('%s%% of %s used', [$_['usage_relative'], $_['total_space']])); ?>"> <a href="#" class="icon-quota svg"> <p id="quotatext"><?php p($l->t('%1$s of %2$s used', [$_['usage'], $_['total_space']])); ?></p> <div class="quota-container"> |