openstack-manuals/doc-tools-check-languages.conf
Andreas Jaeger 7aa90d37ec [install-guide] Start translation
Create an empty RST file, our scripts will add content to it.
Enable translation via the config file.

Change-Id: I30999b468c1155e423d70fb7cd7d6161ac97aab9
Implements: blueprint installguide-liberty
2015-08-16 19:31:19 +02:00

47 lines
1.2 KiB
Plaintext

# directories to be set up
declare -A DIRECTORIES=(
["fr"]="common glossary image-guide"
["ja"]="common glossary image-guide install-guide"
["pt_BR"]="common install-guide"
["zh_CN"]="common glossary arch-design image-guide install-guide"
)
# books to be built
declare -A BOOKS=(
["fr"]="image-guide"
["ja"]="image-guide install-guide user-guide user-guide-admin"
["pt_BR"]="install-guide"
["zh_CN"]="arch-design image-guide install-guide"
)
# draft books
declare -A DRAFTS=(
["fr"]="image-guide"
["ja"]="install-guide"
["pt_BR"]="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=(
["user-guide"]="RST"
["user-guide-admin"]="RST"
["networking-guide"]="RST"
# In process of migration to RST
["admin-guide-cloud-rst"]="RST"
["install-guide-rst"]="RST"
# Skip guide while it's created
["contributor-guide"]="skip"
# This needs special handling, handle it with the RST tools.
["common-rst"]="RST"
)