qickrooms / flex-mojos

Automatically exported from code.google.com/p/flex-mojos
0 stars 0 forks source link

Compiled Localization #71

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Doesn't work for compiled runtime:
http://blog.flex-mojos.info/2008/05/03/aplicacoes-localizadas-l10n-applications/
with current release.
Known issue: https://bugs.adobe.com/jira/browse/SDK-15453

Original issue reported on code.google.com by easyra...@gmail.com on 16 Jul 2008 at 2:19

GoogleCodeExporter commented 9 years ago
Fixed at revision 648

Original comment by velo...@gmail.com on 23 Jul 2008 at 6:31

GoogleCodeExporter commented 9 years ago
Are you sure is fixed, I try to upgrade to alpha3 to get fix. But with
mergeRessourceBundle flag set to true, it says: 
...
[ERROR] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] File {locale} not found
..

Original comment by easyra...@gmail.com on 18 Aug 2008 at 3:49

GoogleCodeExporter commented 9 years ago
It works for me with the following configuration:

<plugins>
   <plugin>
    <groupId>info.flex-mojos</groupId>
    <artifactId>flex-compiler-mojo</artifactId>
        <configuration>
        <mergeResourceBundle>true</mergeResourceBundle>
        <allowSourcePathOverlap>true</allowSourcePathOverlap>
        <includeResourceBundles>
            <bundle>WorkFlowModuleLib</bundle>
        </includeResourceBundles>
        <locales>
            <locale>en_US</locale>
            <locale>ar_AE</locale>
        </locales>
    </configuration>
    </plugin>
</plugins>

Hope this helps.
sriraman.

Original comment by sreeraa...@gmail.com on 26 Sep 2008 at 3:42