Hello,
What about cyrillic support/UTF-8 in devices?
I.e. if I use
var dateStr = Lang.format("$1$ $2$ $3$", [info.day_of_week, info.day, info.month]);
it is displayed day name correctly in Russian, when UI in FR920 is Russian. This means font in device can be set to Cyrillic and device can display it.
But when I try to add to display some chars in Cyrillic, like
var dateStr = Lang.format("$1$ $2$ $3$ абв", [info.day_of_week, info.day, info.month]);
dc.drawText(30, 30, Gfx.FONT_LARGE, dateStr, Gfx.TEXT_JUSTIFY_CENTER);
the output is empty.