summaryrefslogtreecommitdiffstats
path: root/settings/src
diff options
context:
space:
mode:
Diffstat (limited to 'settings/src')
-rw-r--r--settings/src/components/userList/userRow.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/src/components/userList/userRow.vue b/settings/src/components/userList/userRow.vue
index e80e703dceb..2f9297d8841 100644
--- a/settings/src/components/userList/userRow.vue
+++ b/settings/src/components/userList/userRow.vue
@@ -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');
},