forked from lexica/lexica
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pull-trans.sh
executable file
·50 lines (36 loc) · 1.39 KB
/
pull-trans.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
#!/bin/sh
# This is adapted from the pull-trans.sh script in the F-Droid project at:
# https://gitlab.com/fdroid/fdroidclient
# This script pulls translations from weblate.
#
# It squashes all the changes into a single commit. This removes authorship
# from the changes, which is given to the Translatebot, so to keep the names
# they are grabbed from git log and added to the commit message.
#
# Note that this will apply changes and commit them! Make sure to not have
# uncommited changes when running this script.
REMOTE="weblate"
REMOTE_URL="git://git.weblate.org/lexica.git"
REMOTE_BRANCH="master"
AUTHOR="Lexica Translate Bot <[email protected]>"
if ! git ls-remote --exit-code $REMOTE >/dev/null 2>/dev/null; then
echo "Remote doesn't exist! Try the following:"
echo " git remote add $REMOTE $REMOTE_URL"
echo " git fetch $REMOTE"
exit 1
fi
ref="${REMOTE}/${REMOTE_BRANCH}"
diff="HEAD...$ref -- */values-*/strings.xml"
authors=$(git log --format="%s %an" $diff | \
sed 's/Translated using Weblate (\(.*\)) \(.*\)/\2||\1/' | sort -f -u | column -s '||' -t)
COMMIT_MSG="Pull translation updates from Weblate
Translators:
$authors"
echo "=================================="
echo "${AUTHOR}"
echo "----------------------------------"
echo "${COMMIT_MSG}"
echo "=================================="
git diff $diff | git apply
git add */values-*/strings.xml
git commit --author "$AUTHOR" -m "${COMMIT_MSG}"