Page 1 of 1

czech letters in labels/buttons

Posted: Sun Aug 25, 2019 8:47 pm
by pecaN
Hi all,

I've just started mesing with RapaGUI a bit so I may have overlooked it in the docs but I need help with this very important issue. Is there a possibility to heve Czech (or other european languages' special characters supported by Unicode) in labels and butons texts?..

when i type e.g. this : <label>Add</label> then it's ok but when I use <label>Přidat</label> which is Czech translation of "Add" and contains "ř" which is Czech common character RapaGUI shows error message... ?

thanx pecaN

Re: czech letters in labels/buttons

Posted: Mon Aug 26, 2019 3:00 pm
by airsoftsoftwair
Yes, this is possible. You must save your XML in UTF-8 encoding and specify this encoding in the header like so:

Code: Select all

<?xml version="1.0" encoding="utf-8"?>
Then Czech letters should appear correctly.

Re: czech letters in labels/buttons

Posted: Tue Aug 27, 2019 10:27 pm
by pecaN
yep thanks!!!

Now it works great, I had the utf-8 encoding declared properly but there was a problem with saving my xml in utf-8 format :-) pecaN