I'm developing an app which supports switching language at runtime. I've read a lot of tutorial and qt Internationalization ... and I know the way to do is remove current translator and install new translator, then call method retranslateUi() to refresh view.
If i use drag and drop feature, then qt generate method retranslateUi() and I don't need to implement it. But, if my form is manually implementation or implement a model of a table, so I must implement method retranslateUi() which is reset all text. This takes a lot of effort.
Does someone know another way to make qt component automatically change text when even languageChange emitted without implement retranslateUi() method for each form ?