blob: 732f05a4ed21c0e95edf37836b1a8da99670e4f3 (
plain) (
blame)
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
|
#!/usr/bin/perl
# Generate 'documents' in different encodings, from po files
if ($#ARGV < 0) {
print "Usage: gendoc.pl pofile pofile ...\n";
exit 1;
}
$fmt = "| fmt -u ";
sub read_msgstr()
{
my $str = "";
while (<IN>) {
if (m/^msgstr \"(.*)\"/) {
$str = $1;
if ($str eq "") {
while (<IN>) {
if (m/\"(.*)\"/) {
$str .= $1;
} else {
last;
}
}
}
return $str;
}
}
return "";
}
$unknown = "x-unknown-1";
foreach $name (@ARGV) {
if ($name =~ m@([^/]*).po$@) {
$poname = $1;
open IN,"<$name";
$header = read_msgstr;
if ($header =~ /Content-Type:.*charset=([-a-zA-Z0-9]*)/i) {
$charset = $1;
} else {
$charset = $unknown++;
}
print "Building $poname.$charset.txt from $name\n";
open OUT,"$fmt > $poname.$charset.txt";
while (!eof(IN)) {
$msg = read_msgstr;
# de-escape
$msg =~ s/\\n/\n/gso;
$msg =~ s/\\t/\t/gso;
$msg =~ s/\\(.)/$1/gso;
print OUT $msg." ";
}
close OUT;
close IN;
} else {
printf("ignoring $name, probably not intended\n");
}
}
|