2014-08-15 20:06:44 +02:00
|
|
|
# directories to be set up
|
|
|
|
declare -A DIRECTORIES=(
|
|
|
|
)
|
|
|
|
|
|
|
|
# books to be built
|
|
|
|
declare -A BOOKS=(
|
2020-06-01 11:36:32 +02:00
|
|
|
["bn_IN"]="install-guide"
|
2019-07-23 12:18:15 +02:00
|
|
|
["de"]="api-quick-start image-guide install-guide"
|
|
|
|
["eo"]="api-quick-start"
|
2016-03-25 08:10:21 +01:00
|
|
|
["fr"]="install-guide"
|
2019-07-23 12:18:15 +02:00
|
|
|
["id"]="api-quick-start image-guide install-guide"
|
2018-09-17 21:25:33 -05:00
|
|
|
["ja"]="image-guide install-guide"
|
2019-07-23 12:18:15 +02:00
|
|
|
["ko_KR"]="api-quick-start install-guide"
|
2017-01-27 22:20:56 +09:00
|
|
|
["ru"]="install-guide"
|
2019-07-23 12:18:15 +02:00
|
|
|
["tr_TR"]="api-quick-start image-guide install-guide"
|
|
|
|
["zh_CN"]="api-quick-start install-guide"
|
2014-08-15 20:06:44 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
# Location of doc dir
|
|
|
|
DOC_DIR="doc/"
|
2015-03-05 18:25:29 +08:00
|
|
|
|
2015-06-17 16:19:01 +02:00
|
|
|
# Books with special handling.
|
|
|
|
# Values need to match content in
|
|
|
|
# project-config/jenkins/scripts/common_translation_update.sh
|
2015-03-07 19:48:01 +01:00
|
|
|
declare -A SPECIAL_BOOKS=(
|
2016-02-10 21:11:33 +09:00
|
|
|
# This needs special handling, handle it with the RST tools.
|
|
|
|
["common"]="RST"
|
2017-06-27 15:10:41 +02:00
|
|
|
["glossary"]="RST"
|
2019-07-16 16:22:44 +02:00
|
|
|
["api-quick-start"]="RST"
|
2015-11-23 18:23:39 +09:00
|
|
|
["image-guide"]="RST"
|
2015-08-19 09:18:49 +02:00
|
|
|
["install-guide"]="RST"
|
2015-12-05 08:22:04 +01:00
|
|
|
# Do not translate
|
2017-09-13 13:56:23 -06:00
|
|
|
["doc-contrib-guide"]="skip"
|
2016-03-18 11:26:09 +01:00
|
|
|
["releasenotes"]="skip"
|
2015-03-05 18:25:29 +08:00
|
|
|
)
|