vote up 2 vote down star
1

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?

flag

1 Answer

vote up 4 vote down check

To extract the values you should use the getMsg method

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

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.