Localization encoding

2008-09-30 Thread Milan Křápek
Hi, I have problem with localization encoding. In my application I use the both ways how to localize it. The first: storing localization in property files wokrs perfect, but the second: defining two HTML files has some problem with encoding. I use 'cs' encoding for Czech language

Re: Localization encoding

2008-09-30 Thread Timo Rantalaiho
On Tue, 30 Sep 2008, Milan K?ápek wrote: So the dynamic content of localized pages (from property files) is displayd well but the static part defined in 'mypage_cs.html' is displazyed wrong. Has anybody met the same problem? Is there any methods for configuring waicket to render pages

Re: Localization encoding

2008-09-30 Thread Sven Meier
For encoding the following is relevant in Wicket: - ?xml version=1.0 encoding=UTF-8? The explicit encoding of your markup files. - IMarkupSettings#defaultMarkupEncoding The default encoding to be used by Wicket to read your markup files (if not explicitely specified), default null. -