我正在尝试向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>


但是,我实际上如何从中提取值?

最佳答案

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

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

关于javascript - OpenSocial小工具应用中的本地化,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/160296/

10-11 12:54