{% extends 'ddm_core/page_with_form.html' %} {% load static %} {% block page_title %}Edit Uploader Translations{% endblock page_title %} {% block main_heading %}Uploader Translations{% endblock main_heading %} {% block sub_heading %} Override default text included in the donation interface or add translations for additional languages. {% endblock sub_heading %} {% block form_content %}
{% for field in form %} {% include "ddm_core/form_components/_basic_field.html" with field=field %}

For example, the donation consent question can be changed by setting the custom translations to: {"en": {"feedback": {"donation-question": "custom english question"}}, "de": {"feedback": {"donation-question": "custom german question"}}}

Below you can see the structure of the original translation file to identify the keys you want to overwrite.

{% endfor %}
{% with locales_example="
"|add:locales|add:"
" %} {% include "ddm_core/components/info_collapsible.html" with element_id="ulbps" title="See original translations" include_path="" body=locales_example %} {% endwith %}
{% endblock form_content %} {% block scripts %} {{ block.super }} {% endblock scripts %}