劇中!2.0次のようにi18nメッセージに引数を渡すことができます。
私の見解では:(message.key = task.created with arguments:firstName and a code)
<div class="alert alert-success">
<a class="close" data-dismiss="alert">×</a>
@Messages("task.created", MyContext.currentUser().firstName, newTask.code)
</div>
私のメッセージは次のように定義されています。
task.created=<strong>{0}</strong>, your task has been saved with code {1}
HTMLタグが強いものを見たいのですがfirstName
、強いタグを適用する代わりに、strong
タグを印刷するだけです。
私の質問をご理解いただければ幸いです。これはPlayで可能ですか?
ありがとう!