ajout des traductions en et fr

This commit is contained in:
hugo.pradier2
2024-06-11 23:05:31 +02:00
committed by clfreville2
parent 352a0db047
commit 0215583fee
25 changed files with 1128 additions and 75 deletions

View File

@@ -1,9 +1,9 @@
{% extends 'base.html.twig' %}
{% block title %}Register{% endblock %}
{% block title %}{{ 'register'|trans }}{% endblock %}
{% block body %}
<h1>Register</h1>
<h1>{{ 'register'|trans }}</h1>
{{ form_errors(registrationForm) }}
@@ -14,6 +14,6 @@
}) }}
{{ form_row(registrationForm.agreeTerms) }}
<button type="submit" class="btn btn-primary">Register</button>
<button type="submit" class="btn btn-primary">{{ 'register'|trans }}</button>
{{ form_end(registrationForm) }}
{% endblock %}