source: osm/applications/editors/josm/i18n/build.xml@ 35572

Last change on this file since 35572 was 35512, checked in by stoecker, 4 years ago

add a traget to extract pot file for a single plugin

File size: 12.6 KB
RevLine 
[26174]1<?xml version="1.0" encoding="utf-8"?>
[11529]2<project name="JOSM i18n" default="build" basedir=".">
[26174]3 <!-- compilation properties -->
4 <property name="josm.build.dir" value="../core"/>
[35347]5 <property name="josm.resources.dir" value="${josm.build.dir}/resources"/>
6 <property name="josm.presets" value="${josm.resources.dir}/data/defaultpresets.xml"/>
[26174]7 <property name="plugin.dir" value="../plugins"/>
[33756]8 <property name="maps.srcfile" value="https://josm.openstreetmap.de/maps"/>
9 <property name="wiki.srcfile" value="https://josm.openstreetmap.de/josmfile?mode=en"/>
[26174]10 <property name="surveyor.srcfile" value="${plugin.dir}/surveyor/resources/surveyor.xml"/>
11 <property name="i18n.build.dir" value="build"/>
[35349]12 <property name="i18n.install.dir" value="${josm.resources.dir}/data"/>
13 <property name="pluginlist.install.dir" value="${josm.build.dir}/nodist/trans"/>
[26174]14 <property name="po.build.dir" value="${i18n.build.dir}"/>
15 <property name="ant.build.javac.target" value="1.5"/>
[34686]16 <property name="gettext.keywords" value="-k -ktrc:1c,2 -kmarktrc:1c,2 -ktr -kmarktr -ktrn:1,2 -ktrnc:1c,2,3"/>
[26174]17 <property name="gettexttasks.jar" value="lib/gettext-ant-tasks-0.9.7.jar"/>
18 <property name="antcontrib.jar" value="lib/ant-contrib-1.0b3.jar"/>
[34692]19 <property name="grand.jar" value="lib/grand-1.9.5.jar"/>
[26174]20 <target name="init" description="Loads the Ant gettext and contrib tasks">
21 <taskdef name="gettext-extract" classname="org.xnap.commons.ant.gettext.GettextExtractKeysTask" classpath="${gettexttasks.jar}"/>
[31111]22 <!-- for the <foreach> possibility -->
[26174]23 <taskdef resource="net/sf/antcontrib/antcontrib.properties" classpath="${antcontrib.jar}"/>
24 </target>
[30227]25 <target name="builddir">
[26174]26 <mkdir dir="${i18n.build.dir}"/>
[30227]27 </target>
28 <target name="trans_.java" depends="builddir">
[32268]29 <exec executable="perl" failonerror="true" logError="true" output="${i18n.build.dir}/trans_presets.java">
[26174]30 <arg line="convpreset.pl ${josm.presets}"/>
31 </exec>
[32268]32 <exec executable="perl" failonerror="true" logError="true" output="${i18n.build.dir}/trans_maps.java">
[31029]33 <arg line="convmaps.pl ${maps.srcfile}"/>
[26174]34 </exec>
[32268]35 <exec executable="perl" failonerror="true" logError="true" output="${i18n.build.dir}/trans_surveyor.java">
[26174]36 <arg line="convsurveyor.pl ${surveyor.srcfile}"/>
37 </exec>
[32268]38 <exec executable="perl" failonerror="true" logError="true" output="${i18n.build.dir}/trans_plugins.java">
[26174]39 <arg line="convplugins.pl ${plugin.dir}/*/build.xml"/>
40 </exec>
[31111]41 <exec executable="perl" failonerror="true">
[35347]42 <env key="TAGGING_PRESET_XSD" value="${josm.resources.dir}/data/tagging-preset.xsd"/>
[31111]43 <arg line="convwiki.pl ${wiki.srcfile} ${i18n.build.dir}/josmfiles ${i18n.build.dir}/josmfiles.zip"/>
44 </exec>
[26174]45 <copy file="specialmessages.java" todir="${i18n.build.dir}"/>
46 </target>
[34023]47 <!-- Create the file build/pluginSrc.txt, which contains a list of include patterns for all *.java files that should be translated relative to "${plugin.dir}" -->
48 <target name="filterpluginsources" depends="init">
49 <delete file="${po.build.dir}/pluginSrc.txt"/>
50 <foreach param="path" target="filterpluginsource">
51 <path>
52 <dirset dir="${plugin.dir}" includes="*" excludes="00_*" />
53 </path>
54 </foreach>
55 </target>
56 <!-- Helper task for `filterpluginsources`: Appends an include pattern to the file `build/pluginSrc.txt` if there is no file `.tx/config` for a plugin -->
57 <target name="filterpluginsource">
58 <if>
59 <not>
60 <available file="${path}/.tx/config" type="file" />
61 </not>
62 <then>
63 <basename file="${path}" property="dir"/>
64 <echo file="${po.build.dir}/pluginSrc.txt" append="true" message="${dir}/**/*.java&#xa;"></echo>
65 </then>
66 </if>
67 </target>
68 <target name="po/josm.pot" description="Extracts message keys from the source code" depends="trans_.java,init,filterpluginsources">
[34687]69 <gettext-extract keysFile="josm.pot" poDirectory="po" keywords="${gettext.keywords} --exclude-file=excludes.pot">
[34257]70 <!-- core.pot -->
[26174]71 <fileset dir="${josm.build.dir}/src" includes="**/*.java"/>
72 <fileset dir="${i18n.build.dir}" includes="specialmessages.java"/>
[33486]73 <fileset dir="${i18n.build.dir}" includes="trans_presets.java"/>
[35347]74 <fileset dir="${josm.resources.dir}/data/validator" includes="*.mapcss"/>
75 <fileset dir="${josm.resources.dir}/styles/standard" includes="*.mapcss"/>
[34067]76 <fileset dir="${i18n.build.dir}" includes="trans_maps.java"/>
[33487]77 <!-- data.pot -->
[33486]78 <fileset dir="${i18n.build.dir}" includes="trans_plugins.java"/>
[33487]79 <!-- <fileset dir="${i18n.build.dir}/josmfiles" includes="trans_*.*"/> disable for now -->
80 <!-- plugins.pot -->
[34023]81 <fileset dir="${plugin.dir}" includesfile="${po.build.dir}/pluginSrc.txt"/>
[33486]82 <fileset dir="${i18n.build.dir}" includes="trans_surveyor.java"/>
[26174]83 </gettext-extract>
84 </target>
[34693]85 <target name="po/core+maplist+presets.pot" depends="po/core.pot,po/maplist.pot,po/presets.pot">
86 <exec executable="msgcat" failonerror="true" output="po/core+maplist+presets.pot">
87 <arg line="po/core.pot po/maplist.pot po/presets.pot"/>
88 </exec>
89 </target>
[34689]90 <target name="po/core.pot" description="Extracts message keys from the JOSM core source code" depends="init">
[34687]91 <gettext-extract keysFile="core.pot" poDirectory="po" keywords="${gettext.keywords} --exclude-file=excludes.pot">
[30227]92 <fileset dir="${josm.build.dir}/src" includes="**/*.java"/>
93 <fileset dir="${i18n.build.dir}" includes="specialmessages.java"/>
[35347]94 <fileset dir="${josm.resources.dir}/data/validator" includes="*.mapcss"/>
95 <fileset dir="${josm.resources.dir}/styles/standard" includes="*.mapcss"/>
[34689]96 </gettext-extract>
97 </target>
98 <target name="po/maplist.pot" description="Extracts message keys from plugin descriptions" depends="trans_.java,init">
99 <gettext-extract keysFile="maplist.pot" poDirectory="po" keywords="${gettext.keywords} --exclude-file=excludes.pot">
100 <!-- maps should be translated server-side, but that requires language file loading support in trac python code -->
[31111]101 <fileset dir="${i18n.build.dir}" includes="trans_maps.java"/>
[30227]102 </gettext-extract>
103 </target>
[34688]104 <target name="po/pluginlist.pot" description="Extracts message keys from plugin descriptions" depends="trans_.java,init">
105 <gettext-extract keysFile="pluginlist.pot" poDirectory="po" keywords="${gettext.keywords} --exclude-file=excludes.pot">
[31111]106 <fileset dir="${i18n.build.dir}" includes="trans_plugins.java"/>
[30227]107 </gettext-extract>
108 </target>
[34689]109 <target name="po/presets.pot" description="Extracts message keys from presets (minus core)" depends="trans_.java,po/core.pot,init">
110 <gettext-extract keysFile="presets.pot" poDirectory="po" keywords="${gettext.keywords} --exclude-file=excludes.pot --exclude-file=po/core.pot">
111 <fileset dir="${i18n.build.dir}" includes="trans_presets.java"/>
112 </gettext-extract>
113 </target>
114 <target name="po/plugins.pot" description="Extracts message keys from the plugins source code (minus core)" depends="trans_.java,po/core.pot,po/presets.pot,init,filterpluginsources">
115 <gettext-extract keysFile="plugins.pot" poDirectory="po" keywords="${gettext.keywords} --exclude-file=excludes.pot --exclude-file=po/core.pot --exclude-file=po/presets.pot">
[34023]116 <fileset dir="${plugin.dir}" includesfile="${po.build.dir}/pluginSrc.txt"/>
[31111]117 <fileset dir="${i18n.build.dir}" includes="trans_surveyor.java"/>
[30227]118 </gettext-extract>
119 </target>
[35090]120 <target name="build">
[31900]121 <antcall target="buildcore"/>
122 <antcall target="buildplugins"/>
123 </target>
124 <target name="buildplugins" depends="init">
[34697]125 <foreach param="path" target="plugintrans" parallel="true" maxThreads="8">
[26174]126 <path>
[30754]127 <dirset dir="${plugin.dir}" includes="*" excludes="00_*" />
[26174]128 </path>
129 </foreach>
130 </target>
[35512]131 <target name="singlepluginpot" depends="init">
132 <gettext-extract keysFile="josm.pot" poDirectory="po" keywords="${gettext.keywords}">
133 <fileset dir="${plugin.dir}/${plugin}"/>
134 </gettext-extract>
135 </target>
[34697]136 <target name="singleplugintrans" depends="init">
137 <antcall target="plugintrans">
138 <param name="path" value="${plugin}"/>
139 </antcall>
140 </target>
[35090]141 <target name="buildcore" depends="pot">
[26928]142 <antcall target="coretrans"/>
[34688]143 <antcall target="pluginlisttrans"/>
[26928]144 </target>
[34693]145 <target name="coretrans" depends="po/core+maplist+presets.pot">
[30751]146 <exec executable="perl" failonerror="true">
[34693]147 <arg line="i18n.pl --potfile=po/core+maplist+presets.pot --basedir=${i18n.install.dir}/ po/*.po"/>
[26174]148 </exec>
149 </target>
[34688]150 <target name="pluginlisttrans" depends="po/pluginlist.pot">
[31111]151 <exec executable="perl" failonerror="true">
[34688]152 <arg line="i18n.pl --potfile=po/pluginlist.pot --basedir=${pluginlist.install.dir}/ po/*.po"/>
[31111]153 </exec>
154 </target>
[34023]155 <!-- 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. -->
[34257]156 <!-- If the plugin has a Transifex config file `.tx/config`, skip this target altogether -->
[34697]157 <target name="plugintrans">
158 <basename file="${path}" property="dir"/>
[26174]159 <if>
[34262]160 <available file="${plugin.dir}/${dir}/.tx/config" type="file"/>
[26174]161 <then>
[34262]162 <echo message="Skip plugin ${dir}, because it is translated with Transifex!"/>
[34257]163 </then>
164 <else>
[34697]165 <echo message="Run plugintrans target for plugin ${dir}" level="info"/>
[34257]166 <mkdir dir="${po.build.dir}/plugin_${dir}"/>
167 <exec executable="perl" failonerror="true" output="${po.build.dir}/plugin_${dir}/trans_plugin.java">
168 <arg line="convplugins.pl ${plugin.dir}/${dir}/build.xml"/>
[26174]169 </exec>
[34686]170 <gettext-extract keysFile="josm.pot" poDirectory="${po.build.dir}/plugin_${dir}" keywords="${gettext.keywords}">
[34257]171 <fileset dir="${plugin.dir}/${dir}" includes="**/*.java"/>
172 <fileset dir="${po.build.dir}/plugin_${dir}" includes="trans_*.java"/>
173 <fileset dir="${i18n.build.dir}" includes="trans_${dir}.java"/> <!-- include plugin specific translation -->
174 </gettext-extract>
175 <if>
176 <and>
177 <available file="${po.build.dir}/plugin_${dir}/josm.pot" type="file"/>
178 <available file="${plugin.dir}/${dir}/data/" type="dir"/>
179 </and>
180 <then>
181 <exec executable="perl" failonerror="true">
182 <arg line="i18n.pl --potfile=${po.build.dir}/plugin_${dir}/josm.pot --basedir=${plugin.dir}/${dir}/data/ po/*.po"/>
183 </exec>
184 </then>
185 </if>
186 <delete dir="${po.build.dir}/plugin_${dir}"/>
187 </else>
[26174]188 </if>
189 </target>
190 <target name="clean">
191 <delete dir="${i18n.build.dir}"/>
[34692]192 <delete file="build.dot"/>
193 <delete file="build.png"/>
[26174]194 <delete>
195 <fileset dir="po" includes="*.*~" defaultexcludes="false"/>
[26928]196 <fileset dir="po" includes="*.po" defaultexcludes="false"/>
[34696]197 <fileset dir="po" includes="*.pot" defaultexcludes="false"/>
[26928]198 </delete>
[26174]199 </target>
[31111]200 <target name="test" depends="pot">
[26849]201 <mkdir dir="${i18n.build.dir}/test"/>
[30751]202 <exec executable="perl" failonerror="true">
[31111]203 <arg line="i18n.pl --potfile=po/josm.pot --basedir=${i18n.build.dir}/test/ po/*.po"/>
[26849]204 </exec>
205 </target>
[26928]206 <target name="pot" depends="po/josm.pot" />
207 <target name="update">
[30751]208 <exec executable="perl" failonerror="true">
[26928]209 <arg line="launchpad.pl bzronly"/>
210 </exec>
[34023]211 <antcall target="build"/>
[26928]212 </target>
213 <target name="updatecore">
[30751]214 <exec executable="perl" failonerror="true">
[26928]215 <arg line="launchpad.pl bzronly"/>
216 </exec>
[34023]217 <antcall target="buildcore"/>
[26928]218 </target>
[34692]219 <target name="ant-dependencies">
220 <typedef resource="net/ggtools/grand/antlib.xml" classpath="${grand.jar}"/>
221 <grand output="build.dot" outputconfigprefix="grand"/>
222 <exec executable="dot">
223 <arg line="-Tpng -o build.png build.dot"/>
224 </exec>
225 </target>
[11529]226</project>
Note: See TracBrowser for help on using the repository browser.