From 256ca167fc83235cb0524c907c880c10f7d026cc Mon Sep 17 00:00:00 2001 From: gsherman Date: Fri, 13 Feb 2004 17:50:50 +0000 Subject: [PATCH] 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 --- update_ts_files.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 update_ts_files.sh diff --git a/update_ts_files.sh b/update_ts_files.sh new file mode 100755 index 00000000000..22f8f252adc --- /dev/null +++ b/update_ts_files.sh @@ -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