Skip to content

Commit

Permalink
add translations strings for python plugins automatically.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@10633 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Apr 23, 2009
1 parent 822e81f commit d603484
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 1 deletion.
34 changes: 34 additions & 0 deletions scripts/ts2cpp.pl
@@ -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;
13 changes: 12 additions & 1 deletion scripts/update_ts_files.sh
@@ -1,4 +1,4 @@
#!/bin/sh
#!/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
Expand All @@ -14,10 +14,21 @@ PATH=$QTDIR/bin:$PATH
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
Expand Down

0 comments on commit d603484

Please sign in to comment.