(SOLVED) Is there a way to show qApp->aboutQt in different languages?
-
Hello all,
Is there a way to show qApp->aboutQt() in different languages? As I see many Qt applications can show aboutQt() using their locale, but I use Qt 5.3.2 and was able to show this message box only in English.
Can anybody make it clear on how it actually works and how to show it on another locale? Appreciated your help.Thanks
Svyatoslav -
Hi and welcome to devnet,
You are looking for the "Internationalization with Qt" chapter for Qt's documentation. It explains all step needed to make your application translatable (also dynamically)
Hope it helps
-
Hi SGaist,
Yeah, that was quite easy. I'm was so inattentive and forgot to read documentation basics (was reading only Qt classes for internationalization). For all who forgot this too I'll leave just this simple note:
"You have to load two translations for your application: one for your Ui and one for Qt subsystem you using"
http://qt-project.org/doc/qt-5/internationalization.html
It's solved now.
Thanks
Svyatoslav