message properties dynamic key
Is it possible to have dynamic keys (not values) in message properties. Something like:
error.required.{0}= This field is required.
It might n开发者_开发问答ot be standard approach, but I have scenario where it kind of makes sense for me to do that.
Thanks!
Generally it would be something like:
error.required[{0}] = 'This field is required'
Clarifying which language you're using would help.
精彩评论