如何本地化 Outlook Web 插件清单文件中的文本字符串
How to localize the text strings in Outlook web addin manifest file
我开发了一个 Outlook Web 插件。 Web 插件清单文件中有几个字符串。有没有办法在清单文件中使用本地化的资源字符串。字符串的示例如下:
<bt:Urls>
<bt:Url id="msgReadTaskPaneUrl" DefaultValue="https://localhost:5000/" />
</bt:Urls>
<bt:ShortStrings>
<bt:String id="groupLabel" DefaultValue="My Add-in Group" />
<bt:String id="customTabLabel" DefaultValue="My Add-in Tab" />
<bt:String id="paneReadButtonLabel" DefaultValue="My Outlook Web Addin" />
<bt:String id="paneReadSuperTipTitle" DefaultValue="Save Email to External Repository" />
</bt:ShortStrings>
<bt:LongStrings>
<bt:String id="paneReadSuperTipDescription" DefaultValue="This plugin allows you to save your emails and attachments to an external repository. It has been developed by AR" />
</bt:LongStrings>
</Resources>
我需要使用“paneReadSuperTipTitle”和“paneReadSuperTipDescription”id 对字符串进行本地化。你能帮我实现这个目标吗?
谢谢
我开发了一个 Outlook Web 插件。 Web 插件清单文件中有几个字符串。有没有办法在清单文件中使用本地化的资源字符串。字符串的示例如下:
<bt:Urls>
<bt:Url id="msgReadTaskPaneUrl" DefaultValue="https://localhost:5000/" />
</bt:Urls>
<bt:ShortStrings>
<bt:String id="groupLabel" DefaultValue="My Add-in Group" />
<bt:String id="customTabLabel" DefaultValue="My Add-in Tab" />
<bt:String id="paneReadButtonLabel" DefaultValue="My Outlook Web Addin" />
<bt:String id="paneReadSuperTipTitle" DefaultValue="Save Email to External Repository" />
</bt:ShortStrings>
<bt:LongStrings>
<bt:String id="paneReadSuperTipDescription" DefaultValue="This plugin allows you to save your emails and attachments to an external repository. It has been developed by AR" />
</bt:LongStrings>
</Resources>
我需要使用“paneReadSuperTipTitle”和“paneReadSuperTipDescription”id 对字符串进行本地化。你能帮我实现这个目标吗?
谢谢