Reading problems from property file (Spaces)

XI Damo IX

New Member
I use i18n in my web app. Reading it from .properties.Everything ok, but when I'm reading text for button (type="submit"), it's reading before first space only.Code from jsp file:\[code\]<input type="submit" value=http://stackoverflow.com/questions/11172368/<fmt:message key="button.ok" /> style="width:100"/>\[/code\]Code from .properties file:\[code\]button.ok=Sign in\[/code\]But, when I'm reading the text from property to other text fields (not buttons) - everything works good.for ex.\[code\]<fmt:message key="login.password" />\[/code\]And login.password=Enter your password:p.S. Sorry for my english :)
 
Top