Hi,
I have a feeling I'll end up eventually answering this myself, but here it goes....
My widget and commands work in English but they don't load in other languages. What I noticed was that it seems that the grunt script will compile into <module>-all.js the root/lang.js file, but not any of the others, even if other languages are defined in your nls/lang.js.
For example, I have
define({
"root":true,
"en-us",false,
"en", false,
"de", true,
"fr":true
});
Is there something I need to change in order that the contents of de/lang.js and fr/lang.js *also* get copied into the <module>-all.js bundle?
Thanks in advance
-Hugh