From c4529fea894a3f2dc28c3d13f4cbfcd7e6466bf4 Mon Sep 17 00:00:00 2001 From: koem Date: Thu, 25 Jul 2013 08:50:14 +0200 Subject: Scripts for crowdin integration --- crowdin/upload | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100755 crowdin/upload (limited to 'crowdin/upload') diff --git a/crowdin/upload b/crowdin/upload new file mode 100755 index 0000000..43343ef --- /dev/null +++ b/crowdin/upload @@ -0,0 +1,39 @@ +#/bin/sh + +# +# +# This script uploads +# main/res/values-xx/strings.xml +# and +# cgeo-calendar/res/values-xx/strings.xml +# in crowdin by uploading the files from the current branch to crowdin. +# +# + +# see: + +# upload_file uploads the file in parameter 1 to the crowdin file name in parameter 2 +upload_file() { + if [ -f "$2" ]; then + CROWDIN_LANG=`map_to_crowdin_code "$1"` + crowdin_surf \ + -F \"files[$3]=@$2\" \ + -F \"language=$CROWDIN_LANG\" \ + -F \"import_eq_suggestions=1\" \ + \"http://api.crowdin.net/api/project/cgeo/upload-translation?key=${CROWDIN_APIKEY}\" + else + debug "$2 not found." + fi +} + +. "`dirname $0`/globals" + +if [ $# -eq 0 ]; then + debug "no languages passed - aborting." +fi + +for i in $@; do + upload_file $i main/res/values-$i/strings.xml /cgeo/strings.xml + upload_file $i cgeo-calendar/res/values-$i/strings.xml /cgeo-calendar/strings.xml +done + -- cgit v1.1