-
Notifications
You must be signed in to change notification settings - Fork 18
/
translations.sh
executable file
·93 lines (72 loc) · 2.36 KB
/
translations.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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
#!/bin/sh
# Generate, compile, fetch and upload PO-files for the site
SOURCE_LANGUAGE="en"
MANAGE_PY="$PWD/manage.py"
SETTINGS=""
if [ $2 ]; then
SETTINGS="--settings=$2"
fi
MAKEMESSAGES="$MANAGE_PY makemessages -l $SOURCE_LANGUAGE --no-wrap -e hbs,html,txt $SETTINGS"
MAKEJSMESSAGES="$MANAGE_PY makemessages -l $SOURCE_LANGUAGE --no-wrap -e js -i compressed -d djangojs $SETTINGS"
COMPILEMESSAGES="$MANAGE_PY compilemessages $SETTINGS"
COMPILEJSMESSAGES="$MANAGE_PY compilejsi18n $SETTINGS"
APPS_DIR="bluebottle"
EXCLUDED_APPS=""
APPS=""
for dir in $(find $APPS_DIR -maxdepth 1 -type d); do
if [ $dir = $APPS_DIR ]; then
continue
fi
app=$(echo $dir | sed -e "s|$APPS_DIR/||")
echo $EXCLUDED_APPS | grep -q $app
if [ $? -eq 0 ]; then
# $app is in $EXCLUDED_APPS list.
continue
fi
APPS="$APPS $dir"
# Make the locale dir if it's not there.
if [ ! -d "$dir/locale" ]; then
mkdir "$dir/locale"
fi
done
echo $APPS
# APPS="accounts fund geo organizations projects wallposts reactions homepage"
case "$1" in
generate)
echo "Generating PO files"
for APP_DIR in $APPS; do
echo "Generating PO-file for $APP_DIR"
(cd $APP_DIR && $MAKEMESSAGES)
done
# Skip this for now
# echo "Generating PO-file for templates"
# mv locale ../bluebottle/common/templates/ && cd bluebottle/common/templates/ && $MAKEMESSAGES
# echo "Generating PO-file for javascripts"
# echo $MAKEJSMESSAGES
# $MAKEJSMESSAGES
# mv locale ../../../
;;
push)
echo "Uploading PO files to Transifex"
tx push -s
;;
pull)
echo "Fetching PO files from Transifex"
tx pull -f -l nl
;;
compile)
echo "Compiling PO files"
for APP_DIR in $APPS; do
echo "Compiling PO-file for $APP_DIR"
(cd $APP_DIR && $COMPILEMESSAGES)
done
# echo "Generating PO-file for templates"
# $COMPILEMESSAGES
# $COMPILEMESSAGES
# echo "Generating PO-file for javascript"
# $COMPILEJSMESSAGES
;;
*)
echo $"Usage: $0 {generate|push|pull|compile}"
exit 1
esac