Defining Strings to be translated

This commit is contained in:
2020-10-01 22:10:31 +02:00
parent a2004bd789
commit 556931d2b1
6 changed files with 20 additions and 20 deletions

View File

@@ -2,13 +2,13 @@
{% load static %}
{% load widget_tweaks %}
# {% block title %}Registrierung{% endblock %}
# {% block title %}{% translate 'Sign up' %}{% endblock %}
{% block maincontent %}
<form class="LP-Form" method="POST">
<fieldset class="LP-Form__Fieldset">
<legend class="LP-Form__Legend">Registration</legend>
<legend class="LP-Form__Legend">{% translate 'Sign Up' %}</legend>
{% csrf_token %}
<div class="LP-Form__Composition LP-Form__Composition--breakable">
<div class="LP-Form__Field">
@@ -37,7 +37,7 @@
<div class="LP-Form__Composition LP-Form__Composition--buttons">
<div class="LP-Form__Field LP-Form__Button LP-Input">
<button class="LP-Button">Sign up</button>
<button class="LP-Button">{% translate 'Sign Up' %}</button>
</div>
</div>
</fieldset>