Thank you for your answer. It helped me to find my problems.

First I compiled in "Wrapper" Goal and i don't know why, but it
produced some problems
And I used "locale" configuration instead of "compiledLocale"
And finally I used some resource librairies (BabelFlex libraries:
http://ttfx.org/Tontons_Flexeurs/BabelFlex.html) compiled with a
different SDK from mine.

Thanks a lot for your help.

Bye

On Jan 18, 6:41 pm, velo <[email protected]> wrote:
> You didn't configure flexmojos to build in any location then, so by
> default it will build in English and English alone.
>
> Follow the links 
> herehttp://groups.google.com/group/flex-mojos/browse_thread/thread/928027...
>
> VELO
>
> On Jan 18, 3:15 pm, Loïc Mésières <[email protected]> wrote:
>
> > Hi,
>
> > I would to compile my flex application in french but the result is
> > always in english :
> > I install manually the french translation of the framework with this
> > command line instruction :
>
> > mvn install:install-file -Dfile=framework-3.4.0.9271-fr_FR.rb.swc -
> > DgroupId=com.adobe.flex.framework -DartifactId=framework -
> > Dversion=3.4.0.9271 -Dpackaging=rb.swc -Dclassifier=fr_FR
>
> > I'm lookin on internet from 2 days, and no solution.
> > Please could you help me?
>
> > My super pom for all my flex applications looks like this :
>
> > Thank you
>
> > <project xmlns="http://maven.apache.org/POM/4.0.0"; 
> > xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
> > xsi:schemaLocation="http://
> > maven.apache.org/POM/4.0.0http://maven.apache.org/maven-v4_0_0.xsd";>
> >         <modelVersion>4.0.0</modelVersion>
>
> >         <parent>
> >                 <groupId>com.domotic</groupId>
> >                 <artifactId>flex-super-pom</artifactId>
> >                 <version>1.0-SNAPSHOT</version>
> >         </parent>
>
> >         <groupId>com.domotic</groupId>
> >         <artifactId>flex-super-pom-swf</artifactId>
> >         <version>1.0-SNAPSHOT</version>
> >         <name>Flex Super Pom For SWF</name>
> >         <packaging>pom</packaging>
>
> >         <dependencies>
> >                 <dependency>
> >                         <groupId>com.adobe.flex.framework</groupId>
> >                         <artifactId>framework</artifactId>
> >                         <version>${flex.version}</version>
> >                         <type>swc</type>
> >                         <scope>rsl</scope>
> >                 </dependency>
> >                 <dependency>
> >                         <groupId>com.adobe.flex.framework</groupId>
> >                         <artifactId>flex-framework</artifactId>
> >                         <version>${flex.version}</version>
> >                         <type>pom</type>
> >                         <exclusions>
> >                                 <exclusion>
> >                                         
> > <groupId>com.adobe.flex.framework</groupId>
> >                                         
> > <artifactId>playerglobal</artifactId>
> >                                 </exclusion>
> >                         </exclusions>
> >                         <scope>external</scope>
> >                 </dependency>
> >                 <dependency>
> >                         <groupId>com.adobe.flex.framework</groupId>
> >                         <artifactId>playerglobal</artifactId>
> >                         <version>${flex.version}</version>
> >                         <classifier>${flash.player.classifier}</classifier>
> >                         <type>swc</type>
> >                         <scope>external</scope>
> >                 </dependency>
> >                 <dependency>
> >                         <groupId>com.adobe.flex.framework</groupId>
> >                         <artifactId>rpc</artifactId>
> >                         <version>${flex.version}</version>
> >                         <type>swc</type>
> >                         <scope>rsl</scope>
> >                 </dependency>
> >                 <dependency>
> >                         <groupId>com.adobe.flex.framework</groupId>
> >                         <artifactId>framework</artifactId>
> >                         <version>${flex.version}</version>
> >                         <type>rb.swc</type>
> >                         <classifier>en_US</classifier>
> >                 </dependency>
> >                 <dependency>
> >                         <groupId>com.adobe.flex.framework</groupId>
> >                         <artifactId>framework</artifactId>
> >                         <version>${flex.version}</version>
> >                         <type>rb.swc</type>
> >                         <classifier>fr_FR</classifier>
> >                 </dependency>
> >                 <dependency>
> >                         <groupId>com.adobe.flex.framework</groupId>
> >                         <artifactId>rpc</artifactId>
> >                         <version>${flex.version}</version>
> >                         <type>rb.swc</type>
> >                         <classifier>en_US</classifier>
> >                 </dependency>
> >                 <dependency>
> >                         <groupId>com.adobe.flex.framework</groupId>
> >                         <artifactId>rpc</artifactId>
> >                         <version>${flex.version}</version>
> >                         <type>rb.swc</type>
> >                         <classifier>fr_FR</classifier>
> >                 </dependency>
> >                 <dependency>
> >                         <groupId>com.adobe.flex.framework</groupId>
> >                         <artifactId>utilities</artifactId>
> >                         <version>${flex.version}</version>
> >                         <type>swc</type>
> >                 </dependency>
> >                 <dependency>
> >                         <groupId>org.sonatype.flexmojos</groupId>
> >                         <artifactId>flexmojos-unittest-support</artifactId>
> >                         <version>${flexmojos.version}</version>
> >                         <type>swc</type>
> >                         <scope>test</scope>
> >                 </dependency>
> >         </dependencies>
>
> >         <properties>
> >                 <flex.version>3.4.0.9271</flex.version>
> >                 <flexmojos.version>3.2.0</flexmojos.version>
> >                 <flash.version>10.0.0</flash.version>
> >                 <flash.player.classifier>10</flash.player.classifier>
> >                 <build.finalname>Flex-Maven-RSL</build.finalname>
> >         </properties>
>
> >         <build>
>
> >                 <sourceDirectory>src</sourceDirectory>
> >                 <testSourceDirectory>test</testSourceDirectory>
>
> >                 <plugins>
> >                         <plugin>
> >                                 <groupId>org.sonatype.flexmojos</groupId>
> >                                 
> > <artifactId>flexmojos-maven-plugin</artifactId>
> >                                 <executions>
> >                                         <execution>
> >                                                 <goals>
> >                                                         <goal>wrapper</goal>
> >                                                 </goals>
> >                                                 <configuration>
> >                                                         <debug>true</debug>
> >                                                         <rslUrls>
> >                                                                 
> > <rsl>/rsl/{artifactId}.swf</rsl>
> >                                                         </rslUrls>
> >                                                         
> > <targetplayer>${flash.version}</targetplayer>
> >                                                 </configuration>
> >                                         </execution>
> >                                 </executions>
> >                                 <configuration>
> >                                         <verifyDigests>false</verifyDigests>
> >                                 </configuration>
> >                                 <dependencies>
> >                                         <dependency>
> >                                                 
> > <groupId>com.adobe.flex</groupId>
> >                                                 
> > <artifactId>compiler</artifactId>
> >                                                 
> > <version>${flex.version}</version>
> >                                                 <type>pom</type>
> >                                         </dependency>
> >                                 </dependencies>
> >                         </plugin>
> >                 </plugins>
> >         </build>
> > </project>
-- 
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?hl=en?hl=en

http://blog.flex-mojos.info/

Reply via email to