Files
security-doc/doc-tools-check-languages.conf
Andreas Jaeger 19f8abe28d Unbreak Translation builds
Every top level folder needs to be listed in
doc-tools-check-languages.conf.

The new folder "case-studies" was not mentioned and thus translations
broke since the scripts did not know how to tread it.

Change-Id: Ia93c71af3c557fb4e6b90df8b754e184cb6b076c
2017-04-10 12:33:27 +02:00

37 lines
754 B
Plaintext

# Example configuration for the languages 'ja' and 'fr'.
# Directories to set up
declare -A DIRECTORIES=(
)
# Books to build
declare -A BOOKS=(
["ja"]="security-guide"
)
# Where does the top-level pom live?
# Set to empty to not copy it.
POM_FILE=""
# Location of doc dir
DOC_DIR="./"
# draft books
declare -A DRAFTS=(
# None
)
# Books with special handling
# Values need to match content in project-config/jenkins/scripts/common_translation_update.sh
declare -A SPECIAL_BOOKS
SPECIAL_BOOKS=(
# Directory is using RST
["security-guide"]="RST"
# These are translated in openstack-manuals
["common"]="skip"
# Not translated
["security-threat-analysis"]="skip"
["security-notes"]="skip"
["case-studies"]="skip"
)