如何使用 .net 资源文件进行具有多语言支持的 sharepoint 项目
我正在使用 SharePoint 2010 页面的 SharePoint 资源文件。
示例:
<Field ID="{A1D46FA9-0AE7-421A-A714-9561631632E6}" Name="EYDocStatus" DisplayName="Status ID" Sealed="TRUE" Type="Choice">
<CHOICES>
<CHOICE>Completed Last</CHOICE>
</CHOICES>
</Field>
在显示名称和选择中,我需要进行如下更改
Display Name=**"$Resources:StatusID"**
<CHOICE>**$Resources:CompletedLast**</CHOICE>
我还需要将其映射到资源文件中。
名称=状态ID Value=Status ID
像这样我有 1000 多个项目要处理。需要建议以任何自动化方式实现这一点。
I am working with SharePoint resource file for SharePoint 2010 page.
Example:
<Field ID="{A1D46FA9-0AE7-421A-A714-9561631632E6}" Name="EYDocStatus" DisplayName="Status ID" Sealed="TRUE" Type="Choice">
<CHOICES>
<CHOICE>Completed Last</CHOICE>
</CHOICES>
</Field>
In the for Displayname and Choice I need to change as below
Display Name=**"$Resources:StatusID"**
<CHOICE>**$Resources:CompletedLast**</CHOICE>
Also I need map this into resource file.
Name= StatusID
Value=Status ID
Like this I have 1000+ items to work. Need to suggestion to achieve this is in any automated way.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
资源——是一种痛苦。也许某些资源重构工具(例如这个 http://resourcerefactoring.codeplex.com/)可以提供帮助。
Resources - is a pain. Maybe some resource refactoring tool (for example this one http://resourcerefactoring.codeplex.com/) can help.