在玩!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}
我希望看到firstName
HTML 标签强,但不是应用强标签,而是打印strong
标签。
我希望你能理解我的问题。这在 Play 中是否可行?
谢谢!