GWT Internationalization --- <ui:msg> eating spaces -


i have been working on internationalization project in utilized gwt i18n module. worked fine until hit problem.

below line in uibinder xml, can see there's trailing space there.

<ui:msg>click here </ui:msg> 

however, corresponding entry inside auto-generated properties file becomes

936ccdb97115e9f35a11d35e3d5b5cad=click here<line break> 

the space @ end missing! take of generated transient files, it's missing there well.

following attributes used in xml header

<ui:uibinder xmlns:ui="urn:ui:com.google.gwt.uibinder" ui:generateformat="com.google.gwt.i18n.rebind.format.propertiesformat" ui:generatekeys="com.google.gwt.i18n.rebind.keygen.md5keygenerator" ui:generatelocales="default"     ......> 

any appreciated!

untested, believe use nonbreaking space entity.

&#160; 

Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -