-
Notifications
You must be signed in to change notification settings - Fork 101
/
make_pot.sh
executable file
·52 lines (41 loc) · 1.85 KB
/
make_pot.sh
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
#!/bin/bash
# You need po4a > 0.58, see https://github.com/mquinson/po4a/releases
# There is no need of system-wide installation of po4a
# Usage: PERLLIB=/path/to/po4a/lib make_pot.sh
# you may set following variables
# SRCDIR root of the documentation repository
####################################
# INITILIZE VARIABLES
####################################
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
# root of the documentation repository
SRCDIR_MODULE="./modules"
# place where the po files are
if [ -z "$PO_DIR" ] ; then
PO_DIR="./l10n-weblate"
fi
####################################
# TEST IF IT CAN WORK
####################################
if [ ! -d "$SRCDIR_MODULE" ] ; then
echo "Error, please check that SRCDIR match to the root of the documentation repository"
echo "You specified modules are in $SRCDIR_MODULE"
exit 1
fi
#######################################################################
# UPDATE/GENERATE .POT/.PO FILES WITHOUT GENERATING TRANSLATED ASCIIDOC
#######################################################################
for f in `ls $CURRENT_DIR/$PO_DIR/*.cfg`; do
po4a -v --srcdir $CURRENT_DIR --destdir $CURRENT_DIR -k 0 -M utf-8 -L utf-8 --no-translations -o nolinting $f
done
###########################################
# COPY ENGLISH SCREENSHOTS TO EACH LANGUAGE
###########################################
for module in $(find $CURRENT_DIR/$PO_DIR -mindepth 1 -maxdepth 1 -type d -printf "%f\n"); do
for langpo in $(find $CURRENT_DIR/$PO_DIR/$module -mindepth 1 -maxdepth 1 -type f -name "*.po" -printf "%f\n"); do
if [ -e $CURRENT_DIR/$SRCDIR_MODULE/$module/assets/images ]; then
lang=`basename $langpo .po`
rsync -u --inplace -a --delete $CURRENT_DIR/$SRCDIR_MODULE/$module/assets/* $CURRENT_DIR/$PO_DIR/$module/assets-$lang/
fi
done
done