I'm wondering what would be the best way to asynchronously load a translation bundle.
I can call "setBundle" on oj.Translations object, but want to make sure that my call to server to get list is complete before I make calls to "getTranslatedString", like I am within appController for menu titles.
How does the functionality decide and also get the locale specific replacements. I'm assuming that if I go down the "setBundle" route, that I would have to load the primary and then the locale specific for any replacements based the the browser locale.
I'm assuming that the locale specific files are just an overloaded file and it would always use the primary translations with the locale specific replacements.