From 9217360973e251205e0d128973f9e6c75e982b48 Mon Sep 17 00:00:00 2001 From: Baptiste Jonglez Date: Sun, 18 Jul 2021 15:08:34 +0200 Subject: [PATCH] Localize month names in the statistics view --- ihatemoney/templates/statistics.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ihatemoney/templates/statistics.html b/ihatemoney/templates/statistics.html index 9e7a10de..86f9cd42 100644 --- a/ihatemoney/templates/statistics.html +++ b/ihatemoney/templates/statistics.html @@ -27,7 +27,7 @@ {% for month in months %} - {{ _(month.strftime("%B")) }} {{ month.year }} + {{ month|dateformat("MMMM yyyy") }} {{ monthly_stats[month.year][month.month]|currency }} {% endfor %}