mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
[fix] Avoid incomprehensible info about quota (#640)
This commit is contained in:
parent
4f28ba4426
commit
5650be7a98
2 changed files with 8 additions and 6 deletions
|
@ -281,6 +281,7 @@
|
||||||
"user_fullname": "Full name",
|
"user_fullname": "Full name",
|
||||||
"user_interface_link": "User interface",
|
"user_interface_link": "User interface",
|
||||||
"user_mailbox_quota": "Mailbox quota",
|
"user_mailbox_quota": "Mailbox quota",
|
||||||
|
"user_mailbox_use": "Mailbox used space",
|
||||||
"user_new_forward": "newforward@myforeigndomain.org",
|
"user_new_forward": "newforward@myforeigndomain.org",
|
||||||
"user_new_mail": "newmail@mydomain.org",
|
"user_new_mail": "newmail@mydomain.org",
|
||||||
"user_username": "Username",
|
"user_username": "Username",
|
||||||
|
|
|
@ -35,12 +35,13 @@
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td><strong>{{t 'user_mailbox_quota'}}</strong></td>
|
<td><strong>{{t 'user_mailbox_quota'}}</strong></td>
|
||||||
{{#if mailbox-quota.use}}
|
<td>{{mailbox-quota.limit}}</td>
|
||||||
<td>{{mailbox-quota.use}} / {{mailbox-quota.limit}}</td>
|
</tr>
|
||||||
{{else}}
|
|
||||||
<td>{{mailbox-quota}}</td>
|
<tr>
|
||||||
{{/if}}
|
<td><strong>{{t 'user_mailbox_use'}}</strong></td>
|
||||||
</tr
|
<td>{{mailbox-quota.use}}</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td><strong>{{t 'user_emailaliases'}}</strong></td>
|
<td><strong>{{t 'user_emailaliases'}}</strong></td>
|
||||||
|
|
Loading…
Reference in a new issue