xml - Wicket doesn't encode correctly pair of two characters -
coulnd't find better question sorry , sorry bad english.
so i'm using wicket read messages xml file. "ż" , "ó" polish letter.
xml:
<?xml version="1.0" encoding="utf-8"?> <properties> <entry key="wrongencode">inżynierów</entry> </properties>
html:
<?xml version="1.0" encoding="utf-8" ?> <html ...> <wicket:extend> <div class="someclassforwrongencode"><h3><wicket:message key="wrongencode"></wicket:message></h3></div> </wicket:extend> </html>
css:
.someclassforwrongencode{ position:relative; left:40px; width: auto; display: inline-block; height: 15px; }
with i'm getting one:
but if change in xml file
<entry key="wrongencode">iżynierów</entry>
i this:
so seems encoding polish letters correctly ("ż" , "ó") if add "n" before "ż", wicket won't encode it. couldn't find answer, idea how fix it?
Comments
Post a Comment