Ignore:
Timestamp:
2011-10-22T21:16:32+02:00 (13 years ago)
Author:
stoecker
Message:

JOSM i18n update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/i18n/build.xml

    r26849 r26928  
    6060        </foreach>
    6161    </target>
     62    <target name="buildcore" depends="po/josm.pot,init">
     63        <gettext-merge keysFile="josm.pot" poDirectory="po"/>
     64        <antcall target="coretrans"/>
     65    </target>
    6266    <target name="coretrans">
    6367        <mkdir dir="${po.build.dir}/core"/>
     
    9397            </then>
    9498        </if>
     99        <delete dir="${po.build.dir}/plugin_${dir}"/>
    95100    </target>
    96101    <target name="clean">
     
    99104        <delete>
    100105            <fileset dir="po" includes="*.*~" defaultexcludes="false"/>
     106        </delete>
     107        <delete>
     108            <fileset dir="po" includes="*.po" defaultexcludes="false"/>
    101109        </delete>
    102110    </target>
     
    107115        </exec>
    108116    </target>
     117    <target name="pot" depends="po/josm.pot" />
     118    <target name="update">
     119        <exec executable="perl">
     120            <arg line="launchpad.pl bzronly"/>
     121        </exec>
     122        <antcall target="build"/>       
     123    </target>
     124    <target name="updatecore">
     125        <exec executable="perl">
     126            <arg line="launchpad.pl bzronly"/>
     127        </exec>
     128        <antcall target="buildcore"/>       
     129    </target>
    109130</project>
Note: See TracChangeset for help on using the changeset viewer.