Changeset 13140 in osm
- Timestamp:
- 2009-01-11T12:29:19+01:00 (16 years ago)
- Location:
- applications/editors/josm/i18n
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/i18n/build.xml
r13124 r13140 3 3 <!-- compilation properties --> 4 4 <property name="josm.build.dir" value="../core"/> 5 <property name="josm.presets" value="../core/presets/presets.xml"/> 5 <property name="josm.presets" value="${josm.build.dir}/presets/presets.xml"/> 6 <property name="josm.style" value="${josm.build.dir}/styles/standard/elemstyles.xml"/> 6 7 <property name="plugin.dir" value="../plugins"/> 7 8 <property name="validator.tagfile" value="${plugin.dir}/validator/tagchecker.cfg"/> … … 18 19 <exec executable="perl" output="trans_presets.java"> 19 20 <arg line="convpreset.pl ${josm.presets}"/> 21 </exec> 22 <exec executable="perl" output="trans_style.java"> 23 <arg line="convstyle.pl ${josm.style}"/> 20 24 </exec> 21 25 <exec executable="perl" output="trans_validator.java"> -
applications/editors/josm/i18n/convpreset.pl
r11529 r13140 79 79 } 80 80 elsif($line =~ /^\s*$/ 81 || $line =~ /<separator\/>/ 81 || $line =~ /<separator *\/>/ 82 || $line =~ /<space *\/>/ 83 || $line =~ /<\/?optional>/ 82 84 || $line =~ /<key/ 83 85 || $line =~ /annotations/ … … 91 93 { 92 94 print "/* unparsed line $line */\n"; 93 print STDERR "Unparsed line $line\n";95 # print STDERR "Unparsed line $line\n"; 94 96 } 95 97
Note:
See TracChangeset
for help on using the changeset viewer.