Reputation: 2467
how i can use i18n messages in html's input tag? for example:
<input type="text" name="username" placeholder="${message(code:'placeholder.username')}"
to show placeholder text in several langs.
Upvotes: 0
Views: 854
Reputation: 1376
<input type="text" name="username" placeholder="${message(code: 'placeholder.username')}">
Upvotes: 2