openstack-manuals/doc-tools-check-languages.conf
Andreas Jaeger 00bcee8b6b Do not translate debconf install guide for now
Disable translations for now since it breaks the translation skripts.

Change-Id: I0d54fc3c3441190be46886198f83637b7f70eafb
2016-06-15 09:53:46 +02:00

53 lines
1.4 KiB
Plaintext

# directories to be set up
declare -A DIRECTORIES=(
)
# books to be built
declare -A BOOKS=(
["cs"]="install-guide"
["fr"]="install-guide"
["ja"]="ha-guide image-guide install-guide networking-guide ops-guide user-guide"
["ko_KR"]="install-guide"
)
# draft books
declare -A DRAFTS=(
["cs"]="install-guide"
["fr"]="install-guide"
["ja"]="ha-guide install-guide networking-guide ops-guide"
["ko_KR"]="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=(
# This needs special handling, handle it with the RST tools.
["common"]="RST"
["admin-guide"]="RST"
["arch-design"]="RST"
["ha-guide"]="RST"
["image-guide"]="RST"
["install-guide"]="RST"
["networking-guide"]="RST"
["ops-guide"]="RST"
["user-guide"]="RST"
# Do not translate for now, we need to fix our scripts first to
# generate the content properly.
["install-guide-debconf"]="skip"
# Do not translate
["cli-reference"]="skip"
["config-reference"]="skip"
["contributor-guide"]="skip"
["releasenotes"]="skip"
# Skip arch design while its being revised
["arch-design-draft"]="skip"
)