comparison trunk/src/translator/make_uis.sh @ 477:3b5421d40f9b

Translator: major changes and additions. Moved Close Project menu item to Project menu. Added Save, Save All, Close and Close All menu items. Added class Document which all forms inherit from. Documents can indicated that they have been modified, they can be saved and closed. They are displayed as pages in the main tab widget. Fix: signals from changing the text in text controls programatically are ignored now. Fix: text taken from text controls must be passed to unicode() Catching errors from yaml.load() in classes LangFile and Project.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Sat, 10 Nov 2007 23:50:09 +0100
parents 77c17bbe9d20
children
comparison
equal deleted inserted replaced
476:773ddddb583d 477:3b5421d40f9b
1 #!/bin/bash 1 #!/bin/bash
2 2
3 for ui_file in *.ui; do 3 for ui_file in *.ui; do
4 echo $ui_file \> ui_`basename $ui_file .ui`.py 4 ./make_ui.sh $ui_file
5 pyuic4 $ui_file > ui_`basename $ui_file .ui`.py
6 done 5 done