1

我想将messages.properties 拆分为几个文件,例如一个包含验证消息,另一个包含FAQ 或ToS 的文本。

我一直在搜索,发现了这个网站: http: //mrhaki.blogspot.com.es/2011/03/grails-goodness-splitting-i18n-message.html

但它没有用。

有可能做到这一点,还是我只是在浪费时间?

先谢谢了。

编辑:我正在使用 Grails 2.3.0

4

2 回答 2

3

在 i18n 文件夹中,我创建了 customValidation.properties 和 view.properties。对我来说很好。您必须遵守将它们保存在 i18n 文件夹中的约定,并且名称中不能有下划线,除非表示区域设置。

于 2013-10-09T13:09:52.683 回答
2

@Gregg,谢谢你的提示。

顺便说一句,为了在项目中保持良好的结构,您还可以将 i18n 文件嵌套在子目录中,如下所示:

grails-app
|--i18n
|--|--en_US
|--|--|--messagesUserProfile_en_US.properties
|--|--|--messagesRegistration_en_US.properties
|--|--|--messagesCommon_en_US.properties
|--|--pl_PL
|--|--|--messagesUserProfile_pl_PL.properties
|--|--|--messagesRegistration_pl_PL.properties
|--|--|--messagesCommon_pl_PL.properties
于 2014-04-04T11:05:03.920 回答