summaryrefslogtreecommitdiff
path: root/src/jwebmail/templates
diff options
context:
space:
mode:
authorJannis M. Hoffmann <jannis@fehcom.de>2024-11-01 17:34:33 +0100
committerJannis M. Hoffmann <jannis@fehcom.de>2024-11-01 17:34:33 +0100
commit38dc1cde0d8ff6c52c39ec71be14a98946f04bad (patch)
treea80a50a03897920ff3723f3fb527516b7b2f6838 /src/jwebmail/templates
parent820d861066ab444a7fa14ca16b40352e7fdf43f1 (diff)
localize file sizes
Diffstat (limited to 'src/jwebmail/templates')
-rw-r--r--src/jwebmail/templates/_folders.html2
-rw-r--r--src/jwebmail/templates/_main_table.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/jwebmail/templates/_folders.html b/src/jwebmail/templates/_folders.html
index 7b8f85d..7bee2a2 100644
--- a/src/jwebmail/templates/_folders.html
+++ b/src/jwebmail/templates/_folders.html
@@ -44,7 +44,7 @@
<span class="column has-text-centered">
{% if total_size %}
{% trans %}mailbox size: {% endtrans %}
- {{ total_size|filesizeformat }}
+ {{ total_size|filesizeformat|num_localize }}
{% endif %}
</span>
</div>
diff --git a/src/jwebmail/templates/_main_table.html b/src/jwebmail/templates/_main_table.html
index b6493fb..cc22da4 100644
--- a/src/jwebmail/templates/_main_table.html
+++ b/src/jwebmail/templates/_main_table.html
@@ -33,7 +33,7 @@
</div>
<div class="column is-2">
- {{ msg.byte_size|filesizeformat }}
+ {{ msg.byte_size|filesizeformat|num_localize }}
</div>
</div>
</div>