forked from roloa/Cataclysm-DDA_variant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
update_pot.sh
executable file
·93 lines (84 loc) · 2.53 KB
/
update_pot.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
if [ ! -d lang/po ]
then
if [ -d ../lang/po ]
then
cd ..
else
echo "Error: Could not find lang/po subdirectory."
exit 1
fi
fi
# try to extract translatable strings from .json files
echo "> Extracting strings from json"
if ! lang/extract_json_strings.py
then
echo "Error in extract_json_strings.py. Aborting"
exit 1
fi
# Update cataclysm-dda.pot
echo "> Running xgettext to create .pot file"
xgettext --default-domain="cataclysm-dda" \
--add-comments="~" \
--sort-by-file \
--output="lang/po/cataclysm-dda.pot" \
--keyword="_" \
--keyword="pgettext:1c,2" \
--keyword="ngettext:1,2" \
--keyword="npgettext:1c,2,3" \
--keyword="translate_marker" \
--keyword="translate_marker_context:1c,2" \
--keyword="to_translation:1,1t" \
--keyword="to_translation:1c,2,2t" \
--keyword="pl_translation:1,2,2t" \
--keyword="pl_translation:1c,2,3,3t" \
--from-code="UTF-8" \
src/*.cpp src/*.h lang/json/*.py
if [ $? -ne 0 ]; then
echo "Error in xgettext. Aborting"
exit 1
fi
# Fix msgfmt errors
if [ "`head -n1 lang/po/cataclysm-dda.pot`" = "# SOME DESCRIPTIVE TITLE." ]
then
echo "> Fixing .pot file headers"
package="cataclysm-dda"
version=$(grep '^VERSION *= *' Makefile | tr -d [:space:] | cut -f 2 -d '=')
pot_file="lang/po/cataclysm-dda.pot"
sed -e "1,6d" \
-e "s/^\"Project-Id-Version:.*\"$/\"Project-Id-Version: $package $version\\\n\"/1" \
-e "/\"Plural-Forms:.*\"$/d" $pot_file > $pot_file.temp
mv $pot_file.temp $pot_file
fi
# strip line-numbers from the .pot file
echo "> Stripping .pot file from unneeded comments"
if ! lang/strip_line_numbers.py lang/po/cataclysm-dda.pot
then
echo "Error in strip_line_numbers.py. Aborting"
exit 1
fi
# convert line endings to unix
if [[ $(uname -s) =~ ^\(CYGWIN|MINGW\)* ]]
then
echo "> Converting line endings to Unix"
if ! sed -i -e 's/\r$//' lang/po/cataclysm-dda.pot
then
echo "Line ending conversion failed. Aborting."
exit 1
fi
fi
# Final compilation check
echo "> Testing to compile the .pot file"
if ! msgfmt -c -o /dev/null lang/po/cataclysm-dda.pot
then
echo "Updated pot file contain gettext errors. Aborting."
exit 1
fi
# Check for broken Unicode symbols
echo "> Checking for wrong Unicode symbols"
if ! lang/unicode_check.py lang/po/cataclysm-dda.pot
then
echo "Updated pot file contain broken Unicode symbols. Aborting."
exit 1
fi
echo "ALL DONE!"