diff options
Diffstat (limited to 'settings/templates/personal.php')
-rw-r--r-- | settings/templates/personal.php | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/settings/templates/personal.php b/settings/templates/personal.php index 31aa268f776..b47e2e28ffa 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -28,8 +28,13 @@ <div style="width:<?php p($_['usage_relative']);?>%" <?php if($_['usage_relative'] > 80): ?> class="quota-warning" <?php endif; ?>> <p id="quotatext"> - <?php print_unescaped($l->t('You are using <strong>%s</strong> of <strong>%s</strong>', - array($_['usage'], $_['total_space'])));?> + <?php if ($_['quota'] === \OCP\Files\FileInfo::SPACE_UNLIMITED): ?> + <?php print_unescaped($l->t('You are using <strong>%s</strong> of <strong>%s</strong>', + [$_['usage'], $_['total_space']]));?> + <?php else: ?> + <?php print_unescaped($l->t('You are using <strong>%s</strong> of <strong>%s</strong> (<strong>%s %%</strong>)', + [$_['usage'], $_['total_space'], $_['usage_relative']]));?> + <?php endif ?> </p> </div> </div> |