我有一个Play Framework 2.3.8的项目,我在Play Framework 2.4中迁移,但我遇到了I18n的问题。
现在我有一个像这样的代码:
@Messages("components.navbar.text")(locale.MyLang)
locale是:
object locale {
var MyLang =Lang("it")
def changeLang(newLang:String): Unit ={
MyLang=Lang(newLang)
}
}
我可以在不使用隐式语言的情况下使用此结构吗?
我有一些情况,我在同一页面使用不同的语言,在这种情况下,使用隐式语言很难和无聊。
答案 0 :(得分:1)
如果我正确地理解了您的问题,即您想要覆盖用户所选择的语言,那么我会使用隐式Messages
对象执行此操作(对于Play 2.4) :
@()(implicit messages: Messages)
<!-- some section in the user's chosen language -->
<h1>@Messages("hello.world")</h1>
<!-- some section in a specific language -->
@defining(messages.copy(lang = play.api.i18n.Lang("it")) { implicit messages =>
<h2>@Messages("something.in.italian")</h2>
}
即,使用defining
为某些嵌套的HTML块创建新的(隐式)消息。
如果你真的想去城里(我不一定会推荐这个)你可以通过隐式课程向italian
添加Messages
方法:
(在my.package.utils.i18n.MessagesExtensions.scala
中):
package my.packages.utils.i18n
import play.api.i18n.{Lang, Messages}
implicit class MessagesExtensions(messages: Messages) {
def italian = messages.copy(lang = Lang("it"))
// and an `as` method for good measure:
def as(code: String) = messages.copy(lang = Lang(code))
}
要在视图中完成该工作,您需要将该课程添加到templateImport
中的build.sbt
:
templateImports in Compile ++= Seq(
"my.packages.utils.i18n.MessagesExtensions"
)
然后在你的模板中你就可以了:
@()(implicit messages: Messages)
<!-- some section in the user's chosen language -->
<h1>@Messages("hello.world")</h1>
<!-- some section in a specific language -->
@defining(messages.italian) { implicit messages =>
<h2>@Messages("something.in.italian")</h2>
....
}
<!-- or singly, in another language -->
<h3>@Messages("another.thing.in.french")(messages.as("fr"))</h3>
但这可能有点过分,除非它真的为你节省了大量的样板语言切换。