openstack-manuals/doc-tools-check-languages.conf
Alexandra Settle 2479ff50ac Removing the ops-guide from openstack-manuals
The ops guide is intended to be moved to the os wiki.
This document can be sourced to migrate in the before-migration
tag in the repo.

Change-Id: I1ca840909438521d0d1da3469f7fa3f2927a6225
TODO: Add landing page detailing the above
2017-07-19 06:51:54 +00:00

62 lines
1.6 KiB
Plaintext

# directories to be set up
declare -A DIRECTORIES=(
)
# books to be built
declare -A BOOKS=(
["cs"]="install-guide"
["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"]="image-guide install-guide arch-design"
["zh_CN"]="install-guide"
)
# draft books
declare -A DRAFTS=(
["cs"]="install-guide"
["de"]="install-guide"
["fr"]="install-guide"
["id"]="install-guide"
["ja"]="install-guide"
["ko_KR"]="install-guide"
["ru"]="install-guide"
["tr_TR"]="install-guide"
["zh_CN"]="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"]="RST"
["arch-design"]="RST"
["ha-guide"]="RST"
["image-guide"]="RST"
["install-guide"]="RST"
["networking-guide"]="RST"
# Do not translate for now, we need to fix our scripts first to
# generate the content properly.
["install-guide-debconf"]="skip"
# Do not translate
["cli-reference"]="skip"
["config-reference"]="skip"
["contributor-guide"]="skip"
["releasenotes"]="skip"
["ha-guide-draft"]="skip"
# Skip old arch design, will be archived
["arch-design-to-archive"]="skip"
)