My app has locales en_US, fr_FR, zh-CH,etc. I want to compile all property 
files to seperate resource module, its name like projectName_locale.swf.
In flexmojos 3.8, I can ealily implement it. use this config
               <sourceFile>MainApp.mxml</sourceFile>
               
<resourceBundlePath>${basedir}/src/main/flex/locale/{locale}</resourceBundlePath>
               <runtimeLocales>${locales}</runtimeLocales>
               <mergeResourceBundle>false</mergeResourceBundle>
               <runtimeLocaleOutputPath>
                  /{contextRoot}/MainApp_{locale}.{extension}
               </runtimeLocaleOutputPath>
 
When I migrate to 4.0-RC2, I can't get the resource modules. The following 
is my config
      <resourceBundleNames>
         BootupApp_{locale}.{extension}
      </resourceBundleNames>
      //Or I use this outpath <localesOutputPath>/target</localesOutputPath>
       
<localesOutputPath>target/BootupApp_{locale}.{extension}</localesOutputPath>
 
What I get is MainApp.rb.swc. But MainApp is my main app and it is compiled 
to a swf file. Is this a flexmojos bug or I use wrong config?

-- 
You received this message because you are subscribed to the Google
Groups "Flex Mojos" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/flex-mojos

http://flexmojos.sonatype.org/

Reply via email to