How to change default locale in GWT
gwt, localization
Solution
How about:
<set-property name="locale" value="en_GB" />
Problem
Our application should be fixed to use eb-GB locale. For now I've added: ``` <extend-property name="locale" values="en_GB"/> ``` But this means that GWT builds premutations for both. How to setup GWT to eb-GB by default? Or how to remove `default` from compilation?