-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added script to create a .ts file for a new language
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@7866 c8812cc2-4d05-0410-92ff-de0c093fc19c
- Loading branch information
timlinux
committed
Jan 8, 2008
1 parent
ee33205
commit 8c42865
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#!/bin/sh | ||
|
||
if [ -z "$1" ] ; then | ||
echo | ||
echo "Usage : $(basename $0) [Locale]" | ||
echo "Examples :" | ||
echo "$(basename $0) en_GB" | ||
echo | ||
exit 0 | ||
fi | ||
|
||
# Create a new .ts file for a new translation 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 | ||
# update_ts_files.sh,v 1.3 2004/07/14 18:16:24 gsherman Exp | ||
|
||
#first tar the qt_xx.ts files in i18n folder such that lupdate does not | ||
#merge the qgis strings to them | ||
QTDIR=/usr/ | ||
echo Creating qt_ts.tar | ||
tar -cvf i18n/qt_ts.tar i18n/qt_*.ts | ||
rm i18n/qt_*.ts | ||
echo Creating qmake project file | ||
$QTDIR/bin/qmake-4.3 -project -o qgis_ts.pro | ||
#add our new translation to the pro file | ||
echo "Creating new translation entry for $1 in the pro file" | ||
echo "TRANSLATIONS += i18n/qgis_${1}.ts" >> qgis_ts.pro | ||
echo Updating translation files | ||
$QTDIR/bin/lupdate-4.3 -verbose qgis_ts.pro | ||
echo Removing qmake project file | ||
rm qgis_ts.pro | ||
echo Unpacking qt_ts.tar | ||
tar -xvf i18n/qt_ts.tar |