view trunk/src/translator/make_uis.sh @ 460:77c17bbe9d20

Translator: added new modules; applied fixes. Added a new directory i18n. It contains the translator project file and the language catalogue files. The translator main window has a dock widget on the left hand-side now, with a project tree widget.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Tue, 30 Oct 2007 18:12:01 +0100
parents
children 3b5421d40f9b
line wrap: on
line source

#!/bin/bash

for ui_file in *.ui; do
  echo $ui_file \> ui_`basename $ui_file .ui`.py
  pyuic4 $ui_file > ui_`basename $ui_file .ui`.py
done