8799b85e0b
These translations have been merged recently, let's build and publish the guides. Change-Id: I76e04e4aa0c5058c63c99b6929d2fee976f084a2
36 lines
909 B
Plaintext
36 lines
909 B
Plaintext
# directories to be set up
|
|
declare -A DIRECTORIES=(
|
|
)
|
|
|
|
# books to be built
|
|
declare -A BOOKS=(
|
|
["de"]="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"
|
|
["contributor-guide"]="skip"
|
|
["releasenotes"]="skip"
|
|
["ha-guide-draft"]="skip"
|
|
)
|