-
Notifications
You must be signed in to change notification settings - Fork 0
/
import-translations
executable file
·80 lines (68 loc) · 2.45 KB
/
import-translations
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#!/bin/sh
set -e
set -u
TAILS_PO_DIR='po'
SCRIPT_DIR=$(readlink -f "$(dirname "$0")")
TOR_TRANSLATION_REMOTE='https://gitlab.torproject.org/tpo/translation.git'
TOR_TRANSLATION_DIR="$SCRIPT_DIR/tmp/tor-translation"
GIT_IN_TOR_TRANSLATION_DIR="git \
--work-tree=\"$TOR_TRANSLATION_DIR\" \
--git-dir=\"$TOR_TRANSLATION_DIR/.git\""
### External libraries
. "$SCRIPT_DIR/config/chroot_local-includes/usr/local/lib/tails-shell-library/po.sh"
# Defaults
LANG_DOT_PO_LAYOUT=yes
# Detect which project is in current folder,
# and set parameters accordingly
# shellcheck disable=SC2016
if [ -f 'po/tails.pot' ]; then
BRANCH='tails-misc'
AFTER_IMPORT='intltool_update_po $(po_languages)'
elif [ -f 'po/onioncircuits.pot' ]; then
LANG_DOT_PO_LAYOUT=no
BRANCH='tails-onioncircuits_release'
AFTER_IMPORT='./setup.py build_i18n && ( cd po && for po in *.po ; do msgmerge --update "$po" onioncircuits.pot ; done )'
else
echo "Current folder is not a project known to this script!"
exit 1
fi
# Clone or update the translation repository
if [ -d "$TOR_TRANSLATION_DIR" ]; then
eval "$GIT_IN_TOR_TRANSLATION_DIR remote set-url origin ${TOR_TRANSLATION_REMOTE}"
eval "$GIT_IN_TOR_TRANSLATION_DIR fetch origin"
else
mkdir -p "$SCRIPT_DIR/tmp"
git clone "$TOR_TRANSLATION_REMOTE" "$TOR_TRANSLATION_DIR"
fi
# Checkout the correct branch
eval "$GIT_IN_TOR_TRANSLATION_DIR checkout \"$BRANCH\""
eval "$GIT_IN_TOR_TRANSLATION_DIR reset --hard \"origin/$BRANCH\""
# Ensure we only keep PO files that are still present in the
# branch we import from.
find "$TAILS_PO_DIR" -name '*.po' -delete
# For each completely translated language, merge it.
if [ "$LANG_DOT_PO_LAYOUT" = yes ] ; then
find "$TOR_TRANSLATION_DIR" -name '*.po' | sort | while read -r po_file; do
lang=$(basename "$po_file" | tr - _ | sed 's/\.po$//')
if [ "$(count_translated_strings < "$po_file")" -lt 1 ]; then
echo "Skipping $lang, that has no translated strings."
continue
fi
echo "Importing translation for $lang..."
cp "$po_file" "$TAILS_PO_DIR"
done
else
find "$TOR_TRANSLATION_DIR" -name '*.pot' | sort | while read -r po_file; do
lang=$(basename "$(dirname "$po_file" | tr - _ | sed 's/\.pot$//')")
if [ "$(count_translated_strings < "$po_file")" -lt 1 ]; then
echo "Skipping $lang, that has no translated strings."
continue
fi
echo "Importing translation for $lang..."
cp "$po_file" "$TAILS_PO_DIR/${lang}.po"
done
fi
# Update PO files
if [ -n "${AFTER_IMPORT:-}" ]; then
eval "$AFTER_IMPORT"
fi