blob: a9bd007b0e82301092023fdfa036eecc5658a8e2 (
plain)
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
|
#!/bin/sh
# This script is used for translations using .po files.
# It creates .xml files from the translated .po files.
if [ "$1" = "--help" ] ; then
echo "Usage: $0 <language>"
exit 0
fi
language=${1:-pl}
# Required tools
for tool in msgconv po2xml ; do
if [ -z "`which $tool`" ] ; then
echo "ERROR: $tool is required, please install it."
exit 1
fi
done
BUILDDIR="./build"
if [ -z "$PO_USEBUILD" ] ; then
WORKDIR="./integrated"
PODIR="./po"
else
WORKDIR="$BUILDDIR/build.po"
PODIR="$BUILDDIR/build.po"
fi
SOURCEDIR="$WORKDIR/en"
# Don't overwrite XML translations committed to SVN
if svn info "./$language/" >/dev/null 2>&1; then
TARGETDIR="./$language.new"
else
TARGETDIR="./$language"
fi
RET=0
[ -d "$SOURCE" -o -d "$PODIR" ] || exit 1
[ -d "$TARGETDIR" ] && rm -r $TARGETDIR
echo "Creating XML files for language '$language':"
for ORIGXML in `find $SOURCEDIR -name "*.xml"` ; do
BASEDIR=$(dirname $ORIGXML | sed "s:$SOURCEDIR::" | sed "s:^/::")
BASENAME=$(basename $ORIGXML .xml)
PO=$PODIR/$language/$BASENAME.po
XML=$TARGETDIR/$BASEDIR/$BASENAME.xml
mkdir -p $TARGETDIR/$BASEDIR
if [ -f $PO ] ; then
echo "- creating $BASENAME.xml"
# Make sure po file is UTF8 encoded; po2xml does no conversion
msgconv -t utf-8 $PO >/tmp/tmp.po.$$
RC=$?
if [ $RC -ne 0 ] ; then
RET=$RC
echo "Error: error $RC while executing msgconv"
continue
fi
msgattrib \
--translated \
--no-fuzzy \
--output-file="/tmp/tmp.po2.$$" \
"/tmp/tmp.po.$$" \
;
RC=$?
if [ $RC -ne 0 ] ; then
RET=$RC
echo "Error: error $RC while executing msgattrib"
continue
fi
po2xml $ORIGXML /tmp/tmp.po2.$$ > $XML
RC=$?
if [ $RC -ne 0 ] ; then
RET=$RC
echo "Error: error $RC while executing po2xml"
continue
fi
else
echo "Warning: no PO file found for '$BASENAME'; copying English original"
cp $ORIGXML $TARGETDIR/$BASEDIR
fi
done
rm -f /tmp/tmp.po.$$ /tmp/tmp.po2.$$
exit $RET
|