Hi,
I just tried out some of the new localization features of Flex 3 I
learned at Adobe Max Europe (Barcelona was great btw ;) but I had
some problems to get it working in Flex 3 Beta 2.
This is what I tried :
- for the Dutch version of my application I created a map /locale/nl in
my project folder, where I put my .properties files
- I changed the compiler arguments to : -source-path=../locale/{locale}
-locale=nl
I then got a lot of errors :
Unable to resolve resource bundle "collections" for locale "nl".
Unable to resolve resource bundle "containers" for locale "nl".
Unable to resolve resource bundle "controls" for locale "nl".
Unable to resolve resource bundle "core" for locale "nl".
Unable to resolve resource bundle "effects" for locale "nl".
Unable to resolve resource bundle "formatters" for locale "nl".
Unable to resolve resource bundle "logging" for locale "nl".
Unable to resolve resource bundle "messaging" for locale "nl".
Unable to resolve resource bundle "rpc" for locale "nl".
........
It took me some time to find out that the locale en_US was required.
The problem was solved by changing the compiler arguments to :
source-path=../locale/{locale} -locale=nl,en_US
Bart Ronsyn