Changeset 34694 in osm for applications/editors/josm/i18n
- Timestamp:
- 2018-10-22T23:58:01+02:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/i18n/build.xml
r34693 r34694 127 127 </target> 128 128 <target name="buildplugins" depends="init"> 129 <foreach param="p ath" target="plugintrans" parallel="true" maxThreads="8">129 <foreach param="plugin" target="singleplugintrans" parallel="true" maxThreads="8"> 130 130 <path> 131 131 <dirset dir="${plugin.dir}" includes="*" excludes="00_*" /> … … 133 133 </foreach> 134 134 </target> 135 <target name="singleplugintrans" depends="init">136 <antcall target="plugintrans">137 <param name="path" value="${plugin}"/>138 </antcall>139 </target>140 135 <target name="buildcore"> 141 136 <antcall target="coretrans"/> … … 154 149 <!-- If the file `josm.pot` is present and the plugin has a `data/` directory, update its *.po files based on the ones in the `po/` directory. --> 155 150 <!-- If the plugin has a Transifex config file `.tx/config`, skip this target altogether --> 156 <target name="plugintrans"> 157 <basename file="${p ath}" property="dir"/>151 <target name="singleplugintrans" depends="trans_.java,init"> 152 <basename file="${plugin}" property="dir"/> 158 153 <if> 159 154 <available file="${plugin.dir}/${dir}/.tx/config" type="file"/> … … 162 157 </then> 163 158 <else> 164 <echo message="Run plugintrans target for plugin ${dir}" level="info"/> 159 <echo message="Run singleplugintrans target for plugin ${dir}" level="info"/> 165 160 <mkdir dir="${po.build.dir}/plugin_${dir}"/> 166 161 <exec executable="perl" failonerror="true" output="${po.build.dir}/plugin_${dir}/trans_plugin.java">
Note:
See TracChangeset
for help on using the changeset viewer.