-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add translations strings for python plugins automatically.
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
Showing
2 changed files
with
46 additions
and
1 deletion.
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 @@ | ||
#!/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; |
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