Hi,
I have successfully implemented Dynamic Translations, the problem now is for some languages the font must change. i.e Asian Fonts , Latin Fonts.
What is the easiest/cleanest way to change the system font so that my ui forms, qgraphicsview uses this font?
I used qApp->setFont().. however, in most of my forms there are specific font settings for comboboxes, lineedits, etc. The family remains the same, but for Asian fonts I must increase the pointsize.
Should I make the Ui form inherit the system font setting and then change each widget (combobox, linedit.etc) pointsize to the appropriate value? (seems kind of tedious).

Thanks for you input.