openstack-manuals/doc-tools-check-languages.conf
Andreas Jaeger 5e3b9edbb3 Update translation setup
Since the only guide that uses the common directory is now the
cli-guide and we do not translate that one, disable translation of the
common directory as well.

Remove now obsolete setting of DIRECTORIES for zh_CN since those
were only relevant for the DocBook version of these.

Adopt comment for contributor-guide to move it under the do not
translate section, translation this content is not a focus right now.

Change-Id: I0ea32b15c7debba383c0840d1051a8812df2cdee
2015-12-27 20:56:49 +01:00

45 lines
1.1 KiB
Plaintext

# directories to be set up
declare -A DIRECTORIES=(
)
# books to be built
declare -A BOOKS=(
["ja"]="image-guide user-guide user-guide-admin install-guide networking-guide"
["cs"]="install-guide"
)
# draft books
declare -A DRAFTS=(
["ja"]="install-guide"
["cs"]="install-guide"
)
# Where does the top-level pom live?
# Set to empty to not copy it.
POM_FILE="doc/pom.xml"
# Location of doc dir
DOC_DIR="doc/"
# Books with special handling.
# Values need to match content in
# project-config/jenkins/scripts/common_translation_update.sh
declare -A SPECIAL_BOOKS=(
["admin-guide-cloud"]="RST"
["arch-design"]="RST"
["config-reference"]="RST"
["image-guide"]="RST"
["install-guide"]="RST"
["networking-guide"]="RST"
["user-guide"]="RST"
["user-guide-admin"]="RST"
# Do not translate
["cli-reference"]="skip"
["common"]="skip"
["contributor-guide"]="skip"
# Skip arch design while its being revised
["arch-design-draft"]="skip"
# This needs special handling, handle it with the RST tools.
["common-rst"]="RST"
)