85107272be
Based off conversation at the PTG, we agreed it would be beneficial to ensure the contrib-guide is clearly marked as the doc contrib guide outside of the title. This change includes a redirect. Change-Id: I5abf915f0b94a482afa961e6b86364c26aae5d79
36 lines
921 B
Plaintext
36 lines
921 B
Plaintext
# directories to be set up
|
|
declare -A DIRECTORIES=(
|
|
)
|
|
|
|
# books to be built
|
|
declare -A BOOKS=(
|
|
["de"]="image-guide install-guide"
|
|
["fr"]="install-guide"
|
|
["id"]="image-guide install-guide"
|
|
["ja"]="ha-guide image-guide install-guide"
|
|
["ko_KR"]="install-guide"
|
|
["ru"]="install-guide"
|
|
["tr_TR"]="arch-design ha-guide image-guide install-guide"
|
|
["zh_CN"]="install-guide"
|
|
)
|
|
|
|
# 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"
|
|
["glossary"]="RST"
|
|
["ha-guide"]="RST"
|
|
["image-guide"]="RST"
|
|
["install-guide"]="RST"
|
|
# Do not translate
|
|
["arch-design"]="skip"
|
|
["doc-contrib-guide"]="skip"
|
|
["releasenotes"]="skip"
|
|
["ha-guide-draft"]="skip"
|
|
)
|