9ee5653f21
Not all manual repositories have a doc directory, adjust the paths. Not all files should be compressed, we need to exclude in all repositories - besides openstack-manuals - the glossary. Change-Id: I358db42585699b05e893b66e1ac6d2927fb43ee3
79 lines
2.2 KiB
Bash
Executable File
79 lines
2.2 KiB
Bash
Executable File
#!/bin/bash -xe
|
|
|
|
# Copyright 2013 IBM Corp.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
# The script is to pull the translations from Transifex,
|
|
# and push to Gerrit.
|
|
|
|
PROJECT=$1
|
|
|
|
source /usr/local/jenkins/slave_scripts/common_translation_update.sh
|
|
|
|
init_manuals "$PROJECT"
|
|
|
|
setup_git
|
|
setup_review
|
|
setup_translation
|
|
|
|
setup_manuals "$PROJECT"
|
|
|
|
# Download new files.
|
|
# Also downloads updates for existing files that are
|
|
# translated to a certain amount as configured in setup_manuals.
|
|
# The function setup_manuals will setup most files --minimum-perc=75
|
|
# for most files.
|
|
tx pull -a -f
|
|
|
|
# Pull upstream translations of all downloaded files but do not
|
|
# download new files.
|
|
# Use lower percentage here to update the existing files.
|
|
tx pull -f --minimum-perc=50
|
|
|
|
# Compress downloaded po files
|
|
# Only touch glossary in openstack-manuals but not in any other
|
|
# repository.
|
|
case "$project" in
|
|
openstack-manuals)
|
|
compress_manual_po_files "doc" 1
|
|
;;
|
|
api-site)
|
|
compress_manual_po_files "api-ref-guides" 0
|
|
compress_manual_po_files "api-quick-start" 0
|
|
compress_manual_po_files "api-ref" 0
|
|
compress_manual_po_files "openstack-firstapp" 0
|
|
;;
|
|
ha-guide|operations-guide)
|
|
compress_manual_po_files "doc" 0
|
|
;;
|
|
security-doc)
|
|
compress_manual_po_files "security-guide" 0
|
|
;;
|
|
esac
|
|
|
|
# Add imported upstream translations to git
|
|
for FILE in ${DocFolder}/*; do
|
|
DOCNAME=${FILE#${DocFolder}/}
|
|
if [ -d ${DocFolder}/${DOCNAME}/locale ] ; then
|
|
git add ${DocFolder}/${DOCNAME}/locale/*
|
|
fi
|
|
if [ -d ${DocFolder}/${DOCNAME}/source/locale ] ; then
|
|
git add ${DocFolder}/${DOCNAME}/source/locale/*
|
|
fi
|
|
done
|
|
|
|
filter_commits
|
|
|
|
send_patch
|