简体   繁体   中英

Play! Framework 2.0.3, i18n error, `=' expected but `-' found

I'm new in "Play! Framework" and I'm trying to do a i18n for pt-BR.

My message file is called 'Message.pt-BR' and i put the pt-BR lang in application.conf.

In Java I'm using something like this:

flash("success", Messages.get("logout.success"));

And in scala.html files I'm using this:

@Messages("logout")

In my Message.pt-BR file I've this:

logout=Sair
logout.success=Logout realizado com sucesso. Volte sempre!

When I compile the project I have no errors, but when I request some page a have this error:

`=' expected but `-' found
Messages.pt-BR

Someone can help me?

我认为您必须将消息文件从Messages.pt-BR重命名为Messages.pt_BR (带有较低的“ _”)。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM