Overriding default i18n messages for play 2.0

前端 未结 1 1417
无人共我
无人共我 2020-12-20 03:20

We use @Constraint.Required to validate the fields of our forms, and this generates a ValidationError - which is all well and nice. This error has a standard error message (

相关标签:
1条回答
  • 2020-12-20 03:52

    That's not quite good solution especially when you want to make multilingual app. So placing changed messages in annotations will fail in such case.

    Fortunately there is solution, which works as expected. You need to place your labels into the language file with language code as an extension ie. conf/messages.en, even if there is only one language defined and it's English.

    The default messages with their keys can be copied from the Play's sources

    0 讨论(0)
提交回复
热议问题