mirror of
https://opendev.org/openstack/openstack-manuals.git
synced 2026-01-11 20:06:48 +00:00
https://review.opendev.org/732106 adds a first translation, build the guide. Change-Id: Id98c6e6c456c26f103b5de4a99e14b3f6d1db805
35 lines
980 B
Text
35 lines
980 B
Text
# directories to be set up
|
|
declare -A DIRECTORIES=(
|
|
)
|
|
|
|
# books to be built
|
|
declare -A BOOKS=(
|
|
["bn_IN"]="install-guide"
|
|
["de"]="api-quick-start image-guide install-guide"
|
|
["eo"]="api-quick-start"
|
|
["fr"]="install-guide"
|
|
["id"]="api-quick-start image-guide install-guide"
|
|
["ja"]="image-guide install-guide"
|
|
["ko_KR"]="api-quick-start install-guide"
|
|
["ru"]="install-guide"
|
|
["tr_TR"]="api-quick-start image-guide install-guide"
|
|
["zh_CN"]="api-quick-start 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"
|
|
)
|