Using a translation of Qt

On the #pyqt channel on freenode, Fisiu asked about getting localized versions of the Qt dialogs.

   1 import sys
   2 from PyQt4.QtCore import *
   3 from PyQt4.QtGui import *
   4 
   5 if __name__ == "__main__":
   6 
   7     app = QApplication(sys.argv)
   8     
   9     qt_translator = QTranslator()
  10     qt_translator.load("qt_" + QLocale.system().name(),
  11                        QLibraryInfo.location(QLibraryInfo.TranslationsPath))
  12     app.installTranslator(qt_translator)
  13     
  14     QMessageBox.aboutQt(None)
  15     sys.exit()

PyQt/Using a translation of Qt (last edited 2014-06-05 19:39:33 by DavidBoddie)

Unable to edit the page? See the FrontPage for instructions.