| [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"/>
|
|---|
| 5 | <property name="josm.presets" value="${josm.build.dir}/data/defaultpresets.xml"/>
|
|---|
| 6 | <property name="plugin.dir" value="../plugins"/>
|
|---|
| [31029] | 7 | <property name="maps.srcfile" value="http://josm.openstreetmap.de/maps"/>
|
|---|
| [31111] | 8 | <property name="wiki.srcfile" value="http://josm.openstreetmap.de/josmfile?mode=en"/>
|
|---|
| [26174] | 9 | <property name="surveyor.srcfile" value="${plugin.dir}/surveyor/resources/surveyor.xml"/>
|
|---|
| 10 | <property name="i18n.build.dir" value="build"/>
|
|---|
| 11 | <property name="i18n.install.dir" value="${josm.build.dir}/data"/>
|
|---|
| [31111] | 12 | <property name="i18n_data.install.dir" value="${josm.build.dir}/data_nodist/trans"/>
|
|---|
| [26174] | 13 | <property name="po.build.dir" value="${i18n.build.dir}"/>
|
|---|
| 14 | <property name="ant.build.javac.target" value="1.5"/>
|
|---|
| 15 | <property name="gettexttasks.jar" value="lib/gettext-ant-tasks-0.9.7.jar"/>
|
|---|
| 16 | <property name="antcontrib.jar" value="lib/ant-contrib-1.0b3.jar"/>
|
|---|
| 17 | <target name="init" description="Loads the Ant gettext and contrib tasks">
|
|---|
| 18 | <taskdef name="gettext-extract" classname="org.xnap.commons.ant.gettext.GettextExtractKeysTask" classpath="${gettexttasks.jar}"/>
|
|---|
| [31111] | 19 | <!-- for the <foreach> possibility -->
|
|---|
| [26174] | 20 | <taskdef resource="net/sf/antcontrib/antcontrib.properties" classpath="${antcontrib.jar}"/>
|
|---|
| 21 | </target>
|
|---|
| [30227] | 22 | <target name="builddir">
|
|---|
| [26174] | 23 | <mkdir dir="${i18n.build.dir}"/>
|
|---|
| [30227] | 24 | </target>
|
|---|
| 25 | <target name="trans_.java" depends="builddir">
|
|---|
| [26174] | 26 | <exec executable="perl" failonerror="true" output="${i18n.build.dir}/trans_presets.java">
|
|---|
| 27 | <arg line="convpreset.pl ${josm.presets}"/>
|
|---|
| 28 | </exec>
|
|---|
| [31029] | 29 | <exec executable="perl" failonerror="true" output="${i18n.build.dir}/trans_maps.java">
|
|---|
| 30 | <arg line="convmaps.pl ${maps.srcfile}"/>
|
|---|
| [26174] | 31 | </exec>
|
|---|
| [30751] | 32 | <exec executable="perl" failonerror="true" output="${i18n.build.dir}/trans_surveyor.java">
|
|---|
| [26174] | 33 | <arg line="convsurveyor.pl ${surveyor.srcfile}"/>
|
|---|
| 34 | </exec>
|
|---|
| [30751] | 35 | <exec executable="perl" failonerror="true" output="${i18n.build.dir}/trans_plugins.java">
|
|---|
| [26174] | 36 | <arg line="convplugins.pl ${plugin.dir}/*/build.xml"/>
|
|---|
| 37 | </exec>
|
|---|
| [31111] | 38 | <exec executable="perl" failonerror="true">
|
|---|
| 39 | <arg line="convwiki.pl ${wiki.srcfile} ${i18n.build.dir}/josmfiles ${i18n.build.dir}/josmfiles.zip"/>
|
|---|
| 40 | </exec>
|
|---|
| [26174] | 41 | <copy file="specialmessages.java" todir="${i18n.build.dir}"/>
|
|---|
| 42 | </target>
|
|---|
| 43 | <target name="po/josm.pot" description="Extracts message keys from the source code" depends="trans_.java,init">
|
|---|
| 44 | <gettext-extract keysFile="josm.pot" poDirectory="po" keywords="-k -ktrc:1c,2 -kmarktrc:1c,2 -ktr -kmarktr -ktrn:1,2 -ktrnc:1c,2,3">
|
|---|
| 45 | <fileset dir="${josm.build.dir}/src" includes="**/*.java"/>
|
|---|
| 46 | <fileset dir="${i18n.build.dir}" includes="specialmessages.java"/>
|
|---|
| 47 | <fileset dir="${i18n.build.dir}" includes="trans_*.java"/>
|
|---|
| [31111] | 48 | <!-- <fileset dir="${i18n.build.dir}/josmfiles" includes="trans_*.*"/> disable for now -->
|
|---|
| [30239] | 49 | <fileset dir="${josm.build.dir}/data/validator" includes="*.mapcss"/>
|
|---|
| [30621] | 50 | <fileset dir="${josm.build.dir}/styles/standard" includes="*.mapcss"/>
|
|---|
| [26174] | 51 | <fileset dir="${plugin.dir}" includes="**/*.java"/>
|
|---|
| 52 | </gettext-extract>
|
|---|
| 53 | </target>
|
|---|
| [31111] | 54 | <target name="po/core.pot" description="Extracts message keys from the JOSM core source code" depends="trans_.java,init">
|
|---|
| [30227] | 55 | <gettext-extract keysFile="core.pot" poDirectory="po" keywords="-k -ktrc:1c,2 -kmarktrc:1c,2 -ktr -kmarktr -ktrn:1,2 -ktrnc:1c,2,3">
|
|---|
| 56 | <fileset dir="${josm.build.dir}/src" includes="**/*.java"/>
|
|---|
| 57 | <fileset dir="${i18n.build.dir}" includes="specialmessages.java"/>
|
|---|
| [31111] | 58 | <fileset dir="${i18n.build.dir}" includes="trans_presets.java"/>
|
|---|
| 59 | <!-- maps should be in data instead, but that requires language file loading support in trac python code -->
|
|---|
| 60 | <fileset dir="${i18n.build.dir}" includes="trans_maps.java"/>
|
|---|
| 61 | <fileset dir="${josm.build.dir}/data/validator" includes="*.mapcss"/>
|
|---|
| 62 | <fileset dir="${josm.build.dir}/styles/standard" includes="*.mapcss"/>
|
|---|
| [30227] | 63 | </gettext-extract>
|
|---|
| 64 | </target>
|
|---|
| [31111] | 65 | <target name="po/data.pot" description="Extracts message keys from data files, e.g., presets, imagery (minus core strings)" depends="trans_.java,po/core.pot,init">
|
|---|
| [30227] | 66 | <gettext-extract keysFile="data.raw.pot" poDirectory="${i18n.build.dir}" keywords="-k -ktrc:1c,2 -kmarktrc:1c,2 -ktr -kmarktr -ktrn:1,2 -ktrnc:1c,2,3">
|
|---|
| [31111] | 67 | <fileset dir="${i18n.build.dir}" includes="trans_plugins.java"/>
|
|---|
| 68 | <!-- <fileset dir="${i18n.build.dir}/josmfiles" includes="trans_*.*"/> -->
|
|---|
| [30227] | 69 | </gettext-extract>
|
|---|
| [31111] | 70 | <copy todir="${po.build.dir}">
|
|---|
| 71 | <fileset dir="po" includes="core.pot"/>
|
|---|
| 72 | </copy>
|
|---|
| [30751] | 73 | <exec executable="msgcomm" failonerror="true" output="po/data.pot">
|
|---|
| [31111] | 74 | <arg line="--unique po/core.pot ${po.build.dir}/core.pot ${i18n.build.dir}/data.raw.pot"/>
|
|---|
| [30227] | 75 | </exec>
|
|---|
| [31111] | 76 | <delete file="${po.build.dir}/core.pot"/>
|
|---|
| 77 | <delete file="${po.build.dir}/data.raw.pot"/>
|
|---|
| [30227] | 78 | </target>
|
|---|
| [31111] | 79 | <target name="po/plugins.pot" description="Extracts message keys from the plugins source code (minus core and data strings)" depends="trans_.java,po/core.pot,po/data.pot,init">
|
|---|
| [30227] | 80 | <gettext-extract keysFile="plugins.raw.pot" poDirectory="${i18n.build.dir}" keywords="-k -ktrc:1c,2 -kmarktrc:1c,2 -ktr -kmarktr -ktrn:1,2 -ktrnc:1c,2,3">
|
|---|
| 81 | <fileset dir="${plugin.dir}" includes="**/*.java"/>
|
|---|
| [31111] | 82 | <fileset dir="${i18n.build.dir}" includes="trans_surveyor.java"/>
|
|---|
| [30227] | 83 | </gettext-extract>
|
|---|
| [31111] | 84 | <copy todir="${po.build.dir}">
|
|---|
| 85 | <fileset dir="po" includes="core.pot"/>
|
|---|
| 86 | <fileset dir="po" includes="data.pot"/>
|
|---|
| 87 | </copy>
|
|---|
| [30751] | 88 | <exec executable="msgcomm" failonerror="true" output="po/plugins.pot">
|
|---|
| [31111] | 89 | <arg line="--unique po/core.pot ${po.build.dir}/core.pot po/data.pot ${po.build.dir}/data.pot ${i18n.build.dir}/plugins.raw.pot"/>
|
|---|
| [30227] | 90 | </exec>
|
|---|
| [31111] | 91 | <delete file="${po.build.dir}/core.pot"/>
|
|---|
| 92 | <delete file="${po.build.dir}/data.pot"/>
|
|---|
| 93 | <delete file="${po.build.dir}/plugins.raw.pot"/>
|
|---|
| [30227] | 94 | </target>
|
|---|
| [31111] | 95 | <target name="build" depends="pot,allpot">
|
|---|
| [26174] | 96 | <antcall target="coretrans"/>
|
|---|
| [31111] | 97 | <antcall target="datatrans"/>
|
|---|
| [26174] | 98 | <foreach param="path" target="plugintrans">
|
|---|
| 99 | <path>
|
|---|
| [30754] | 100 | <dirset dir="${plugin.dir}" includes="*" excludes="00_*" />
|
|---|
| [26174] | 101 | </path>
|
|---|
| 102 | </foreach>
|
|---|
| 103 | </target>
|
|---|
| [31111] | 104 | <target name="singleplugintrans" depends="init">
|
|---|
| [30140] | 105 | <antcall target="plugintrans">
|
|---|
| 106 | <param name="path" value="${plugin}"/>
|
|---|
| 107 | </antcall>
|
|---|
| [30139] | 108 | </target>
|
|---|
| [31111] | 109 | <target name="buildcore" depends="po/core.pot,po/data.pot">
|
|---|
| [26928] | 110 | <antcall target="coretrans"/>
|
|---|
| [31111] | 111 | <antcall target="datatrans"/>
|
|---|
| [26928] | 112 | </target>
|
|---|
| [26174] | 113 | <target name="coretrans">
|
|---|
| [30751] | 114 | <exec executable="perl" failonerror="true">
|
|---|
| [31111] | 115 | <arg line="i18n.pl --potfile=po/core.pot --basedir=${i18n.install.dir}/ po/*.po"/>
|
|---|
| [26174] | 116 | </exec>
|
|---|
| 117 | </target>
|
|---|
| [31111] | 118 | <target name="datatrans">
|
|---|
| 119 | <exec executable="perl" failonerror="true">
|
|---|
| 120 | <arg line="i18n.pl --potfile=po/data.pot --basedir=${i18n_data.install.dir}/ po/*.po"/>
|
|---|
| 121 | </exec>
|
|---|
| 122 | </target>
|
|---|
| 123 | <target name="plugintrans">
|
|---|
| [26174] | 124 | <basename file="${path}" property="dir"/>
|
|---|
| 125 | <mkdir dir="${po.build.dir}/plugin_${dir}"/>
|
|---|
| [30751] | 126 | <exec executable="perl" failonerror="true" output="${po.build.dir}/plugin_${dir}/trans_plugin.java">
|
|---|
| [30143] | 127 | <arg line="convplugins.pl ${plugin.dir}/${dir}/build.xml"/>
|
|---|
| 128 | </exec>
|
|---|
| [26174] | 129 | <gettext-extract keysFile="josm.pot" poDirectory="${po.build.dir}/plugin_${dir}" keywords="-k -ktrc:1c,2 -kmarktrc:1c,2 -ktr -kmarktr -ktrn:1,2 -ktrnc:1c,2,3">
|
|---|
| 130 | <fileset dir="${plugin.dir}/${dir}" includes="**/*.java"/>
|
|---|
| [30143] | 131 | <fileset dir="${po.build.dir}/plugin_${dir}" includes="trans_*.java"/>
|
|---|
| [31111] | 132 | <fileset dir="${i18n.build.dir}" includes="trans_${dir}.java"/>
|
|---|
| [26174] | 133 | </gettext-extract>
|
|---|
| 134 | <if>
|
|---|
| 135 | <available file="${po.build.dir}/plugin_${dir}/josm.pot"/>
|
|---|
| 136 | <then>
|
|---|
| [30751] | 137 | <exec executable="perl" failonerror="true">
|
|---|
| [31111] | 138 | <arg line="i18n.pl --potfile=${po.build.dir}/plugin_${dir}/josm.pot --basedir=${plugin.dir}/${dir}/data/ po/*.po"/>
|
|---|
| [26174] | 139 | </exec>
|
|---|
| 140 | </then>
|
|---|
| 141 | </if>
|
|---|
| [31126] | 142 | <delete dir="${po.build.dir}/plugin_${dir}"/>
|
|---|
| [26174] | 143 | </target>
|
|---|
| 144 | <target name="clean">
|
|---|
| 145 | <delete dir="${i18n.build.dir}"/>
|
|---|
| 146 | <delete file="po/josm.pot"/>
|
|---|
| 147 | <delete>
|
|---|
| 148 | <fileset dir="po" includes="*.*~" defaultexcludes="false"/>
|
|---|
| 149 | </delete>
|
|---|
| [26928] | 150 | <delete>
|
|---|
| 151 | <fileset dir="po" includes="*.po" defaultexcludes="false"/>
|
|---|
| 152 | </delete>
|
|---|
| [26174] | 153 | </target>
|
|---|
| [31111] | 154 | <target name="test" depends="pot">
|
|---|
| [26849] | 155 | <mkdir dir="${i18n.build.dir}/test"/>
|
|---|
| [30751] | 156 | <exec executable="perl" failonerror="true">
|
|---|
| [31111] | 157 | <arg line="i18n.pl --potfile=po/josm.pot --basedir=${i18n.build.dir}/test/ po/*.po"/>
|
|---|
| [26849] | 158 | </exec>
|
|---|
| 159 | </target>
|
|---|
| [26928] | 160 | <target name="pot" depends="po/josm.pot" />
|
|---|
| [31111] | 161 | <target name="allpot" depends="po/core.pot,po/data.pot,po/plugins.pot" />
|
|---|
| [26928] | 162 | <target name="update">
|
|---|
| [30751] | 163 | <exec executable="perl" failonerror="true">
|
|---|
| [26928] | 164 | <arg line="launchpad.pl bzronly"/>
|
|---|
| 165 | </exec>
|
|---|
| 166 | <antcall target="build"/>
|
|---|
| 167 | </target>
|
|---|
| 168 | <target name="updatecore">
|
|---|
| [30751] | 169 | <exec executable="perl" failonerror="true">
|
|---|
| [26928] | 170 | <arg line="launchpad.pl bzronly"/>
|
|---|
| 171 | </exec>
|
|---|
| 172 | <antcall target="buildcore"/>
|
|---|
| 173 | </target>
|
|---|
| [11529] | 174 | </project>
|
|---|