13

在玩!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}

我希望看到firstNameHTML 标签强,但不是应用强标签,而是打印strong标签。

我希望你能理解我的问题。这在 Play 中是否可行?

谢谢!

4

1 回答 1

21

像这样做:

@Html(Messages("task.created", MyContext.currentUser().firstName, newTask.code))

我希望这可以帮助你!

于 2012-04-27T01:37:19.323 回答