source: osm/applications/editors/josm/i18n/convpreset.pl@ 36423

Last change on this file since 36423 was 36407, checked in by stoecker, 2 weeks ago

fix missing group translations

File size: 6.2 KB
Line 
1#! /usr/bin/perl -w
2
3# Written by Dirk Stöcker <openstreetmap@dstoecker.de>
4# Public domain, no rights reserved.
5
6use strict;
7
8my $item = "";
9my $chunk = "";
10my @group;
11my $group;
12my $combo_n;
13my $combo_type;
14my $result = 0;
15my $comment = 0;
16my $vctx;
17
18# This is a simple conversion and in no way a complete XML parser
19# but it works with a default Perl installation
20
21# Print a header to write valid Java code. No line break,
22# so that the input and output line numbers will match.
23print "class trans_preset { void tr(String s){} void f() {";
24
25sub fix($)
26{
27 my ($val) = @_;
28 $val =~ s/'/''/g;
29 $val =~ s/&lt;/</g;
30 $val =~ s/&gt;/>/g;
31 $val =~ s/&amp;/&/g;
32 return $val;
33}
34
35sub infoblock
36{
37 my $r = "";
38 $r .= " item \"$item\"" if $item;
39 $r .= " chunk \"$chunk\"" if $chunk;
40 $r .= " group \"$group\"" if $group;
41 $r .= " $combo_type $combo_n" if $combo_type;
42 $r .= " $_[0]" if $_[0];
43 return $r ? "/* $r */ " : "";
44}
45
46my $linenr = 0;
47while(my $line = <>)
48{
49 ++$linenr;
50 chomp($line);
51 print "tr(\"---DUMMY-MARKER---\"); ";
52 if($line =~ /<item\s+name="(.*?)"/ || $line =~ /<item.* name="(.*?)"/)
53 {
54 my $val = fix($1);
55 $item = $val;
56 if($line =~ /name_context=(".*?")/)
57 {
58 print infoblock() . "trc($1, \"$val\");\n";
59 }
60 else
61 {
62 print infoblock() . "tr(\"$val\");\n";
63 }
64 }
65 elsif($line =~ /<chunk\s+id="(.*?)"/)
66 {
67 $chunk = fix($1);
68 print "/* $line */\n";
69 }
70 elsif($line =~ /<group.*\s+name="(.*?)"/)
71 {
72 my $gr = fix($1);
73 push(@group, $gr);
74 $group = join('/',@group);
75 if($line =~ /name_context=(".*?")/)
76 {
77 print infoblock() . "trc($1,\"$gr\");\n";
78 }
79 else
80 {
81 print infoblock() . "tr(\"$gr\");\n";
82 }
83 }
84 elsif($line =~ /<label.*\s+text=" "/)
85 {
86 print infoblock("empty label") . "\n";
87 }
88 elsif($line =~ /<label.*\s+text=(".*?")/)
89 {
90 my $text = fix($1);
91 if($line =~ /text_context=(".*?")/)
92 {
93 print infoblock("label $text") ."trc($1,$text);\n";
94 }
95 else
96 {
97 print infoblock("label $text") . "tr($text);\n";
98 }
99 }
100 elsif($line =~ /<text.*\s+text=(".*?")/)
101 {
102 my $n = fix($1);
103 if($line =~ /text_context=(".*?")/)
104 {
105 print infoblock("text $n") . "trc($1,$n);\n";
106 }
107 else
108 {
109 print infoblock("text $n") . "tr($n);\n";
110 }
111 }
112 elsif($line =~ /<check.*\s+text=(".*?")/)
113 {
114 my $n = fix($1);
115 if($line =~ /text_context=(".*?")/)
116 {
117 print infoblock("check $n") . "trc($1,$n);\n";
118 }
119 else
120 {
121 print infoblock("check $n") . "tr($n);\n";
122 }
123 }
124 elsif($line =~ /<role.*\s+text=(".*?")/)
125 {
126 my $n = fix($1);
127 if($line =~ /text_context=(".*?")/)
128 {
129 print infoblock("role $n") . "trc($1,$n);\n";
130 }
131 else
132 {
133 print infoblock("role $n") . "tr($n);\n";
134 }
135 }
136 elsif($line =~ /<(optional|preset_link).*\s+text=(".*?")/)
137 {
138 my ($type,$n) = ($1,fix($2));
139 if($line =~ /text_context=(".*?")/)
140 {
141 print infoblock("$type $n") . "trc($1,$n);\n";
142 }
143 else
144 {
145 print infoblock("$type $n") . "tr($n);\n";
146 }
147 }
148 elsif($line =~ /<(combo|multiselect).*\s+text=(".*?")/)
149 {
150 my ($type,$n) = ($1,fix($2));
151 $combo_n = $n;
152 $combo_type = $type;
153 $vctx = ($line =~ /values_context=(".*?")/) ? $1 : undef;
154 # text
155 my $tctx = ($line =~ /text_context=(".*?")/) ? $1 : undef;
156 print infoblock() . ($tctx ? " trc($tctx, $n);" : " tr($n);");
157 # display_values / values
158 my $sp = ($line =~ /delimiter="(.*?)"/) ? $1 : ($type eq "combo" ? ",":";");
159 my $vals = ($line =~ / display_values="(.*?)"/) ? $1 : ($line =~ /values="(.*?)"/) ? $1 : undef;
160 $vals = undef if ($line =~ /values_no_i18n="true"/);
161 if($vals)
162 {
163 my @combo_values = split "\Q$sp\E" ,$vals;
164 foreach my $val (@combo_values)
165 {
166 next if $val =~ /^[0-9-]+$/; # search for non-numbers
167 $val = fix($val);
168 print infoblock("display value") . ($vctx ? " trc($vctx, \"$val\");" : " tr(\"$val\");");
169 }
170 }
171 print "\n";
172 }
173 elsif(!$comment && $line =~ /<list_entry/)
174 {
175 my $vctxi = ($line =~ /value_context=(".*?")/) ? $1 : $vctx;
176 my $value = ($line =~ /value=(".*?")/) ? $1 : undef;
177 if($line =~ /[^.]display_value=(".*?")/)
178 {
179 my $val = fix($1);
180 print infoblock("entry $value display value") . ($vctxi ? " trc($vctxi, $val);" : " tr($val);");
181 }
182 else
183 {
184 my $val = fix($value);
185 print infoblock("entry $value display value") . ($vctxi ? " trc($vctxi, $val);" : " tr($val);");
186 }
187 if($line =~ /short_description=(".*?")/)
188 {
189 my $val = fix($1);
190 print infoblock("entry $value short description") . "tr($val);";
191 }
192 print "\n";
193 }
194 elsif($line =~ /<\/group>/)
195 {
196 pop(@group);
197 $group = @group ? join('/',@group) : 0;
198 print "\n";
199 }
200 elsif($line =~ /<\/item>/)
201 {
202 $item = "";
203 print "\n";
204 }
205 elsif($line =~ /<\/chunk>/)
206 {
207 $chunk = "";
208 print "\n";
209 }
210 elsif($line =~ /<\/(combo|multiselect)/)
211 {
212 $combo_n = "";
213 $combo_type = "";
214 print "\n";
215 }
216 # extract some values which we need at other places
217 elsif($line =~ /<key key="(highway|railway|waterway|landuse|building)" value="([^"]+)"/)
218 {
219 my ($key, $val) = ($1, $2);
220 print infoblock("key") . " trc(\"$key\", \"$val\");"."\n";
221 }
222 elsif(!$line)
223 {
224 print "\n";
225 }
226 elsif($line =~ /^\s*$/
227 || $line =~ /<separator *\/>/
228 || $line =~ /<space *\/>/
229 || $line =~ /<\/?optional>/
230 || $line =~ /<key/
231 || $line =~ /<presets/
232 || $line =~ /<checkgroup/
233 || $line =~ /<\/checkgroup/
234 || $line =~ /<\/presets/
235 || $line =~ /roles/
236 || $line =~ /<link wiki=/
237 || $line =~ /href=/
238 || $line =~ /<!--/
239 || $line =~ /<\?xml/
240 || $line =~ /-->/
241 || $line =~ /<\/?chunk/
242 || $line =~ /<reference/
243 || $line =~ /<preset_link/
244 || $line =~ /<item_separator\/>/
245 || $comment)
246 {
247 $line =~ s/[ \t]+((?:short)?description) *= *"([^"]+)/*\/ \/* $1 *\/ tr("$2"); \/*/g;
248 print "/* $line */\n";
249 }
250 else
251 {
252 print "/* unparsed line $line */\n";
253 print STDERR "/* unparsed line $linenr $line */\n";
254 $result = 20
255 }
256
257 # note, these two must be in this order ore oneliners aren't handled
258 $comment = 1 if($line =~ /<!--/);
259 $comment = 0 if($line =~ /-->/);
260}
261
262print "}}\n";
263exit($result) if $result;
Note: See TracBrowser for help on using the repository browser.