add translations strings for python plugins automatically.

git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@10633 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
jef 2009-04-23 13:43:45 +00:00
parent 822e81fe8d
commit d603484801
2 changed files with 46 additions and 1 deletions

34
scripts/ts2cpp.pl Normal file
View File

@ -0,0 +1,34 @@
#!/usr/bin/perl
use XML::Simple;
use Data::Dumper;
die "usage: $0 source.ts dest.cpp\n" unless @ARGV==2 && -f $ARGV[0];
my $xml = XMLin($ARGV[0], ForceArray=>1);
open F, ">$ARGV[1]";
print F <<EOF;
/*
This is NOT a proper c++ source code. This file is only designed to be caught
by qmake and included in lupdate. It contains all translateable strings collected
by pylupdate4.
*/
EOF
die "context expected" unless exists $xml->{context};
foreach my $context ( @{ $xml->{context} } ) {
print F "\n// context: $context->{name}->[0]\n\n";
foreach my $message ( @{ $context->{message} } ) {
$message->{source}->[0] =~ s/"/\\"/g;
$message->{source}->[0] =~ s/\n/\\n/g;
print F "translate( \"$context->{name}->[0]\", \"$message->{source}->[0]\");\n";
}
}
close F;

View File

@ -1,4 +1,4 @@
#!/bin/sh #!/bin/bash
# Update the translation files with strings used in QGIS # Update the translation files with strings used in QGIS
# 1. create a clean Qt .pro file for the project # 1. create a clean Qt .pro file for the project
# 2. run lupdate using the .pro file from step 1 # 2. run lupdate using the .pro file from step 1
@ -14,10 +14,21 @@ PATH=$QTDIR/bin:$PATH
echo Creating qt_ts.tar echo Creating qt_ts.tar
tar -cvf i18n/qt_ts.tar i18n/qt_*.ts tar -cvf i18n/qt_ts.tar i18n/qt_*.ts
rm 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 echo Creating qmake project file
qmake -project -o qgis_ts.pro qmake -project -o qgis_ts.pro
echo Updating translation files echo Updating translation files
lupdate -verbose qgis_ts.pro lupdate -verbose qgis_ts.pro
echo Removing temporary python plugin translation files
rm python/plugins/*/i18n.cpp
echo Removing qmake project file echo Removing qmake project file
rm qgis_ts.pro rm qgis_ts.pro
echo Unpacking qt_ts.tar echo Unpacking qt_ts.tar