Re: I18N- sharing Constants

2015-06-16 Thread Ignacio Baca Moreno-Torres
GWT will not create the CommonLabels_fr.properties, but if you create it, it will be used by LogingLabels_fr, isn't it? You can force ComonLabels_fr.java creation adding GWT.create(CommonLabels.class) in your code (not recommended). You can see why and how localizable resources are generated h

Re: I18N- sharing Constants

2015-06-16 Thread Tushar Bhasme
Correction: I am getting the behavior I wanted for *LoginLabels.java* such that *LoginLabels_fr extends CommonLabels_fr* by default. It works as I intended. But I still don't know why it is not generating a *CommonLabels_fr.java* Thanks, Tushar On Wednesday, June 17, 2015 at 12:25:00 AM UTC+5:3

I18N- sharing Constants

2015-06-16 Thread Tushar Bhasme
In my app, I have created an interface CommonLabels extends Constants As name suggests, it contains all the labels that can be user on any page. There are some pages that use this interface directly. I have created other interfaces (eg LoginLabels) for each page that extend this interface adding