a95821b542
Import the api-quick-start from api-site repository so that it gets published on docs.openstack.org. Change-Id: Ic709ee736dda780fb71048a27158838a5806048e
34 lines
841 B
Plaintext
34 lines
841 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"]="image-guide install-guide"
|
|
["ko_KR"]="install-guide"
|
|
["ru"]="install-guide"
|
|
["tr_TR"]="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"
|
|
["api-quick-start"]="RST"
|
|
["image-guide"]="RST"
|
|
["install-guide"]="RST"
|
|
# Do not translate
|
|
["doc-contrib-guide"]="skip"
|
|
["releasenotes"]="skip"
|
|
)
|