We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent f52f840 commit 6de1b12Copy full SHA for 6de1b12
scripts/update_ts_files.sh
@@ -7,9 +7,16 @@
7
# name is reserved for the Windows qmake project file
8
# update_ts_files.sh,v 1.3 2004/07/14 18:16:24 gsherman Exp
9
10
+#first tar the qt_xx.ts files in i18n folder such that lupdate does not
11
+#merge the qgis strings to them
12
+echo Creating qt_ts.tar
13
+tar -cvf i18n/qt_ts.tar i18n/qt_*.ts
14
+rm i18n/qt_*.ts
15
echo Creating qmake project file
16
$QTDIR/bin/qmake -project -o qgis_ts.pro
17
echo Updating translation files
18
$QTDIR/bin/lupdate -verbose qgis_ts.pro
19
echo Removing qmake project file
20
rm qgis_ts.pro
21
+echo Unpacking qt_ts.tar
22
+tar -xvf i18n/qt_ts.tar
0 commit comments