Monday, July 17, 2017

Can I remove compile permutations for the default language

We are using our own I18N system with GWT based on dynamic string internationalization.
So we actaully should not need any locale property's in our .gwt.xml

However. In our system the decimal character should always be a , instead of a point.

The way we solved this in the past was by adding following lines to the gwt.xml file :

<extend-property name="locale" values="nl"/>
<set-property-fallback name="locale" value="nl"/>

This however resulted in the compilation permutions going up from 5 to 10. Because now it is compiling for default language, and nl language.

Is there any way to disable compilation for default language, as we will never use this... Because compilations are getting to take really long and being able to cut these in half would be a great time gain.

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment