mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
36 lines
1.1 KiB
Bash
Executable File
36 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
# 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
|
|
# Note the .pro file must NOT be named qgis.pro as this
|
|
# name is reserved for the Windows qmake project file
|
|
# update_ts_files.sh,v 1.3 2004/07/14 18:16:24 gsherman Exp
|
|
|
|
PATH=$QTDIR/bin:$PATH
|
|
|
|
#first tar the qt_xx.ts files in i18n folder such that lupdate does not
|
|
#merge the qgis strings to them
|
|
echo Creating qt_ts.tar
|
|
tar -cvf i18n/qt_ts.tar i18n/qt_*.ts
|
|
rm i18n/qt_*.ts
|
|
echo Updating python plugin translations
|
|
P=$PWD
|
|
for i in python/plugins/*/.; do
|
|
cd $i
|
|
pylupdate4 $(find . -name "*.py") -ts i18n.ts
|
|
perl $P/scripts/ts2cpp.pl i18n.ts i18n.cpp
|
|
rm i18n.ts
|
|
cd ../../..
|
|
done
|
|
echo Creating qmake project file
|
|
qmake -project -o qgis_ts.pro
|
|
echo Updating translation files
|
|
lupdate -verbose qgis_ts.pro
|
|
echo Removing temporary python plugin translation files
|
|
rm python/plugins/*/i18n.cpp
|
|
echo Removing qmake project file
|
|
rm qgis_ts.pro
|
|
echo Unpacking qt_ts.tar
|
|
tar -xvf i18n/qt_ts.tar
|