forked from openstack/openstack-manuals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
doc-tools-check-languages.conf
45 lines (40 loc) · 1.24 KB
/
doc-tools-check-languages.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# 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 user-guide user-guide-admin"
["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"
# Skip guide while it's moved to RST.
["admin-guide-cloud-rst"]="skip"
# Skip guide while it's moved to RST.
["install-guide-rst"]="skip"
# This needs special handling, handle it with the RST tools.
["common-rst"]="RST"
)