Remove Crowdin key (already changed)

This commit is contained in:
Jedediah Smith 2017-01-29 20:08:48 -05:00
parent 7755843923
commit 509df0d36f
1 changed files with 0 additions and 16 deletions

View File

@ -1,16 +0,0 @@
<project name="commons-core" default="pullTranslations">
<description>
Build file for the core module of Commons. Currently only used for pulling translations from CrowdIn.
</description>
<target name="pullTranslations" description="Pulls current translations from CrowdIn">
<echo message="Downloading translations from CrowdIn..."/>
<get src="https://api.crowdin.com/api/project/ocn-plugins/download/all.zip?key=819bb5f0f7d0f5676beb7fba75e77027" dest="src/main/i18n/all.zip"/>
<echo message="Removing any existing translations..."/>
<delete dir="src/main/i18n/translations"/>
<echo message="Decompressing downloaded translations..."/>
<unzip src="src/main/i18n/all.zip" dest="src/main/i18n"/>
<echo message="Removing archive..."/>
<delete file="src/main/i18n/all.zip"/>
</target>
</project>