eav-manager
eav-manager copied to clipboard
Columns are not translated
It seems that columns of a datagrid does not use the translation system, so I can't be translated. Again we must override a lot of files.....
In DataGrid/template.html.twig, the following code should be added :
{% if sort[column.sortColumn] is defined %}
{{ form_widget(sort[column.sortColumn], {label: column.renderLabel | trans}) }}
{% else %}
{{ column.renderLabel | trans }}
{% endif %}