affc689a4c
The Config Reference has no translations at all currently and contains a lot of generated content. Do not add it to our translation list for now, we can revisit it again if there is real demand and time to translate it. Right now it just creates needless imports. Change-Id: I94d52c1c03d5909e4c88e8aea898febe2ff222b6
44 lines
1.0 KiB
Plaintext
44 lines
1.0 KiB
Plaintext
# directories to be set up
|
|
declare -A DIRECTORIES=(
|
|
)
|
|
|
|
# books to be built
|
|
declare -A BOOKS=(
|
|
["ja"]="image-guide user-guide user-guide-admin install-guide networking-guide"
|
|
["cs"]="install-guide"
|
|
)
|
|
|
|
# draft books
|
|
declare -A DRAFTS=(
|
|
["ja"]="install-guide"
|
|
["cs"]="install-guide"
|
|
)
|
|
|
|
# Where does the top-level pom live?
|
|
# Set to empty to not copy it.
|
|
POM_FILE="doc/pom.xml"
|
|
|
|
# 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"
|
|
["admin-guide-cloud"]="RST"
|
|
["arch-design"]="RST"
|
|
["image-guide"]="RST"
|
|
["install-guide"]="RST"
|
|
["networking-guide"]="RST"
|
|
["user-guide"]="RST"
|
|
["user-guide-admin"]="RST"
|
|
# Do not translate
|
|
["cli-reference"]="skip"
|
|
["config-reference"]="skip"
|
|
["contributor-guide"]="skip"
|
|
# Skip arch design while its being revised
|
|
["arch-design-draft"]="skip"
|
|
)
|