0505c1db66
Change-Id: Ifc366945fb32afdf2e90cff4aacc25a295eeece0
32 lines
597 B
Plaintext
32 lines
597 B
Plaintext
# Configuration for translation setup.
|
|
|
|
# directories to be set up
|
|
declare -A DIRECTORIES=(
|
|
)
|
|
|
|
# books to be built
|
|
declare -A BOOKS=(
|
|
["ja"]="ha-guide"
|
|
)
|
|
|
|
# draft books
|
|
declare -A DRAFTS=(
|
|
["ja"]="ha-guide"
|
|
)
|
|
|
|
# Where does the top-level pom live?
|
|
# Set to empty to not copy it.
|
|
POM_FILE=""
|
|
|
|
# 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
|
|
SPECIAL_BOOKS=(
|
|
["ha-guide"]="RST"
|
|
# These are translated in openstack-manuals
|
|
["common"]="skip"
|
|
)
|