我是“Play!Framework”的新手,我正在尝试为pt-BR做i18n。
我的消息文件名为'Message.pt-BR',我将pt-BR lang放在application.conf中。
在Java中,我使用的是这样的东西:
flash("success", Messages.get("logout.success"));
在我正在使用的scala.html文件中:
@Messages("logout")
在我的Message.pt-BR文件中,我有这个:
logout=Sair
logout.success=Logout realizado com sucesso. Volte sempre!
当我编译项目时,我没有错误,但是当我请求某个页面时出现此错误:
`=' expected but `-' found
Messages.pt-BR
有人可以帮助我吗?
答案 0 :(得分:1)
我认为您必须将消息文件从Messages.pt-BR
重命名为Messages.pt_BR
(使用较低的'_')。