forked from mcallegari/qlcplus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
translate.sh
executable file
·44 lines (38 loc) · 1.33 KB
/
translate.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
#!/bin/bash
# Translated languages (update these also to qlcplus.pro)
if [ "$1" == "qmlui" ]; then
languages="de_DE es_ES fr_FR it_IT nl_NL ru_RU ca_ES ja_JP uk_UA pl_PL"
else
languages="de_DE es_ES fr_FR it_IT nl_NL cz_CZ pt_BR ca_ES ja_JP"
fi
LRELEASE_BIN=$(which lrelease 2> /dev/null)
# if QTDIR has been defined, use those tools right away
if [ -n "$QTDIR" ]; then
LRELEASE_BIN=$QTDIR/bin/lrelease
else
# if lrelease is not available, try with lrelease-qt5
if [ -z "$LRELEASE_BIN" ]; then
LRELEASE_BIN=$(which lrelease-qt5)
if [ -z "$LRELEASE_BIN" ]; then
echo "lrelease and lrelease-qt5 are not present in this system! Aborting."
exit
fi
fi
fi
# Compile all files for the given language into one common qlcplus_<lang>.qm file
function compile {
echo Processing $1
INPUT_NAME="*_${1}.ts"
OUTPUT_NAME="qlcplus_${1}.qm"
if [ "$2" == "qmlui" ]; then
FILELIST=$(find . -name $INPUT_NAME -not -path "./ui/*" -not -path "./fixtureeditor/*" -not -path "./launcher/*" -not -path "./webaccess/*")
else
FILELIST=$(find . -name $INPUT_NAME -not -path "./qmlui/*")
fi
#echo $FILELIST
$LRELEASE_BIN -silent $FILELIST -qm $OUTPUT_NAME
}
# Compile all translated languages present in $languages
for lang in $languages; do
compile $lang $1
done