I'm working with Spring Boot + Thymeleaf. I want to internationalize something like this:
<p>Already registered? <span class="link">Log In</span></p>
If I add th:text="#{prompt}"
to the <p>
tag, the inner span
will be replaced by the property value.
Is there any way to internationalize the whole text of <p>
element with just one property in my resource bundle? (maybe with placeholders or I don't know)