summaryrefslogtreecommitdiffstats
path: root/wpo2po.pl
blob: ed84b8d3871c6ac39257805bdccd1548d484864b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/usr/bin/perl
use strict;
use XML::Parser;


sub load_wpo {
    my ($tree, $tag ,$page) = @_;
    
    foreach my $leaf (@$tree) {
	if (ref($leaf) eq 'ARRAY') {
	    $page = load_wpo($leaf, $tag, $page);
	} elsif (ref($leaf) eq 'HASH') {
	    $page->{$leaf->{from}} = $leaf->{to};
	}elsif(ref($leaf)=~ /\w\D/){
	    $tag = $leaf;
	}
    }
    $page;
}

my $xmltree = XML::Parser->new(Style => 'Tree')->parsefile($ARGV[0]);
my $wpo = load_wpo($xmltree);

my %lang = (fr => '"Language-Team: French <fr@li.org>"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1"
"Content-Transfer-Encoding: 8bit"',
	    en => '"Language-Team: English <en@li.org>"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1"
"Content-Transfer-Encoding: 8bit"',
	    it => '"Language-Team: Italian <it@li.org>"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1"
"Content-Transfer-Encoding: 8bit"',
	    de => => '"Language-Team: Deutsh <de@li.org>"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1"
"Content-Transfer-Encoding: 8bit"',
	    es => => '"Language-Team: Spanish <es@li.org>"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1"
"Content-Transfer-Encoding: 8bit"');

print STDERR "$ARGV[0] =>";
$ARGV[0] =~ /(.*\/).*\.(.*)\..*/;

open(PO, "> $1$2.po");
my $date = `date +%Y-%m-%d\\ %H:%M\\ %z`;
chomp $date;
print PO 'msgid ""
msgstr ""
'.$lang{"$2"}.'
"Project-Id-Version: drakwizard"
"POT-Creation-Date: '.$date.'"
"PO-Revision-Date: '.$date.'"
"Last-Translator: wpo2po <adesmons@mandrakesoft.com>"

';

foreach (keys %{$wpo}) {
    if ($_ ne "") {
	if ($_ eq $wpo->{$_}) {
	    print PO "msgid \"$_\"\nmsgstr \"\"\n\n";
	}
	else {
	    print PO "msgid \"$_\"\nmsgstr \"$wpo->{$_}\"\n\n";
	}
    }
    
}
close PO;
print STDERR "$1$2.po\n";