20091eab04
Setup configuration for translation of RST. There are already translators working on it, so let's give them uptodate strings. Remove DocBook networking-guide.pot and create an empty file for RST. Our proposal bot will propose updated content. Change-Id: I10cefe311b2dd08866ab887b3962b459395e4636
31 lines
802 B
Plaintext
31 lines
802 B
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"
|
|
["pt_BR"]="install-guide"
|
|
["zh_CN"]="arch-design image-guide 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
|
|
SPECIAL_BOOKS=(
|
|
["user-guides"]="RST"
|
|
["networking-guide"]="RST"
|
|
)
|