OpenSocial 小工具应用程序中的本地化

发布于 2024-07-06 04:32:51 字数 375 浏览 10 评论 0原文

我正在尝试向 OpenSocial 应用程序添加多语言支持。 我发现我可以在小工具 XML 标记中链接到我自己的消息包:

<Module>
  <ModulePrefs title="Hello" description="Message bundle demo">
     <Require feature="opensocial-0.7"/>
     <Locale lang="en" messages="http://example.com/hello/en_ALL.xml"/>
  </ModulePrefs>
  . . .
</Module>

但是我如何真正从中提取值呢?

I'm trying to add multi-language support to an OpenSocial application. I see that I can link to my own message bundles in the gadget XML markup:

<Module>
  <ModulePrefs title="Hello" description="Message bundle demo">
     <Require feature="opensocial-0.7"/>
     <Locale lang="en" messages="http://example.com/hello/en_ALL.xml"/>
  </ModulePrefs>
  . . .
</Module>

But how do I actually extract values from them?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

獨角戲 2024-07-13 04:32:51

要提取值,您应该使用 getMsg 方法

var prefs = new gadgets.Prefs();
var msg = prefs.getMsg('hello_world');

To extract the values you should use the getMsg method

var prefs = new gadgets.Prefs();
var msg = prefs.getMsg('hello_world');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文