Qt Code:
  1. bool load=qTranslator->load("en_la");
  2. QApplication::installTranslator(qTranslator);
  3. m_UI->retranslateUi(this);
To copy to clipboard, switch view to plain text mode 
I want an app can change language without restart app, and i coded as above.
But that code only run at fisrt correctly. but at second it is incorrect, that is mean that the language can change at the first, and from second can change language
thanks