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 msgmerge -F -U "$X" "$VM".dat.pot >&2
59 msgattrib --untranslated "$X" | grep . > "$X".untranslated || rm -f "$X".untranslated
60 msgattrib --fuzzy "$X" | grep . > "$X".fuzzy || rm -f "$X".fuzzy
61 nu=$((`grep -c ^#: "$X".untranslated 2>/dev/null` + 0))
62 nf=$((`grep -c ^#: "$X".fuzzy 2>/dev/null` + 0))
65 for Y in ~/check-translations/"$X".*; do
66 [ -f "$Y" ] || continue
68 set fileencoding=utf-8
73 msgcat -F --use-first "$Y" "$X" > "$X".new
80 msgmerge -F -U "$X" "$VM".dat.pot >&2
81 msgattrib --untranslated "$X" | grep . > "$X".untranslated || rm -f "$X".untranslated
82 msgattrib --fuzzy "$X" | grep . > "$X".fuzzy || rm -f "$X".fuzzy
83 nu=$((`grep -c ^#: "$X".untranslated 2>/dev/null` + 0))
84 nf=$((`grep -c ^#: "$X".fuzzy 2>/dev/null` + 0))
88 echo "TODO for translation $X:"
89 echo "Untranslated: $nu (was: $nu0)"
90 echo "Fuzzy: $nf (was: $nf0)"
91 ltr=`grep '^"Last-Translator: ' "$X" | cut -d ' ' -f 2- | cut -d '\\' -f 1 | egrep -v '<LL@li.org>|<EMAIL@ADDRESS>'`
92 ltm=`grep '^"Language-Team: ' "$X" | cut -d ' ' -f 2- | cut -d '\\' -f 1 | egrep -v '<LL@li.org>|<EMAIL@ADDRESS>'`
93 echo "Translators: $ltr, $ltm"
101 if [ x"$ltr" = x"$ltm" ]; then
108 if [ -n "$to" ]; then
111 if [ -n "$cc" ]; then
114 if [ -n "$to" ]; then
116 echo "Send mail? [y/n]"
121 if [ $nu -gt 0 ]; then
122 attach="$attach $X.untranslated"
124 if [ $nf -gt 0 ]; then
125 attach="$attach $X.fuzzy"
131 as you provided us with translations in the past, we kindly ask you
132 to update the translation to match changes in the Xonotic source. Can
133 you please work on them and provide updates to us?
135 If you do not wish to be contacted for translation updates any more,
136 please tell us in a reply to this message.
139 if [ $nu -gt 0 ]; then
141 Attached to this message is a file
143 with $nu yet to be translated messages. Please translate them and reply
144 with the file containing the translations in the "msgstr" fields.
148 if [ $nf -gt 0 ]; then
150 Attached to this message is a file
152 with $nf automatically generated translations. Please verify and/or fix
153 them and reply with the file having been verified by you.
163 -e "set from=\"divVerent@xonotic.org\"" \
164 -e "set use_from=yes" \
165 -e "set use_envelope_from=yes" \
166 -s "Need update for translations: $X" \
168 -b "admin@xonotic.org" \
182 for X in "$VM".dat.*.po.disabled; do
183 [ -f "$X" ] || continue
184 if [ -n "$language" ]; then
185 if [ x"${X#*.dat.}" != x"$language.po" ]; then
189 msgmerge -F -U "$X" "$VM".dat.pot >/dev/null 2>&1