shell script to create the translation files in the src subdirectory

git-svn-id: http://svn.osgeo.org/qgis/trunk@823 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
gsherman 2004-02-13 17:50:50 +00:00
parent 36025f3872
commit 256ca167fc

11
update_ts_files.sh Executable file
View File

@ -0,0 +1,11 @@
#!/bin/sh
# Update the translation files with strings used in QGIS
# 1. create a clean Qt .pro file for the project
# 2. run lupdate using the .pro file from step 1
# 3. remove the .pro
echo Creating qmake project file
qmake -project
echo Updating translation files
lupdate -verbose qgis.pro
echo Removing qmake project file
rm qgis.pro