diff --git a/padelnomics/src/padelnomics/leads/templates/partials/quote_step_9.html b/padelnomics/src/padelnomics/leads/templates/partials/quote_step_9.html
index 2929982..afc09da 100644
--- a/padelnomics/src/padelnomics/leads/templates/partials/quote_step_9.html
+++ b/padelnomics/src/padelnomics/leads/templates/partials/quote_step_9.html
@@ -21,19 +21,19 @@
- {% if 'contact_name' in errors %}
{% if lang == 'de' %}Vollständiger Name ist erforderlich{% else %}Full name is required{% endif %}
{% endif %}
+ {% if 'contact_name' in errors %}
{{ t.q9_error_name }}
{% endif %}
- {% if 'contact_email' in errors %}
{% if lang == 'de' %}E-Mail ist erforderlich{% else %}Email is required{% endif %}
{% endif %}
+ {% if 'contact_email' in errors %}
{{ t.q9_error_email }}
{% endif %}
- {% if 'contact_phone' in errors %}
{% if lang == 'de' %}Telefonnummer ist erforderlich{% else %}Phone number is required{% endif %}
{% endif %}
+ {% if 'contact_phone' in errors %}
{{ t.q9_error_phone }}
{% endif %}
@@ -62,7 +62,7 @@
{{ steps[step - 1].title }}
- {% if lang == 'de' %}Schritt {{ step }} von {{ steps|length }}{% else %}{{ step }} of {{ steps|length }}{% endif %}
+ {{ t.q_step_counter | tformat(step=step, total=steps|length) }}
diff --git a/padelnomics/src/padelnomics/leads/templates/quote_request.html b/padelnomics/src/padelnomics/leads/templates/quote_request.html
index 7581434..c3dc993 100644
--- a/padelnomics/src/padelnomics/leads/templates/quote_request.html
+++ b/padelnomics/src/padelnomics/leads/templates/quote_request.html
@@ -1,5 +1,5 @@
{% extends "base.html" %}
-{% block title %}{% if lang == 'de' %}Angebote von Bauunternehmen erhalten - {{ config.APP_NAME }}{% else %}Get Builder Quotes - {{ config.APP_NAME }}{% endif %}{% endblock %}
+{% block title %}{{ t.q_page_title }} - {{ config.APP_NAME }}{% endblock %}
{% block head %}