diff --git a/allianceauth/fleetactivitytracking/templates/fleetactivitytracking/fatlinkpersonalmonthlystatisticsview.html b/allianceauth/fleetactivitytracking/templates/fleetactivitytracking/fatlinkpersonalmonthlystatisticsview.html
index 394cd261..98d8c01c 100644
--- a/allianceauth/fleetactivitytracking/templates/fleetactivitytracking/fatlinkpersonalmonthlystatisticsview.html
+++ b/allianceauth/fleetactivitytracking/templates/fleetactivitytracking/fatlinkpersonalmonthlystatisticsview.html
@@ -15,7 +15,13 @@
{% endif %}
-
{% blocktrans %}{{ user }} has collected {{ n_fats }} link{{ n_fats|pluralize }} this month.{% endblocktrans %}
+
+ {% blocktrans count links=n_fats %}
+ {{ user }} has collected one link this month.
+ {% plural %}
+ {{ user }} has collected {{ links }} links this month.
+ {% endblocktrans %}
+
{% trans "Ship" %} |
@@ -29,7 +35,13 @@
{% endfor %}
{% if created_fats %}
- {% blocktrans %}{{ user }} has created {{ n_created_fats }} link{{ n_created_fats|pluralize }} this month.{% endblocktrans %}
+
+ {% blocktrans count links=n_created_fats %}
+ {{ user }} has created one link this month.
+ {% plural %}
+ {{ user }} has created {{ links }} links this month.
+ {% endblocktrans %}
+
{% if created_fats %}
diff --git a/allianceauth/services/templates/services/service_confirm_delete.html b/allianceauth/services/templates/services/service_confirm_delete.html
index a1dab4b0..a2e1772e 100644
--- a/allianceauth/services/templates/services/service_confirm_delete.html
+++ b/allianceauth/services/templates/services/service_confirm_delete.html
@@ -2,7 +2,6 @@
{% load i18n %}
-
{% block page_title %}
{% blocktrans with service_name=view.service_name|title %}Delete {{ service_name }} Account?{% endblocktrans %}
{% endblock page_title %}
@@ -18,8 +17,8 @@