Fix string formatting

Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
pull/11417/head
John Molakvoæ (skjnldsv) 2018-09-27 17:16:12 +07:00
parent 1aa0990ccd
commit 7c15d9e080
No known key found for this signature in database
GPG Key ID: 60C25B8C072916CF
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');
},