Merge "Only initialize transifex if there's no .tx directory"

This commit is contained in:
Jenkins 2014-03-20 11:36:18 +00:00 committed by Gerrit Code Review
commit 160a936e06
4 changed files with 16 additions and 8 deletions

View File

@ -40,8 +40,10 @@ EOF
set -e
fi
# initialize transifex client
tx init --host=https://www.transifex.com
# Initialize the transifex client, if there's no .tx directory
if [ ! -d .tx ] ; then
tx init --host=https://www.transifex.com
fi
tx set --auto-local -r ${PROJECT}.${PROJECT}-translations "${PROJECT}/locale/<lang>/LC_MESSAGES/${PROJECT}.po" --source-lang en --source-file ${PROJECT}/locale/${PROJECT}.pot -t PO --execute
# Pull all upstream translations

View File

@ -50,8 +50,10 @@ EOF
set -e
fi
# Initialize transifex client
tx init --host=https://www.transifex.com
# Initialize the transifex client, if there's no .tx directory
if [ ! -d .tx ] ; then
tx init --host=https://www.transifex.com
fi
# Generate pot one by one
for FILE in ${DocFolder}/*

View File

@ -22,8 +22,10 @@ fi
git config user.name "OpenStack Jenkins"
git config user.email "jenkins@openstack.org"
# initialize transifex client
tx init --host=https://www.transifex.com
# Initialize the transifex client, if there's no .tx directory
if [ ! -d .tx ] ; then
tx init --host=https://www.transifex.com
fi
tx set --auto-local -r ${PROJECT}.${PROJECT}-translations "${PROJECT}/locale/<lang>/LC_MESSAGES/${PROJECT}.po" --source-lang en --source-file ${PROJECT}/locale/${PROJECT}.pot -t PO --execute
# Pull all upstream translations

View File

@ -31,8 +31,10 @@ fi
git config user.name "OpenStack Jenkins"
git config user.email "jenkins@openstack.org"
# Initialize transifex client
tx init --host=https://www.transifex.com
# Initialize the transifex client, if there's no .tx directory
if [ ! -d .tx ] ; then
tx init --host=https://www.transifex.com
fi
# Generate pot one by one
for FILE in ${DocFolder}/*