Hi i have a Qt application and there are several plug-ins attached to the application.
i want to change the language of the program on runtime but i dont know how to do it.
i know i can do it by a call of this code:
ui.retranslateUi(this);
but since there are many plug-ins and many widgets on these plug-ins, it is hard to write this code because of the member ui is private in widgets. i dont want to write a code for each widget class.
do you know a better way of loading new translation files?