fa4c6dfa8e
Use the --debug and --traceback flags when running `tx push` in order to have better indications of why errors occur. Change-Id: Ic951dc12b3efe8f8264521ed0a360e42f96cbee0 Reviewed-on: https://review.openstack.org/12817 Reviewed-by: Monty Taylor <mordred@inaugust.com> Approved: James E. Blair <corvus@inaugust.com> Reviewed-by: James E. Blair <corvus@inaugust.com> Tested-by: Jenkins
31 lines
792 B
Bash
Executable File
31 lines
792 B
Bash
Executable File
#!/bin/bash -xe
|
|
|
|
PROJECT=$1
|
|
|
|
if [ ! `echo $ZUUL_REFNAME | grep master` ]
|
|
then
|
|
exit 0
|
|
fi
|
|
|
|
git config user.name "OpenStack Jenkins"
|
|
git config user.email "jenkins@openstack.org"
|
|
|
|
# initialize transifex client
|
|
tx init --host=https://www.transifex.com
|
|
tx set --auto-local -r ${PROJECT}.${PROJECT}-translations "${PROJECT}/locale/<lang>/LC_MESSAGES/${PROJECT}.po" --source-lang en --source-file ${PROJECT}/locale/${PROJECT}.pot --execute
|
|
|
|
# Pull all upstream translations
|
|
tx pull -a
|
|
# Update the .pot file
|
|
python setup.py extract_messages
|
|
# Use updated .pot file to update translations
|
|
python setup.py update_catalog
|
|
# Add all changed files to git
|
|
git add $PROJECT/locale/*
|
|
|
|
if [ ! `git diff-index --quiet HEAD --` ]
|
|
then
|
|
# Push changes to transifex
|
|
tx --debug --traceback push -st
|
|
fi
|