diff --git a/src/openforms/js/lang/formio/en.json b/src/openforms/js/lang/formio/en.json index 6eacd18c6e..b32c87960e 100644 --- a/src/openforms/js/lang/formio/en.json +++ b/src/openforms/js/lang/formio/en.json @@ -35,6 +35,8 @@ "maxFileSizeMessage": "The maximum file size is {{maxFileSize}}.", "removeFileMessage": "Remove {{fileName}}", "The uploaded file is not of an allowed type. It must be: {{ pattern }}.": "The uploaded file is not of an allowed type. It must be: {{ pattern }}.", + "browseFile": "select '{{ fileFieldLabel }}' file", + "browseFiles": "select '{{ fileFieldLabel }}' files", "{{ labels }} or {{ lastLabel }}": "{{ labels }} or {{ lastLabel }}", "invalid_time": "Only times between {{ minTime }} and {{ maxTime }} are allowed.", "You must select at least {{minCount}} items.": "Ensure this field has at least {{minCount}} checked options.", diff --git a/src/openforms/js/lang/formio/nl.json b/src/openforms/js/lang/formio/nl.json index e9750be174..0c9bfb4dd9 100644 --- a/src/openforms/js/lang/formio/nl.json +++ b/src/openforms/js/lang/formio/nl.json @@ -48,6 +48,8 @@ "Press to open ": "Klik om te openen ", "or": "of", "browse": "blader", + "browseFile": "selecteer een '{{ fileFieldLabel }}'-bestand", + "browseFiles": "selecteer '{{ fileFieldLabel }}'-bestanden", "Switch to file upload": "Overschakelen naar bestandsupload", "Complete": "Afgerond", "File API & FileReader API not supported": "File API en FileReader API worden niet ondersteund", diff --git a/src/openforms/submissions/templates/report/submission_report.html b/src/openforms/submissions/templates/report/submission_report.html index fa933056fd..5b51d10f1f 100644 --- a/src/openforms/submissions/templates/report/submission_report.html +++ b/src/openforms/submissions/templates/report/submission_report.html @@ -6,7 +6,11 @@ - {% block title %}{% trans "Summary PDF" %}{% endblock %} + {% block title %} + {% blocktrans with form_name=report.form.name trimmed %} + {{ form_name }}: PDF report + {% endblocktrans %} + {% endblock %} {% block extra_css %}{% endblock %} diff --git a/src/openforms/templates/404.html b/src/openforms/templates/404.html index 3fdf20cfd4..eeef133037 100644 --- a/src/openforms/templates/404.html +++ b/src/openforms/templates/404.html @@ -1,6 +1,7 @@ {% extends 'master.html' %} {% block extra_css %}{% endblock %} +{% block skiplink %}{% endblock %} {% block content %}

Sorry, the requested page could not be found (404)

diff --git a/src/openforms/templates/account_blocked.html b/src/openforms/templates/account_blocked.html index 39bc9d2459..22f619ef0c 100644 --- a/src/openforms/templates/account_blocked.html +++ b/src/openforms/templates/account_blocked.html @@ -1,6 +1,7 @@ {% extends 'master.html' %} {% block extra_css %}{% endblock %} +{% block skiplink %}{% endblock %} {% block content %} diff --git a/src/openforms/templates/master.html b/src/openforms/templates/master.html index b14ea04c41..348c276338 100644 --- a/src/openforms/templates/master.html +++ b/src/openforms/templates/master.html @@ -30,6 +30,10 @@ + {% block skiplink %} + + {% endblock %} + {# No point in putting this in a