#!/usr/bin/env bash set -e # # This script is used to copy the en-US content to our available locales as a # fallback to always show all pages when displaying a specific locale that is # missing some documents to be translated. # # Just execute the script without any argument and you will get the missing # files copied into the content folder. We are calling this script within the CI # server simply by `make trans-copy`. # declare -a LOCALES=( "fr-fr" "nl-nl" "pt-br" "zh-cn" "zh-tw" ) ROOT=$(realpath $(dirname $0)/..) for SOURCE in $(find ${ROOT}/content -type f -iname *.en-us.md); do for LOCALE in "${LOCALES[@]}"; do DEST="${SOURCE%.en-us.md}.${LOCALE}.md" if [[ ! -f ${DEST} ]]; then echo "Creating fallback for ${DEST#${ROOT}/content/}" cp ${SOURCE} ${DEST} sed -i.bak "s/en\-us/${LOCALE}/g" ${DEST} rm ${DEST}.bak fi done done /> Apache XML Graphics FOP: https://github.com/apache/xmlgraphics-fopwww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/test/layoutengine/standard-testcases/region-body_column-count_bug37813.xml
blob: 01302463d15745fff351df95f04733f86e555980 (plain)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59