diff --git a/templates/incidents_base.html b/templates/incidents_base.html
index 6bf4e73..5305acb 100644
--- a/templates/incidents_base.html
+++ b/templates/incidents_base.html
@@ -181,7 +181,7 @@
{% block content_table_actions %}
+ title="{% translate 'Download' %}">
{% endblock %}
diff --git a/templates/observer/incidents.html b/templates/observer/incidents.html
index e0fcb4e..9989b82 100644
--- a/templates/observer/incidents.html
+++ b/templates/observer/incidents.html
@@ -38,7 +38,7 @@
{% endif %}
{% if filtered_workflows %}
+ title="{% translate 'Download' %}">
{% endif %}
@@ -83,7 +83,7 @@
}'
data-bs-toggle="modal"
data-bs-target="#contacts_incident"
- title="Contacts">
+ title="{% translate 'Contacts' %}">
{% endblock %}
diff --git a/templates/operator/incidents.html b/templates/operator/incidents.html
index 6c69a18..c89bafa 100644
--- a/templates/operator/incidents.html
+++ b/templates/operator/incidents.html
@@ -55,7 +55,7 @@
{% translate "My incidents" %}
data-workflow-comment="{{ filtered_workflows.comment }}"
data-bs-toggle="modal"
data-bs-target="#workflow_comment"
- title="Comment">
+ title="{% translate 'Comment' %}">
{% endif %}
@@ -97,7 +97,7 @@
{% translate "My incidents" %}
data-delete-url="{% url 'delete_incident' 0 %}"
data-bs-toggle="modal"
data-bs-target="#delete_incident"
- title="Delete">
+ title="{% translate 'Delete' %}">
{% endif %}
diff --git a/templates/regulator/incidents.html b/templates/regulator/incidents.html
index 40ddfb2..13648d0 100644
--- a/templates/regulator/incidents.html
+++ b/templates/regulator/incidents.html
@@ -1,5 +1,6 @@
{% extends 'incidents_base.html' %}
{% load static %}
+{% load i18n %}
{% block bootstrap5_extra_script %}
{{ block.super }}
@@ -21,7 +22,7 @@
}'
data-bs-toggle="modal"
data-bs-target="#contacts_incident"
- title="Contacts">
+ title="{% translate 'Contacts' %}">
{% endblock %}