fix: change placeholder language

This commit is contained in:
sthag 2024-08-14 18:02:45 +02:00
parent 7ae8799d4f
commit 95a18e636f
2 changed files with 3 additions and 3 deletions

View file

@ -5,9 +5,9 @@
{% macro link(class='', text='domain.tld', href='http://domain.internal') %}
<a class="{{ class }}" href="{{ href }}">{{ text }}</a>
{% endmacro %}
{% macro name(class='', text='Prename Surname') %}
{% macro name(class='', text='Vorname Nachname') %}
<span class="{{ class }}">{{ text }}</span>
{% endmacro %}
{% macro address(class='', text='Street No., Postcode City') %}
{% macro address(class='', text='Straße Nr., PLZ Ort') %}
<span class="{{ class }}">{{ text }}</span>
{% endmacro %}