summaryrefslogtreecommitdiff
path: root/fetchtranslations.sh
blob: ff265954abef599f748a5689c5a770789e46b2a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#! /bin/sh


if [ "$ICSCROWDAPIKEY" != "" ]
then
	echo "Generating new translation archives"
	fetch -q -1 -o - http://api.crowdin.net/api/project/ics-openvpn/export?key=$ICSCROWDAPIKEY
fi

echo "Fetch translation archive"
fetch -q http://crowdin.net/download/project/ics-openvpn.zip

langtoinclude="de cs ko et fr he ru"

for lang in $langtoinclude
do
    tar xfv ics-openvpn.zip /res/values-$lang/
done

# Chinese language require zh-CN and zh-TW

for lang in "zh-CN"
do
	if [ $lang = "zh-CN" ] ; then
		rlang="zh-rCN"
	fi
	echo "Fetch archive for $lang"
	fetch http://crowdin.net/download/project/ics-openvpn/$lang.zip
	tar -xv -C res/values-$rlang/ --strip-components 3 -f $lang.zip
done