for my web app (spring boot + thymeleaf) i use message_fr.properties file witch contains some special characters converted to html
the problem comes when i display the error validation message in lang=fr :
<span th:if="${#fields.hasErrors('title')}" th:errors="*{title}"></span>
assume that key/value are : NotEmpty.item.title = Ne doit pas être null
on screen it displays the error message without conversion : Ne doit pas être null
how can i resolve it ?