mirror of
https://github.com/nextcloud/server.git
synced 2026-04-28 09:37:29 -04:00
Fix string formatting
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
This commit is contained in:
parent
1aa0990ccd
commit
7c15d9e080
3 changed files with 3 additions and 3 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -217,7 +217,7 @@ export default {
|
|||
/* QUOTA MANAGEMENT */
|
||||
usedSpace() {
|
||||
if (this.user.quota.used) {
|
||||
return OC.Util.humanFileSize(this.user.quota.used) + ' ' + t('settings', 'used');
|
||||
return t('settings', '{size} used', {size: OC.Util.humanFileSize(this.user.quota.used)});
|
||||
}
|
||||
return t('settings', 'unknown space used');
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue