Quote Originally Posted by jacek
I've just took another look on your configure() method. You create the translator on the stack, so it gets destroyed when configure() returns.

It should be:
Qt Code:
  1. void ui_murefImpl::configure(QApplication *myApp)
  2. {
  3. QTranslator *translator= new QTranslator();
  4. ...
  5. translator->load(QString("MuRef_") + locale);
  6. myApp->installTranslator( translator );
  7. ...
  8. }
To copy to clipboard, switch view to plain text mode 
Yes yes yes !!! That works thanks a lot !