diff --git a/CHANGELOG.md b/CHANGELOG.md index 659542a2..379f7c03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ * Hide tab when user is not authorized to access it [#712](https://github.com/getgrav/grav-plugin-admin/issues/712) * Fixed Lists issue when reindexing, causing Radio fields to potentially lose their `checked` status * Avoid overwriting a file when uploaded with the same filename through the Admin blueprint `file` field type if `avoid_overwriting` is enabled on the field + * Translate the description of a blueprint field [#729](https://github.com/getgrav/grav-plugin-admin/issues/729) # v1.1.2 ## 07/16/2016 diff --git a/themes/grav/templates/forms/field.html.twig b/themes/grav/templates/forms/field.html.twig index a53ba1dd..c9bbdb1e 100644 --- a/themes/grav/templates/forms/field.html.twig +++ b/themes/grav/templates/forms/field.html.twig @@ -72,7 +72,7 @@ {% endblock %} {% if field.description %}
- {{ field.description|raw }} + {{ field.description|tu|raw }}
{% endif %}