diff trunk/src/translator/translator.py @ 435:156d6301d79e

Added PyQt4 application for creating and managing translations.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Tue, 09 Oct 2007 20:57:16 +0200
parents
children 0dba4c0e5234
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/trunk/src/translator/translator.py	Tue Oct 09 20:57:16 2007 +0200
@@ -0,0 +1,16 @@
+#! /bin/python
+# -*- coding: utf-8 -*-
+# Author: Aziz Köksal
+# License: GPL2
+import sys
+from PyQt4 import QtCore, QtGui
+
+from ui_translator import Ui_MainWindow
+
+
+if __name__ == "__main__":
+    app = QtGui.QApplication(sys.argv)
+    main = QtGui.QMainWindow()
+    Ui_MainWindow().setupUi(main)
+    main.show()
+    sys.exit(app.exec_())