14 echo "Sorry, you are not supposed to use this script."
15 echo "This script is solely for use by the Xonotic Core Team."
16 echo "Unauthorized use of it can cause HIGHLY annoying merge"
27 for VM in menu csprogs; do
37 if [ x"$mode" = x"pot" ]; then
39 find qcsrc/"$VMD" -type f -not -name \*.po -not -name \*.txt
40 find qcsrc/common -type f -not -name \*.po -not -name \*.txt
41 if [ x"$VM" = x"csprogs" ]; then
42 find qcsrc/server -type f -name w_\*.qc
43 elif [ x"$VM" = x"menu" ]; then
44 find qcsrc/server -type f -name w_\*.qc | xargs grep ^REGISTER_WEAPON > weapons.qc.tmp
47 } | xgettext -LC -k_ -f- --from-code utf-8 -o "$VM".dat.pot >&2
50 if [ x"$mode" = x"po" ]; then
51 for X in "$VM".dat.*.po; do
52 [ -f "$X" ] || continue
53 if [ -n "$language" ]; then
54 if [ x"${X#*.dat.}" != x"$language.po" ]; then
58 for Y in ~/check-translations/"$X".*; do
59 [ -f "$Y" ] || continue
60 msgcat -F --use-first "$Y" "$X" > "$X".new
63 msgmerge -F -U "$X" "$VM".dat.pot >&2
64 msgattrib --untranslated "$X" | grep . > "$X".untranslated || rm -f "$X".untranslated
65 msgattrib --fuzzy "$X" | grep . > "$X".fuzzy || rm -f "$X".fuzzy
66 nu=$((`grep -c ^#: "$X".untranslated` + 0))
67 nf=$((`grep -c ^#: "$X".fuzzy` + 0))
70 echo "TODO for translation $X:"
71 echo "Untranslated: $nu"
73 ltr=`grep '^"Last-Translator: ' "$X" | cut -d ' ' -f 2- | cut -d '\\' -f 1 | egrep -v '<LL@li.org>|<EMAIL@ADDRESS>'`
74 ltm=`grep '^"Language-Team: ' "$X" | cut -d ' ' -f 2- | cut -d '\\' -f 1 | egrep -v '<LL@li.org>|<EMAIL@ADDRESS>'`
75 echo "Translators: $ltr, $ltm"
83 if [ x"$ltr" = x"$ltm" ]; then
98 echo "Send mail? [y/n]"
103 if [ $nu -gt 0 ]; then
104 attach="$attach $X.untranslated"
106 if [ $nf -gt 0 ]; then
107 attach="$attach $X.fuzzy"
113 as you provided us with translations in the past, we kindly ask you
114 to update the translation to match changes in the Xonotic source. Can
115 you please work on them and provide updates to us?
117 If you do not wish to be contacted for translation updates any more,
118 please tell us in a reply to this message.
121 if [ $nu -gt 0 ]; then
123 Attached to this message is a file
125 with $nu yet to be translated messages. Please translate them and reply
126 with the file containing the translations in the "msgstr" fields.
130 if [ $nf -gt 0 ]; then
132 Attached to this message is a file
134 with $nf automatically generated translations. Please verify and/or fix
135 them and reply with the file having been verified by you.
145 -e "set from=\"divVerent@xonotic.org\"" \
146 -e "set use_from=yes" \
147 -e "set use_envelope_from=yes" \
148 -s "Need update for translations: $X" \
150 -b "admin@xonotic.org" \
164 for X in "$VM".dat.*.po.disabled; do
165 [ -f "$X" ] || continue
166 if [ -n "$language" ]; then
167 if [ x"${X#*.dat.}" != x"$language.po" ]; then
171 msgmerge -F -U "$X" "$VM".dat.pot >/dev/null 2>&1