根据区域设置提供建议数据显示点击标记此帖子
<s:iterator value="listObject">
<s:component template="abc.vm">
<s:param name="text" value="listValue" />
<s:param name="prefix" value="listIndex" />
</s:component>
</s:iterator>
listObject
是一个 LinkedList
对象。 listValue
和 listIndex
是 Object
类型。 我有两个属性文件:
messages.properties:
activity.name=activity
messages_fr.properties:
activity.name=activity_fr
我想添加 Localization
功能,以便 LinkedList
填充并显示基于 Locale 的所有活动
。
请在这方面提出建议。
<s:iterator value="listObject">
<s:component template="abc.vm">
<s:param name="text" value="listValue" />
<s:param name="prefix" value="listIndex" />
</s:component>
</s:iterator>
listObject
is a LinkedList
object. listValue
and listIndex
is of Object
type.
i have two properties file:
messages.properties:
activity.name=activity
messages_fr.properties:
activity.name=activity_fr
i want to add Localization
feature so that LinkedList
populate and display all the activities based on the Locale
.
please suggest in this regard.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是关于 struts2 中国际化的教程。
Here's a tutorial on internationalization in struts2.