e850cb234f
Enable the newly imported translations. This needs openstack-doc-tools 1.10 for publishing to the correct location of translated api-quick-start. Update index pages to link to new location. Disable link to Japanese API guide since it's not published currently (too few translated strings). Change-Id: Ie79ce7be7d6c16c9954f50c77f6618c9c2974c3e
35 lines
950 B
Plaintext
35 lines
950 B
Plaintext
# directories to be set up
|
|
declare -A DIRECTORIES=(
|
|
)
|
|
|
|
# books to be built
|
|
declare -A BOOKS=(
|
|
["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"
|
|
)
|